| 
    Tizen Native API
    5.0
    
   
   | 
  
  
  
 
Eina tools aims to help application development, providing ways to make it safer, log errors, manage memory more efficiently and more.
For more information refer to the string example.
Functions | |
| const char * | eina_environment_home_get (void) | 
| Returns the content of the environment referred by HOME on this system.   | |
| const char * | eina_environment_tmp_get (void) | 
| Returns the content of the environment referred as TMPDIR on this system.   | |
| Eina_Iterator * | eina_xattr_ls (const char *file) | 
| Gets an iterator that list all extended attribute of a file.   | |
| Eina_Iterator * | eina_xattr_value_ls (const char *file) | 
| Gets an iterator that list all extended attribute value related to a fd.   | |
| Eina_Iterator * | eina_xattr_fd_ls (int fd) | 
| Gets an iterator that list all extended attribute related to a fd.   | |
| Eina_Iterator * | eina_xattr_value_fd_ls (int fd) | 
| Gets an iterator that list all extended attribute value related to a fd.   | |
| Eina_Bool | eina_xattr_copy (const char *src, const char *dst) 2) | 
| Copies the extended attribute from one file to another.   | |
| Eina_Bool | eina_xattr_fd_copy (int src, int dst) | 
| Copies the extended attribute from one file descriptor to another.   | |
| void * | eina_xattr_get (const char *file, const char *attribute, ssize_t *size) 2 | 
| Retrieves an extended attribute from a file.   | |
| void void * | eina_xattr_fd_get (int fd, const char *attribute, ssize_t *size) 3) | 
| Retrieves an extended attribute from a file descriptor.   | |
| Eina_Bool | eina_xattr_set (const char *file, const char *attribute, const void *data, ssize_t length, Eina_Xattr_Flags flags) 2 | 
| Sets an extended attribute on a file.   | |
| Eina_Bool Eina_Bool | eina_xattr_fd_set (int fd, const char *attribute, const void *data, ssize_t length, Eina_Xattr_Flags flags) 3) | 
| Sets an extended attribute on a file descriptor.   | |
| Eina_Bool | eina_xattr_del (const char *file, const char *attribute) 2) | 
| Deletes (removes) an extended attribute from a file.   | |
| Eina_Bool | eina_xattr_fd_del (int fd, const char *attribute) | 
| Deletes (removes) an extended attribute from a file descriptor.   | |
| Eina_Bool | eina_xattr_string_set (const char *file, const char *attribute, const char *data, Eina_Xattr_Flags flags) | 
| Sets a string as a extended attribute properties.   | |
| char * | eina_xattr_string_get (const char *file, const char *attribute) | 
| Gets a string from an extended attribute properties.   | |
| Eina_Bool | eina_xattr_double_set (const char *file, const char *attribute, double value, Eina_Xattr_Flags flags) | 
| Sets a double as a extended attribute properties.   | |
| Eina_Bool | eina_xattr_double_get (const char *file, const char *attribute, double *value) | 
| Gets a double from an extended attribute properties.   | |
| Eina_Bool | eina_xattr_int_set (const char *file, const char *attribute, int value, Eina_Xattr_Flags flags) | 
| Sets an int as a extended attribute properties.   | |
| Eina_Bool | eina_xattr_int_get (const char *file, const char *attribute, int *value) | 
| Gets a int from an extended attribute properties.   | |
| enum Eina_Xattr_Flags | 
define extended attribute creation
| const char* eina_environment_home_get | ( | void | ) | 
Returns the content of the environment referred by HOME on this system.
| const char* eina_environment_tmp_get | ( | void | ) | 
Returns the content of the environment referred as TMPDIR on this system.
| Eina_Bool eina_xattr_copy | ( | const char * | src, | 
| const char * | dst | ||
| ) | 
Copies the extended attribute from one file to another.
| src | source file to use as input. | 
| dst | destination file to use as output. | 
| Eina_Bool eina_xattr_del | ( | const char * | file, | 
| const char * | attribute | ||
| ) | 
Deletes (removes) an extended attribute from a file.
| file | The file to del the extended attribute from. | 
| attribute | The attribute to del. | 
| Eina_Bool eina_xattr_double_get | ( | const char * | file, | 
| const char * | attribute, | ||
| double * | value | ||
| ) | 
Gets a double from an extended attribute properties.
| file | The file to get the string from. | 
| attribute | The attribute to get. | 
| value | Where to put the extracted value | 
This call check that the double is correctly set.
| Eina_Bool eina_xattr_double_set | ( | const char * | file, | 
| const char * | attribute, | ||
| double | value, | ||
| Eina_Xattr_Flags | flags | ||
| ) | 
Sets a double as a extended attribute properties.
| file | The file to set the double to. | 
| attribute | The attribute to set. | 
| value | The NULL-terminated double to set. | 
| flags | Define the set policy. | 
| Eina_Bool eina_xattr_fd_copy | ( | int | src, | 
| int | dst | ||
| ) | 
Copies the extended attribute from one file descriptor to another.
| src | source file descriptor to use as input. | 
| dst | destination file descriptor to use as output. | 
| Eina_Bool eina_xattr_fd_del | ( | int | fd, | 
| const char * | attribute | ||
| ) | 
Deletes (removes) an extended attribute from a file descriptor.
| fd | The file descriptor to del the extended attribute from. | 
| attribute | The attribute to del. | 
| void void* eina_xattr_fd_get | ( | int | fd, | 
| const char * | attribute, | ||
| ssize_t * | size | ||
| ) | 
Retrieves an extended attribute from a file descriptor.
| fd | The file descriptor to retrieve the extended attribute from. | 
| attribute | The extended attribute name to retrieve. | 
| size | The size of the retrieved extended attribute. | 
It will return NULL and *size will be 0 if it fails.
| Eina_Iterator* eina_xattr_fd_ls | ( | int | fd | ) | 
Gets an iterator that list all extended attribute related to a fd.
| fd | The file descriptor to retrieve the extended attribute list from. | 
The iterator will not allocate any data during the iteration step, so you need to copy them yourself if you need.
| Eina_Bool Eina_Bool eina_xattr_fd_set | ( | int | fd, | 
| const char * | attribute, | ||
| const void * | data, | ||
| ssize_t | length, | ||
| Eina_Xattr_Flags | flags | ||
| ) | 
Sets an extended attribute on a file descriptor.
| fd | The file descriptor to set the extended attribute to. | 
| attribute | The attribute to set. | 
| data | The data to set. | 
| length | The length of the data to set. | 
| flags | Define the set policy. | 
| void* eina_xattr_get | ( | const char * | file, | 
| const char * | attribute, | ||
| ssize_t * | size | ||
| ) | 
Retrieves an extended attribute from a file.
| file | The file to retrieve the extended attribute from. | 
| attribute | The extended attribute name to retrieve. | 
| size | The size of the retrieved extended attribute. | 
It will return NULL and *size will be 0 if it fails.
| Eina_Bool eina_xattr_int_get | ( | const char * | file, | 
| const char * | attribute, | ||
| int * | value | ||
| ) | 
Gets a int from an extended attribute properties.
| file | The file to get the string from. | 
| attribute | The attribute to get. | 
| value | Where to put the extracted value | 
This call check that the int is correctly set.
| Eina_Bool eina_xattr_int_set | ( | const char * | file, | 
| const char * | attribute, | ||
| int | value, | ||
| Eina_Xattr_Flags | flags | ||
| ) | 
Sets an int as a extended attribute properties.
| file | The file to set the int to. | 
| attribute | The attribute to set. | 
| value | The NULL-terminated int to set. | 
| flags | Define the set policy. | 
| Eina_Iterator* eina_xattr_ls | ( | const char * | file | ) | 
Gets an iterator that list all extended attribute of a file.
| file | The filename to retrieve the extended attribute list from. | 
The iterator will not allocate any data during the iteration step, so you need to copy them yourself if you need.
| Eina_Bool eina_xattr_set | ( | const char * | file, | 
| const char * | attribute, | ||
| const void * | data, | ||
| ssize_t | length, | ||
| Eina_Xattr_Flags | flags | ||
| ) | 
Sets an extended attribute on a file.
| file | The file to set the extended attribute to. | 
| attribute | The attribute to set. | 
| data | The data to set. | 
| length | The length of the data to set. | 
| flags | Define the set policy. | 
| char* eina_xattr_string_get | ( | const char * | file, | 
| const char * | attribute | ||
| ) | 
Gets a string from an extended attribute properties.
| file | The file to get the string from. | 
| attribute | The attribute to get. | 
NULL otherwise.This call check that the string is properly NULL-terminated before returning it.
| Eina_Bool eina_xattr_string_set | ( | const char * | file, | 
| const char * | attribute, | ||
| const char * | data, | ||
| Eina_Xattr_Flags | flags | ||
| ) | 
Sets a string as a extended attribute properties.
| file | The file to set the string to. | 
| attribute | The attribute to set. | 
| data | The NULL-terminated string to set. | 
| flags | Define the set policy. | 
| Eina_Iterator* eina_xattr_value_fd_ls | ( | int | fd | ) | 
Gets an iterator that list all extended attribute value related to a fd.
| fd | The file descriptor to retrieve the extended attribute list from. | 
The iterator will not allocate any data during the iteration step, so you need to copy them yourself if you need. The iterator will provide an Eina_Xattr structure.
| Eina_Iterator* eina_xattr_value_ls | ( | const char * | file | ) | 
Gets an iterator that list all extended attribute value related to a fd.
| file | The filename to retrieve the extended attribute list from. | 
The iterator will not allocate any data during the iteration step, so you need to copy them yourself if you need. The iterator will provide an Eina_Xattr structure.