OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:file_magic
(Results
1 - 25
of
52
) sorted by null
1
2
3
/external/llvm/lib/Object/
ObjectFile.cpp
46
sys::fs::
file_magic
Type = sys::fs::identify_magic(Object->getBuffer());
48
case sys::fs::
file_magic
::unknown:
49
case sys::fs::
file_magic
::bitcode:
50
case sys::fs::
file_magic
::archive:
51
case sys::fs::
file_magic
::macho_universal_binary:
54
case sys::fs::
file_magic
::elf_relocatable:
55
case sys::fs::
file_magic
::elf_executable:
56
case sys::fs::
file_magic
::elf_shared_object:
57
case sys::fs::
file_magic
::elf_core:
59
case sys::fs::
file_magic
::macho_object
[
all
...]
Binary.cpp
50
sys::fs::
file_magic
type = sys::fs::identify_magic(Source->getBuffer());
53
case sys::fs::
file_magic
::archive: {
59
case sys::fs::
file_magic
::elf_relocatable:
60
case sys::fs::
file_magic
::elf_executable:
61
case sys::fs::
file_magic
::elf_shared_object:
62
case sys::fs::
file_magic
::elf_core: {
70
case sys::fs::
file_magic
::macho_object:
71
case sys::fs::
file_magic
::macho_executable:
72
case sys::fs::
file_magic
::macho_fixed_virtual_memory_shared_lib:
73
case sys::fs::
file_magic
::macho_core
[
all
...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp
504
sys::fs::
file_magic
Type =
507
case sys::fs::
file_magic
::elf_relocatable:
508
case sys::fs::
file_magic
::elf_executable:
509
case sys::fs::
file_magic
::elf_shared_object:
510
case sys::fs::
file_magic
::elf_core:
513
case sys::fs::
file_magic
::macho_object:
514
case sys::fs::
file_magic
::macho_executable:
515
case sys::fs::
file_magic
::macho_fixed_virtual_memory_shared_lib:
516
case sys::fs::
file_magic
::macho_core:
517
case sys::fs::
file_magic
::macho_preload_executable
[
all
...]
/external/llvm/lib/Support/
Path.cpp
851
file_magic
identify_magic(StringRef Magic) {
853
return
file_magic
::unknown;
858
return
file_magic
::bitcode;
862
return
file_magic
::bitcode;
867
return
file_magic
::archive;
879
case 1: return
file_magic
::elf_relocatable;
880
case 2: return
file_magic
::elf_executable;
881
case 3: return
file_magic
::elf_shared_object;
882
case 4: return
file_magic
::elf_core;
893
return
file_magic
::macho_universal_binary
[
all
...]
/external/llvm/include/llvm/Support/
FileSystem.h
218
///
file_magic
- An "enum class" enumeration of file types based on magic (the first
220
struct
file_magic
{
struct in namespace:llvm::sys::fs
248
file_magic
() : V(unknown) {}
function in struct:llvm::sys::fs::file_magic
249
file_magic
(Impl V) : V(V) {}
function in struct:llvm::sys::fs::file_magic
674
file_magic
identify_magic(StringRef magic);
679
/// @param result Set to the type of file, or
file_magic
::unknown.
682
error_code identify_magic(const Twine &path,
file_magic
&result);
[
all
...]
/external/llvm/tools/llvm-nm/
llvm-nm.cpp
347
sys::fs::
file_magic
magic = sys::fs::identify_magic(Buffer->getBuffer());
351
if (magic == sys::fs::
file_magic
::bitcode) {
361
} else if (magic == sys::fs::
file_magic
::archive) {
412
} else if (magic == sys::fs::
file_magic
::macho_universal_binary) {
/external/llvm/unittests/Support/
Path.cpp
357
fs::
file_magic
magic;
359
{"magic.archive", "!<arch>\x0A", 8, fs::
file_magic
::archive},
361
fs::
file_magic
::elf_relocatable}
/external/llvm/tools/lto/
LTOModule.cpp
153
sys::fs::
file_magic
::bitcode;
157
sys::fs::
file_magic
type;
160
return type == sys::fs::
file_magic
::bitcode;
/external/chromium_org/third_party/lcov/bin/
geninfo
[
all
...]
/external/chromium_org/third_party/opus/src/
configure
[
all
...]
ltmain.sh
[
all
...]
/external/libcap-ng/libcap-ng-0.7/
configure
[
all
...]
ltmain.sh
[
all
...]
/external/libexif/
configure
[
all
...]
ltmain.sh
[
all
...]
/external/openfst/
configure
[
all
...]
/external/pixman/
configure
[
all
...]
/external/protobuf/gtest/
configure
[
all
...]
/external/qemu/distrib/sdl-1.2.15/acinclude/
libtool.m4
240
file_magic
*)
[
all
...]
/external/chromium_org/sdch/open-vcdiff/
ltmain.sh
[
all
...]
/external/chromium_org/third_party/libxml/src/
ltmain.sh
[
all
...]
/external/chromium_org/third_party/sqlite/src/
ltmain.sh
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/
ltmain.sh
[
all
...]
/external/libmtp/
ltmain.sh
[
all
...]
/external/libogg/
ltmain.sh
[
all
...]
Completed in 4300 milliseconds
1
2
3