Searched refs:LookupSymbol (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dvdso_support.cc113 if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
136 bool VDSOSupport::LookupSymbol(const char *name, function in class:base::VDSOSupport
140 return image_.LookupSymbol(name, version, type, info);
H A Dvdso_support.h51 // if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
90 bool LookupSymbol(const char *name, const char *version,
H A Delf_mem_image.h109 bool LookupSymbol(const char *name, const char *version,
H A Delf_mem_image.cc315 bool ElfMemImage::LookupSymbol(const char *name, function in class:base::ElfMemImage
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dvdso_support.cc113 if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
136 bool VDSOSupport::LookupSymbol(const char *name, function in class:base::VDSOSupport
140 return image_.LookupSymbol(name, version, type, info);
H A Dvdso_support.h51 // if (vdso.LookupSymbol("__vdso_getcpu", "LINUX_2.6", STT_FUNC, &info)) {
90 bool LookupSymbol(const char *name, const char *version,
H A Delf_mem_image.h109 bool LookupSymbol(const char *name, const char *version,
H A Delf_mem_image.cc315 bool ElfMemImage::LookupSymbol(const char *name, function in class:base::ElfMemImage
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstacktrace_x86-inl.h160 if (!vdso.LookupSymbol("__kernel_rt_sigreturn", "LINUX_2.5",
162 !vdso.LookupSymbol("__kernel_vsyscall", "LINUX_2.5",
/external/llvm/lib/MC/
H A DMCContext.cpp195 MCSymbol *MCContext::LookupSymbol(StringRef Name) const { function in class:MCContext
199 MCSymbol *MCContext::LookupSymbol(const Twine &Name) const { function in class:MCContext
202 return LookupSymbol(NameSV.str());
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_x86-inl.h163 if (!vdso.LookupSymbol("__kernel_rt_sigreturn", "LINUX_2.5",
165 !vdso.LookupSymbol("__kernel_vsyscall", "LINUX_2.5",
/external/llvm/include/llvm/MC/
H A DMCContext.h219 /// LookupSymbol - Get the symbol for \p Name, or null.
220 MCSymbol *LookupSymbol(StringRef Name) const;
221 MCSymbol *LookupSymbol(const Twine &Name) const;
/external/v8/src/
H A Dfactory.h81 Handle<String> LookupSymbol(Vector<const char> str);
82 Handle<String> LookupSymbol(Handle<String> str);
89 return LookupSymbol(CStrVector(str));
H A Dproperty.h52 MaybeObject* maybe_result = HEAP->LookupSymbol(key_);
H A Dfactory.cc159 Handle<String> Factory::LookupSymbol(Vector<const char> string) { function in class:v8::internal::Factory
161 isolate()->heap()->LookupSymbol(string),
166 Handle<String> Factory::LookupSymbol(Handle<String> string) { function in class:v8::internal::Factory
168 isolate()->heap()->LookupSymbol(*string),
857 isolate()->heap()->LookupSymbol(*value), String);
H A Dheap.h993 MUST_USE_RESULT MaybeObject* LookupSymbol(Vector<const char> str);
997 return LookupSymbol(CStrVector(str));
999 MUST_USE_RESULT MaybeObject* LookupSymbol(String* str);
H A Dparser.h783 Handle<String> LookupSymbol(int symbol_id);
H A Dheap.cc2670 MaybeObject* maybe_symbol = heap->LookupSymbol(str);
3272 MaybeObject* maybe_result = LookupSymbol(Vector<const char>(buffer, 1));
5155 MaybeObject* Heap::LookupSymbol(Vector<const char> string) { function in class:v8::internal::Heap
5159 symbol_table()->LookupSymbol(string, &symbol);
5220 MaybeObject* Heap::LookupSymbol(String* string) { function in class:v8::internal::Heap
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc2159 // If LookupSymbol() finds a symbol that is in a file which is not a declared
2175 // only be called after LookupSymbol() fails.
2207 // parents, etc. For example, LookupSymbol("foo.bar", "baz.qux.corge") makes
2216 // that LookupSymbol may still return a non-type symbol in LOOKUP_TYPES mode,
2227 Symbol LookupSymbol(const string& name, const string& relative_to,
2231 // Like LookupSymbol() but will not return a placeholder even if
2237 // Creates a placeholder type suitable for return from LookupSymbol(). May
2725 Symbol DescriptorBuilder::LookupSymbol( function in class:google::protobuf::DescriptorBuilder
2974 // We add the dummy token so that LookupSymbol does the right thing.
3792 Symbol extendee = LookupSymbol(prot
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc1861 // If LookupSymbol() finds a symbol that is in a file which is not a declared
1877 // only be called after LookupSymbol() fails.
1901 // parents, etc. For example, LookupSymbol("foo.bar", "baz.qux.corge") makes
1910 // that LookupSymbol may still return a non-type symbol in LOOKUP_TYPES mode,
1921 Symbol LookupSymbol(const string& name, const string& relative_to,
1925 // Like LookupSymbol() but will not return a placeholder even if
1931 // Creates a placeholder type suitable for return from LookupSymbol(). May
2388 Symbol DescriptorBuilder::LookupSymbol( function in class:google::protobuf::DescriptorBuilder
2635 // We add the dummy token so that LookupSymbol does the right thing.
3396 Symbol extendee = LookupSymbol(prot
[all...]
/external/chromium_org/v8/src/
H A Dparser.h731 Handle<String> LookupSymbol(int symbol_id);
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1415 MCSymbol *Sym = getContext().LookupSymbol(Parser.getTok().getIdentifier());
1770 MCSymbol *Sym = getContext().LookupSymbol(Name);
/external/v8/test/cctest/
H A Dtest-heap.cc769 FACTORY->LookupSymbol(Vector<const char>(non_ascii, 3 * length));
772 FACTORY->LookupSymbol(Vector<const char>(ascii, length));
/external/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp312 if (OutContext.LookupSymbol(Twine(MAI->getPrivateGlobalPrefix()) +
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2061 MCSymbol *Sym = getContext().LookupSymbol(Name);
3631 MCSymbol *Sym = getContext().LookupSymbol(Name);

Completed in 791 milliseconds

12