/external/google-breakpad/src/common/solaris/ |
D | dump_symbols.cc | 67 unsigned char n_type; member 253 while (cur_list < list_end && cur_list->n_type == N_PSYM) { in LoadStackParamSize() 268 while (cur_list < list_end && cur_list->n_type != N_SLINE) { in LoadLineInfo() 270 if (cur_list->n_type == N_FUN || cur_list->n_type == N_SO || in LoadLineInfo() 271 cur_list->n_type == N_ENDM) { in LoadLineInfo() 277 while (cur_list < list_end && cur_list->n_type == N_SLINE) { in LoadLineInfo() 284 if (cur_list == list_end && cur_list->n_type == N_ENDM) in LoadLineInfo() 297 assert(cur_list->n_type == N_SO); in LoadFuncSymbols() 303 while (cur_list < list_end && cur_list->n_type != N_FUN) { in LoadFuncSymbols() 304 if (cur_list->n_type == N_SO) { in LoadFuncSymbols() [all …]
|
/external/elfutils/src/tests/ |
D | test-nlist.c | 69 cnt, nl[cnt].n_type, in main() 74 && nl[cnt].n_type == 0 && nl[cnt].n_sclass == 0 in main() 77 || nl[cnt].n_type != 0 || nl[cnt].n_sclass != 0 in main()
|
/external/lldb/source/Plugins/Process/elf-core/ |
D | ProcessElfCore.cpp | 379 elf::elf_word n_type; member 383 ELFNote() : n_namesz(0), n_descsz(0), n_type(0) in ELFNote() 515 if ((note.n_type == NT_PRSTATUS && have_prstatus) || in ParseThreadContextsFromNoteSegment() 516 (note.n_type == NT_PRPSINFO && have_prpsinfo)) in ParseThreadContextsFromNoteSegment() 534 switch (note.n_type) in ParseThreadContextsFromNoteSegment() 559 switch (note.n_type) in ParseThreadContextsFromNoteSegment()
|
/external/google-breakpad/src/common/android/include/ |
D | elf.h | 66 Elf32_Word n_type; member 72 Elf64_Word n_type; member
|
/external/elfutils/src/libelf/ |
D | nlist.c | 187 nl->n_type = GELF_ST_TYPE (found->sym.st_info); in nlist() 197 nl->n_type = 0; in nlist() 234 nl->n_type = 0; in nlist()
|
D | nlist.h | 39 unsigned short int n_type; /* Type of symbol. */ member
|
/external/libnl/lib/route/ |
D | neigh.c | 210 diff |= NEIGH_DIFF(TYPE, a->n_type != b->n_type); in neigh_compare() 277 neigh->n_type = nm->ndm_type; in neigh_msg_parser() 376 nl_rtntype2str(n->n_type, rtn_type, sizeof(rtn_type)), in neigh_dump_details() 420 nl_rtntype2str(neigh->n_type, buf, sizeof(buf))); in neigh_dump_env() 826 neigh->n_type = type; in rtnl_neigh_set_type() 833 return neigh->n_type; in rtnl_neigh_get_type()
|
/external/google-breakpad/src/client/mac/handler/ |
D | breakpad_nlist_64.cc | 184 q->n_type = 0; in __breakpad_fdnlist() 360 if (q->n_un.n_strx == 0 || q->n_type & N_STAB) in __breakpad_fdnlist() 386 p->n_type = q->n_type; in __breakpad_fdnlist()
|
/external/linux-tools-perf/src/tools/perf/util/ |
D | symbol-minimal.c | 34 u32 n_type; in read_build_id() member 47 nhdr->n_type = bswap_32(nhdr->n_type); in read_build_id() 56 if (nhdr->n_type == NT_GNU_BUILD_ID && in read_build_id()
|
/external/lldb/source/Plugins/ObjectFile/Mach-O/ |
D | ObjectFileMachO.cpp | 2003 … nlist.n_type = dsc_local_symbols_data.GetU8_unchecked (&nlist_data_offset); in ParseSymtab() 2031 bool is_debug = ((nlist.n_type & NlistMaskStab) != 0); in ParseSymtab() 2041 switch (nlist.n_type) in ParseSymtab() 2387 uint8_t n_type = NlistMaskType & nlist.n_type; in ParseSymtab() local 2388 … sym[sym_idx].SetExternal((NlistMaskExternal & nlist.n_type) != 0); in ParseSymtab() 2390 switch (n_type) in ParseSymtab() 2624 … sym[pos->second].SetFlags (nlist.n_type << 16 | nlist.n_desc); in ParseSymtab() 2644 … sym[pos->second].SetFlags (nlist.n_type << 16 | nlist.n_desc); in ParseSymtab() 2663 … sym[GSYM_sym_idx].SetFlags (nlist.n_type << 16 | nlist.n_desc); in ParseSymtab() 2675 … sym[sym_idx].SetFlags (nlist.n_type << 16 | nlist.n_desc); in ParseSymtab() [all …]
|
/external/elfutils/src/libebl/ |
D | eblcorenote.c | 63 switch (nhdr->n_type)
|
/external/llvm/tools/llvm-nm/ |
D | llvm-nm.cpp | 290 NType = STE_64.n_type; in darwinPrintSymbol() 300 NType = STE.n_type; in darwinPrintSymbol() 511 NType = STE_64.n_type; in darwinPrintStab() 516 NType = STE.n_type; in darwinPrintStab() 733 return STE.n_type; in getNType() 736 return STE.n_type; in getNType() 878 if ((STE.n_type & MachO::N_TYPE) == MachO::N_SECT) in getNsectInMachO() 883 if ((STE.n_type & MachO::N_TYPE) == MachO::N_SECT) in getNsectInMachO()
|
/external/elfutils/src/libdwfl/ |
D | linux-core-attach.c | 145 if (nhdr.n_type != NT_PRSTATUS) in core_next_thread() 196 assert (nhdr.n_type == NT_PRSTATUS); in core_set_initial_registers() 387 if (nhdr.n_type != NT_PRPSINFO) in dwfl_core_file_attach()
|
D | core-file.c | 476 if (nhdr.n_type == NT_AUXV) in dwfl_core_file_report() 481 if (nhdr.n_type == NT_FILE) in dwfl_core_file_report()
|
/external/kernel-headers/original/uapi/linux/ |
D | elf.h | 409 Elf32_Word n_type; /* Content type */ member 416 Elf64_Word n_type; /* Content type */ member
|
D | a.out.h | 169 unsigned char n_type; member
|
/external/elfutils/src/backends/ |
D | linux-core-note.c | 221 if (nhdr->n_type != 0 234 switch (nhdr->n_type)
|
/external/libunwind/src/coredump/ |
D | _UCD_create.c | 233 if (note_hdr->n_type == NT_PRSTATUS) in _UCD_create() 246 if (note_hdr->n_type == NT_PRSTATUS) in _UCD_create()
|
/external/elfutils/src/libdwelf/ |
D | dwelf_elf_gnu_build_id.c | 52 if (nhdr.n_type == NT_GNU_BUILD_ID in find_elf_build_id()
|
/external/libxml2/ |
D | testapi.c | 3794 int n_type; in test_xmlSAX2AttributeDecl() local 3805 for (n_type = 0;n_type < gen_nb_int;n_type++) { in test_xmlSAX2AttributeDecl() 3813 type = gen_int(n_type, 3); in test_xmlSAX2AttributeDecl() 3823 des_int(n_type, type, 3); in test_xmlSAX2AttributeDecl() 3835 printf(" %d", n_type); in test_xmlSAX2AttributeDecl() 3989 int n_type; in test_xmlSAX2ElementDecl() local 3995 for (n_type = 0;n_type < gen_nb_int;n_type++) { in test_xmlSAX2ElementDecl() 4000 type = gen_int(n_type, 2); in test_xmlSAX2ElementDecl() 4007 des_int(n_type, type, 2); in test_xmlSAX2ElementDecl() 4016 printf(" %d", n_type); in test_xmlSAX2ElementDecl() [all …]
|
/external/google-breakpad/src/common/linux/ |
D | file_id.cc | 67 if (note_header->n_type == NT_GNU_BUILD_ID) in ElfClassBuildIDNoteIdentifier()
|
D | elf_core_dump.cc | 57 return header ? header->n_type : 0; in GetType()
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 369 if ((Entry.n_type & MachO::N_TYPE) != MachO::N_INDR) in getIndirectName() 374 if ((Entry.n_type & MachO::N_TYPE) != MachO::N_INDR) in getIndirectName() 388 if ((Entry.n_type & MachO::N_TYPE) == MachO::N_UNDF && in getSymbolAddress() 395 if ((Entry.n_type & MachO::N_TYPE) == MachO::N_UNDF && in getSymbolAddress() 467 uint8_t n_type = Entry.n_type; in getSymbolType() local 472 if (n_type & MachO::N_STAB) { in getSymbolType() 477 switch (n_type & MachO::N_TYPE) { in getSymbolType() 491 uint8_t MachOType = Entry.n_type; in getSymbolFlags()
|
/external/lldb/test/functionalities/archives/ |
D | README | 8 Index n_strx n_type n_sect n_desc n_value
|
/external/elfutils/src/src/ |
D | elfcmp.c | 445 if (note1.n_type != note2.n_type) in main() 456 if (note1.n_type == NT_GNU_BUILD_ID in main()
|