Home
last modified time | relevance | path

Searched refs:FH (Results 1 – 2 of 2) sorted by relevance

/system/core/libsparse/
Dsimg_dump.py75 FH = open(path, "rb")
76 header_bin = FH.read(28)
125 header_bin = FH.read(12)
133 curpos = FH.tell()
146 data = FH.read(data_sz)
157 fill_bin = FH.read(4)
178 crc_bin = FH.read(4)
204 print(" %10u %7u End" % (FH.tell(), offset))
210 junk_len = len(FH.read())
/system/core/adb/
Dsysdeps_win32.cpp51 typedef struct FHRec_* FH; typedef
55 void (*_fh_init)(FH);
56 int (*_fh_close)(FH);
57 int (*_fh_lseek)(FH, int, int);
58 int (*_fh_read)(FH, void*, int);
59 int (*_fh_write)(FH, const void*, int);
62 static void _fh_file_init(FH);
63 static int _fh_file_close(FH);
64 static int _fh_file_lseek(FH, int, int);
65 static int _fh_file_read(FH, void*, int);
[all …]