Searched refs:e (Results 1 – 5 of 5) sorted by relevance
/support/ |
A D | support_wait_for_thread_exit.c | 36 struct dirent *e = readdir (proc_self_task); in support_wait_for_thread_exit() local 37 if (e == NULL && errno != 0) in support_wait_for_thread_exit() 39 if (e == NULL) in support_wait_for_thread_exit() 48 if (strcmp (e->d_name, ".") == 0 || strcmp (e->d_name, "..") == 0 in support_wait_for_thread_exit() 49 || strcmp (e->d_name, "0") == 0) in support_wait_for_thread_exit() 52 int task_tid = atoi (e->d_name); in support_wait_for_thread_exit() 54 FAIL_EXIT1 ("Invalid /proc/self/task entry: %s", e->d_name); in support_wait_for_thread_exit()
|
A D | support_format_netent.c | 28 support_format_netent (struct netent *e) in support_format_netent() argument 30 if (e == NULL) in support_format_netent() 41 if (e->n_name != NULL) in support_format_netent() 42 fprintf (mem.out, "name: %s\n", e->n_name); in support_format_netent() 43 for (char **ap = e->n_aliases; *ap != NULL; ++ap) in support_format_netent() 45 if (e->n_addrtype != AF_INET) in support_format_netent() 46 fprintf (mem.out, "addrtype: %d\n", e->n_addrtype); in support_format_netent() 48 unsigned int n_net = e->n_net; in support_format_netent()
|
A D | check_netent.c | 29 check_netent (const char *query_description, struct netent *e, in check_netent() argument 32 char *formatted = support_format_netent (e); in check_netent()
|
A D | tst-support-open-dev-null-range.c | 61 struct dirent64 *e = readdir64 (fds); in number_of_opened_files() local 62 if (e == NULL) in number_of_opened_files() 69 if (e->d_name[0] == '.') in number_of_opened_files() 73 long int fd = strtol (e->d_name, &endptr, 10); in number_of_opened_files() 76 e->d_name); in number_of_opened_files()
|
A D | support_descriptors.c | 51 #define DYNARRAY_ELEMENT_FREE(e) free ((e)->link_target) argument 73 struct dirent64 *e = readdir64 (fds); in support_descriptors_list() local 74 if (e == NULL) in support_descriptors_list() 81 if (e->d_name[0] == '.') in support_descriptors_list() 85 long int fd = strtol (e->d_name, &endptr, 10); in support_descriptors_list() 88 e->d_name); in support_descriptors_list()
|
Completed in 10 milliseconds