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

/external/elfutils/0.153/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.c60 # include <mach-o/nlist.h>
63 # define nlist nlist_64 macro
107 struct nlist* stab = (struct nlist*)stabC;
142 n_stab_entries = stab_sz/(int)sizeof(struct nlist);
147 const struct nlist *st = &stab[i];
/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.c1794 struct wpa_ssid *prev, **nlist; local
1811 nlist = os_realloc_array(config->pssid, config->num_prio + 1,
1813 if (nlist == NULL)
1817 if (nlist[prio]->priority < ssid->priority) {
1818 os_memmove(&nlist[prio + 1], &nlist[prio],
1825 nlist[prio] = ssid;
1827 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.h335 // Constant masks for the "n_type" field in llvm::MachO::nlist and
344 // Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
354 // Constants for the "n_sect" field in llvm::MachO::nlist and
361 // Constant masks for the "n_desc" field in llvm::MachO::nlist and
388 // Constant values for the "n_type" field in llvm::MachO::nlist and
959 // Structs from <mach-o/nlist.h>
960 struct nlist { struct
976 // Get/Set functions from <mach-o/nlist.h>

Completed in 855 milliseconds