OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fobj
(Results
1 - 6
of
6
) sorted by null
/sdk/emulator/qtools/
read_elf.h
7
Elf32_Ehdr *ReadElfHeader(FILE *
fobj
);
8
Elf32_Shdr *ReadSectionHeaders(Elf32_Ehdr *hdr, FILE *
fobj
);
9
char *ReadStringTable(Elf32_Ehdr *hdr, Elf32_Shdr *shdr, FILE *
fobj
);
read_elf.cpp
114
Elf32_Ehdr *ReadElfHeader(FILE *
fobj
)
117
int rval = fread(hdr, sizeof(Elf32_Ehdr), 1,
fobj
);
trace_reader.h
593
FILE *
fobj
= fopen(full_path, "r");
local
594
if(
fobj
== NULL) {
610
if (
fobj
!= NULL)
611
fclose(
fobj
);
615
hdr = ReadElfHeader(
fobj
);
621
shdr = ReadSectionHeaders(hdr,
fobj
);
626
char *section_names = ReadStringTable(hdr, shdr,
fobj
);
644
ReadSection(symstr, symbol_names,
fobj
);
648
ReadSection(symtab, elf_symbols,
fobj
);
869
fclose(
fobj
);
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py
55
fobj
= self.tar.extractfile(tarinfo)
56
data =
fobj
.read()
88
fobj
= open(os.path.join(TEMPDIR, "ustar/regtype"), "rb")
89
data =
fobj
.read()
90
fobj
.close()
93
fobj
= self.tar.extractfile(tarinfo)
95
text =
fobj
.read()
96
fobj
.seek(0)
97
self.assertTrue(0 ==
fobj
.tell(),
99
fobj
.seek(2048, 0
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py
55
fobj
= self.tar.extractfile(tarinfo)
56
data =
fobj
.read()
88
fobj
= open(os.path.join(TEMPDIR, "ustar/regtype"), "rb")
89
data =
fobj
.read()
90
fobj
.close()
93
fobj
= self.tar.extractfile(tarinfo)
95
text =
fobj
.read()
96
fobj
.seek(0)
97
self.assertTrue(0 ==
fobj
.tell(),
99
fobj
.seek(2048, 0
[
all
...]
/external/clang/bindings/python/clang/
cindex.py
[
all
...]
Completed in 1035 milliseconds