Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

vf_set_prop_value_time(3) [debian man page]

vf_set_prop_value_time(3)				     Library Functions Manual					 vf_set_prop_value_time(3)

NAME
vf_set_prop_value_time - vf_set_prop_value_time() SYNOPSIS
#include <../vformat/vf_iface.h> extern bool_t vf_set_prop_value_time ( VF_PROP_T *p_prop, uint32_t n_string, const long int t_value ); PARAMETERS
VF_PROP_T *p_prop The property. uint32_t n_string Which string we're encoding to. const long int t_value Time value. DESCRIPTION
Set a time_t value into a VF property. RETURNS
TRUE iff property added & set OK. SEE ALSO
vf_parse_init(3), vf_parse_text(3), vf_parse_end(3), vf_read_file(3), vf_write_file(3), vf_get_next_object(3), vf_create_object(3), vf_get_object_type(3), vf_get_property(3), vf_get_property_ex(3), vf_get_next_property(3), vf_get_prop_value(3), vf_set_prop_value(3), vf_get_prop_value_string(3), vf_get_prop_name_string(3), vf_set_prop_name_string(3), vf_get_prop_name(3), vf_get_prop_value_object(3), vf_set_prop_value_object(3), vf_set_prop_value_string(3), vf_set_prop_value_base64(3), vf_get_prop_value_base64(3), vf_set_prop- erty_from_file(3), vf_delete_object(3), vf_delete_prop(3), vf_find_prop_qual_index(3), vf_is_modified(3), vf_find_charset(3), vf_date_string_to_time(3), vf_period_string_to_time(3), vf_period_time_to_string(3), vf_get_prop_value_time(3) c2man vf_iface.h 30 April 2003 vf_set_prop_value_time(3)

Check Out this Related Man Page

di_path_prop_lookup_bytes(3DEVINFO)		       Device Information Library Functions		       di_path_prop_lookup_bytes(3DEVINFO)

NAME
di_path_prop_lookup_bytes, di_path_prop_lookup_int64s, di_path_prop_lookup_ints, di_path_prop_lookup_strings - search for a path property SYNOPSIS
cc [ flag... ] file... -ldevinfo [ library... ] #include <libdevinfo.h> int di_path_prop_lookup_bytes(di_path_t path, const char *prop_name); int di_path_prop_lookup_int64s(di_path_t path, const char *prop_name); int di_path_prop_lookup_ints(di_path_t path, const char *prop_name, char **prop_data); int di_path_prop_lookup_strings(di_path_t path, const char *prop_name, char **prop_data); PARAMETERS
path The handle to a path node in a di_init(3DEVINFO). prop_name The name of property for which to search. prop_data For di_path_prop_lookup_bytes(), the address to a pointer to an array of unsigned characters containing the property data. For di_path_prop_lookup_int64(), the address to a pointer to an array of 64-bit integers containing the property data. For di_path_prop_lookup_ints(), the address to a pointer to an array of integers containing the property data. For di_path_prop_lookup_strings(), the address to a pointer to a buffer containing a concatenation of null-terminated strings containing the property data. DESCRIPTION
These functions return the value of a known property name and type. All memory allocated by these functions is managed by the library and must not be freed by the caller. RETURN VALUES
If the property is found, the number of entries in prop_data is returned. Otherwise, -1 is returned and errno is set to indicate the error. ERRORS
These functions will fail if: EINVAL One of the arguments is invalid. ENOTSUP The snapshot contains no property information. ENXIO The path property does not exist. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Committed | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
di_init(3DEVINFO), libdevinfo(3LIB), attributes(5) Writing Device Drivers SunOS 5.11 15 May 2008 di_path_prop_lookup_bytes(3DEVINFO)
Man Page