HomeSort by: relevance | last modified time | path
    Searched refs:STT_OBJECT (Results 1 - 25 of 171) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/cddl/osnet/dist/tools/ctf/common/
symbol.c 62 if (type == STT_OBJECT && sym->st_shndx == SHN_ABS &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/InterfaceStub/
ELFStub.h 29 Object = ELF::STT_OBJECT,
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSymbolELF.cpp 100 case ELF::STT_OBJECT:
131 return ELF::STT_OBJECT;
MCELFStreamer.cpp 177 // STT_NOTYPE < STT_OBJECT < STT_FUNC < STT_GNU_IFUNC < STT_TLS < anything else
181 for (unsigned Type : {ELF::STT_NOTYPE, ELF::STT_OBJECT, ELF::STT_FUNC,
224 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_OBJECT));
266 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_OBJECT));
275 Symbol->setType(CombineSymbolTypes(Symbol->getType(), ELF::STT_OBJECT));
312 Symbol->setType(ELF::STT_OBJECT);
ELFObjectWriter.cpp 486 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT ||
491 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
495 case ELF::STT_OBJECT:
497 Type = ELF::STT_OBJECT;
500 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE ||
  /src/external/bsd/elftosb/dist/common/
ELF.h 303 STT_OBJECT = 1, //!< The symbol is associated with a data object, such as a variable or array.
  /src/external/cddl/osnet/dist/common/ctf/
ctf_lookup.c 198 if (ELF32_ST_TYPE(symp->st_info) != STT_OBJECT)
202 if (ELF64_ST_TYPE(symp->st_info) != STT_OBJECT)
  /src/lib/libc/gen/
nlist_elf32.c 197 case STT_OBJECT:
308 case STT_OBJECT:
  /src/external/gpl3/binutils/dist/libctf/
ctf-serialize.c 83 || (sym->st_type == STT_OBJECT && sym->st_shndx == SHN_EXTABS
142 && sym->st_type != STT_OBJECT))
199 && sym->st_type != STT_OBJECT)
308 && this_link_sym->st_type != STT_OBJECT))
324 if ((this_link_sym->st_type == STT_OBJECT)
402 && this_link_sym->st_type != STT_OBJECT))
416 if ((this_link_sym->st_type == STT_OBJECT)
ctf-lookup.c 701 || (symp->st_type != STT_OBJECT && is_function == 0)
774 else if (sym.st_type == STT_OBJECT)
1150 if (!sym || (sym->st_type != STT_OBJECT && sym->st_type != STT_FUNC)
1151 || (sym->st_type != STT_OBJECT && is_function == 0)
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-serialize.c 77 || (sym->st_type == STT_OBJECT && sym->st_shndx == SHN_EXTABS
136 && sym->st_type != STT_OBJECT))
193 && sym->st_type != STT_OBJECT)
302 && this_link_sym->st_type != STT_OBJECT))
318 if ((this_link_sym->st_type == STT_OBJECT)
396 && this_link_sym->st_type != STT_OBJECT))
410 if ((this_link_sym->st_type == STT_OBJECT)
ctf-lookup.c 701 || (symp->st_type != STT_OBJECT && is_function == 0)
774 else if (sym.st_type == STT_OBJECT)
1150 if (!sym || (sym->st_type != STT_OBJECT && sym->st_type != STT_FUNC)
1151 || (sym->st_type != STT_OBJECT && is_function == 0)
  /src/external/gpl3/gdb.old/dist/libctf/
ctf-serialize.c 77 || (sym->st_type == STT_OBJECT && sym->st_shndx == SHN_EXTABS
136 && sym->st_type != STT_OBJECT))
193 && sym->st_type != STT_OBJECT)
302 && this_link_sym->st_type != STT_OBJECT))
318 if ((this_link_sym->st_type == STT_OBJECT)
396 && this_link_sym->st_type != STT_OBJECT))
410 if ((this_link_sym->st_type == STT_OBJECT)
ctf-lookup.c 701 || (symp->st_type != STT_OBJECT && is_function == 0)
774 else if (sym.st_type == STT_OBJECT)
1150 if (!sym || (sym->st_type != STT_OBJECT && sym->st_type != STT_FUNC)
1151 || (sym->st_type != STT_OBJECT && is_function == 0)
  /src/external/gpl3/gdb/dist/libctf/
ctf-serialize.c 83 || (sym->st_type == STT_OBJECT && sym->st_shndx == SHN_EXTABS
142 && sym->st_type != STT_OBJECT))
199 && sym->st_type != STT_OBJECT)
308 && this_link_sym->st_type != STT_OBJECT))
324 if ((this_link_sym->st_type == STT_OBJECT)
402 && this_link_sym->st_type != STT_OBJECT))
416 if ((this_link_sym->st_type == STT_OBJECT)
ctf-lookup.c 701 || (symp->st_type != STT_OBJECT && is_function == 0)
774 else if (sym.st_type == STT_OBJECT)
1150 if (!sym || (sym->st_type != STT_OBJECT && sym->st_type != STT_FUNC)
1151 || (sym->st_type != STT_OBJECT && is_function == 0)
  /src/usr.sbin/lockstat/
elf32.c 176 st = STT_OBJECT;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCELFStreamer.cpp 100 ELFSymbol->setType(ELF::STT_OBJECT);
  /src/sys/ddb/
db_elf.c 288 if (ELF_ST_TYPE(symp->st_info) != STT_OBJECT &&
404 case STT_OBJECT:
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InterfaceStubFunctionsConsumer.cpp 134 isa<VarDecl>(ND) ? llvm::ELF::STT_OBJECT
314 case llvm::ELF::STT_OBJECT: {
  /src/usr.sbin/kvm_mkdb/
nlist_elf32.c 295 case STT_OBJECT:
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
output.c 322 case STT_OBJECT:
390 case STT_OBJECT:
input.c 395 int check_sym = (type == STT_OBJECT || type == STT_FUNC);
  /src/sys/arch/atari/stand/tostools/libtos/
exec_elf.h 384 #define STT_OBJECT 1 /* Associated with a data object */
  /src/tools/amiga-elf2bb/sys/
exec_elf.h 423 #define STT_OBJECT 1 /* Associated with a data object */

Completed in 42 milliseconds

1 2 3 4 5 6 7