OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fobj
(Results
1 - 5
of
5
) 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
...]
/device/ti/panda/audio/test/
TestFlinger.py
237
fobj
= open(tmpfile, 'wt')
240
fobj
.write("BEGINNING TEST SET %s\n" % (timestamp,))
241
fobj
.write("====================================================================\n")
242
return
fobj
244
def close_logfile(
fobj
):
247
fobj
: an open and writeable file object
253
fobj
.write("====================================================================\n")
254
fobj
.write("CLOSING TEST SET %s\n" % (timestamp,))
/external/clang/bindings/python/clang/
cindex.py
[
all
...]
Completed in 407 milliseconds