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

/external/elfutils/libelf/
H A Dnlist.h1 /* Interface for nlist.
22 struct nlist struct
38 extern int nlist (__const char *__filename, struct nlist *__nl);
44 #endif /* nlist.h */
H A Dnlist.c25 #include <nlist.h>
48 nlist (const char *filename, struct nlist *nl) function
69 /* For compatibility reasons (`nlist' existed before ELF and libelf)
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadstabs.c59 # include <mach-o/nlist.h>
62 # define nlist nlist_64 macro
108 struct nlist* stab = (struct nlist*)stabC;
143 n_stab_entries = stab_sz/(int)sizeof(struct nlist);
146 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/
H A Dconfig.c1251 struct wpa_ssid *prev, **nlist; local
1268 nlist = os_realloc(config->pssid,
1270 if (nlist == NULL)
1274 if (nlist[prio]->priority < ssid->priority)
1278 os_memmove(&nlist[prio + 1], &nlist[prio],
1281 nlist[prio] = ssid;
1283 config->pssid = nlist;
/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.c1592 struct wpa_ssid *prev, **nlist; local
1609 nlist = os_realloc(config->pssid,
1611 if (nlist == NULL)
1615 if (nlist[prio]->priority < ssid->priority)
1619 os_memmove(&nlist[prio + 1], &nlist[prio],
1622 nlist[prio] = ssid;
1624 config->pssid = nlist;
/external/llvm/include/llvm/Support/
H A DMachO.h223 // Constant masks for the "n_type" field in llvm::MachO::nlist and
230 // Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
238 // Constant masks for the "n_sect" field in llvm::MachO::nlist and
246 // Constant values for the "n_type" field in llvm::MachO::nlist and
636 struct nlist { struct in namespace:llvm::MachO
652 // Get/Set functions from <mach-o/nlist.h>

Completed in 790 milliseconds