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

/external/elfutils/src/libelf/
H A Dnlist.h1 /* Interface for nlist.
34 struct nlist struct
50 extern int nlist (__const char *__filename, struct nlist *__nl);
56 #endif /* nlist.h */
H A Dnlist.c37 #include <nlist.h>
60 nlist (const char *filename, struct nlist *nl) function
81 /* For compatibility reasons (`nlist' existed before ELF and libelf)
/external/kernel-headers/original/uapi/linux/
H A Da.out.h164 struct nlist {
167 struct nlist *n_next;
163 struct nlist { struct
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c2005 struct wpa_ssid *prev, **nlist; local
2022 nlist = os_realloc_array(config->pssid, config->num_prio + 1,
2024 if (nlist == NULL)
2028 if (nlist[prio]->priority < ssid->priority) {
2029 os_memmove(&nlist[prio + 1], &nlist[prio],
2036 nlist[prio] = ssid;
2038 config->pssid = nlist;
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1547 const size_t nlist_byte_size = bit_width_32 ? sizeof(struct nlist) : sizeof(struct nlist_64);
1667 module_sp->LogMessage(log, "failed to read nlist data");
1793 // but it isn't available in the normal nlist data. However, there *are* duplicate entries of *some*
1794 // LOCAL symbols in the normal nlist data. To handle this situation correctly, we must first attempt
1796 // nlist parser to ignore all LOCAL symbols.
1875 1. The start and count of the nlist records in the dyld_shared_cache file
1876 2. The start and size of the strings for these nlist records
1881 The dyld_cache_local_symbols_entry also lists the start of this dylib/framework's nlist records
1882 and the count of how many nlist records there are for this dylib/framework.
1987 // The normal nlist cod
1998 struct nlist_64 nlist; local
[all...]
/external/llvm/include/llvm/Support/
H A DMachO.h339 // Constant masks for the "n_type" field in llvm::MachO::nlist and
348 // Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
358 // Constants for the "n_sect" field in llvm::MachO::nlist and
365 // Constant masks for the "n_desc" field in llvm::MachO::nlist and
392 // Constant values for the "n_type" field in llvm::MachO::nlist and
974 // Structs from <mach-o/nlist.h>
982 struct nlist { struct
1245 inline void swapStruct(nlist &sym) {
1287 // Get/Set functions from <mach-o/nlist.h>

Completed in 295 milliseconds