Searched defs:nlist (Results 1 - 7 of 7) sorted by relevance

/external/elfutils/libelf/
H A Dnlist.h1 /* Interface for nlist.
55 struct nlist struct
71 extern int nlist (__const char *__filename, struct nlist *__nl);
77 #endif /* nlist.h */
H A Dnlist.c58 #include <nlist.h>
81 nlist (const char *filename, struct nlist *nl) function
102 /* For compatibility reasons (`nlist' existed before ELF and libelf)
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadstabs.c57 # include <mach-o/nlist.h>
60 # define nlist nlist_64 macro
106 struct nlist* stab = (struct nlist*)stabC;
141 n_stab_entries = stab_sz/(int)sizeof(struct nlist);
144 const struct nlist *st = &stab[i];
/external/kernel-headers/original/linux/
H A Da.out.h158 struct nlist {
161 struct nlist *n_next;
157 struct nlist { struct
/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig.c1458 struct wpa_ssid *prev, **nlist; local
1475 nlist = os_realloc(config->pssid,
1477 if (nlist == NULL)
1481 if (nlist[prio]->priority < ssid->priority)
1485 os_memmove(&nlist[prio + 1], &nlist[prio],
1488 nlist[prio] = ssid;
1490 config->pssid = nlist;
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c1677 struct wpa_ssid *prev, **nlist; local
1694 nlist = os_realloc_array(config->pssid, config->num_prio + 1,
1696 if (nlist == NULL)
1700 if (nlist[prio]->priority < ssid->priority) {
1701 os_memmove(&nlist[prio + 1], &nlist[prio],
1708 nlist[prio] = ssid;
1710 config->pssid = nlist;
/external/llvm/include/llvm/Support/
H A DMachO.h227 // Constant masks for the "n_type" field in llvm::MachO::nlist and
234 // Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
242 // Constant masks for the "n_sect" field in llvm::MachO::nlist and
250 // Constant values for the "n_type" field in llvm::MachO::nlist and
640 struct nlist { struct in namespace:llvm::MachO
656 // Get/Set functions from <mach-o/nlist.h>

Completed in 202 milliseconds