HomeSort by relevance Sort by last modified time
    Searched refs:fh (Results 201 - 225 of 364) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/valgrind/coregrind/
m_machine.c 559 Int model, n, fh; local
568 fh = sr_Res(fd);
578 n = VG_(read)(fh, file_buf, file_buf_size);
589 VG_(lseek)( fh, 0, VKI_SEEK_SET );
591 n = VG_(read)( fh, file_buf, num_bytes );
596 VG_(close)(fh);
655 Int n, fh; local
664 fh = sr_Res(fd);
674 n = VG_(read)(fh, file_buf, file_buf_size);
685 VG_(lseek)( fh, 0, VKI_SEEK_SET )
781 Int n, fh; local
    [all...]
  /system/core/libappfuse/
FuseAppLoop.cc 177 bool FuseAppLoop::ReplyOpen(uint64_t unique, uint64_t fh) {
180 response.open_out.fh = fh;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiSetMemSSE2.c 67 and al, 0fh
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/BootScriptExecutorDxe/X64/
S3Asm.asm 33 and ecx, 0fh
82 DB 0fh, 22h, 0c0h ; mov cr0, eax ; Activate real mode
  /external/autotest/client/cros/input_playback/
input_playback.py 156 with open(property_file) as fh:
157 name_line = fh.readline() # Format "N: NAMEOFDEVICE"
474 with open(filepath) as fh:
475 lines = fh.readlines()
  /external/devlib/devlib/instrument/
__init__.py 195 with open(self.path, 'rb') as fh:
196 reader = csv.reader(fh)
219 with open(self.path, 'rb') as fh:
220 reader = csv.reader(fh)
acmecape.py 118 with open(self.raw_data_file, 'rb') as fh:
123 reader = csv.reader(fh, skipinitialspace=True)
  /external/devlib/devlib/trace/
ftrace.py 265 with open(outfile, 'w') as fh:
266 json.dump(function_stats, fh, indent=4)
287 with open(destfile) as fh:
288 for line in fh:
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 165 struct fat_header fh; local
182 VG_(memset)(&fh, 0, sizeof(fh));
183 fh.magic = VG_(ntohl)(fh_be.magic);
184 fh.nfat_arch = VG_(ntohl)(fh_be.nfat_arch);
185 if (fh.magic == FAT_MAGIC) {
188 + fh.nfat_arch * sizeof(struct fat_arch)) {
195 f < fh.nfat_arch;
229 if (f == fh.nfat_arch) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccSmsInterfaceManager.java 155 IccFileHandler fh = mPhone.getIccFileHandler(); local
156 if (fh == null) {
174 fh.updateEFLinearFixed(IccConstants.EF_SMS, i + 1, record, null, null);
232 IccFileHandler fh = mPhone.getIccFileHandler(); local
233 if (fh == null) {
238 fh.updateEFLinearFixed(
310 IccFileHandler fh = mPhone.getIccFileHandler(); local
311 if (fh == null) {
318 fh.loadEFLinearFixedAll(IccConstants.EF_SMS, response);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
klm_prot.h 28 netobj fh; member in struct:klm_lock
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/elfexec/
elfexec_test.go 46 fh *elf.FileHeader
74 base, err := GetBase(tc.fh, tc.loadSegment, tc.stextOffset, tc.start, tc.limit, tc.offset)
  /prebuilts/go/darwin-x86/src/net/http/
filetransport.go 14 fh fileHandler
43 t.fh.ServeHTTP(rw, req)
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/elfexec/
elfexec_test.go 46 fh *elf.FileHeader
74 base, err := GetBase(tc.fh, tc.loadSegment, tc.stextOffset, tc.start, tc.limit, tc.offset)
  /prebuilts/go/linux-x86/src/net/http/
filetransport.go 14 fh fileHandler
43 t.fh.ServeHTTP(rw, req)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
sections.s 26 add: ld 0fh,a
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
Thunk16.asm 187 DB 1fh ; pop ds
207 DB 8fh ; 16-bit segment, 4GB limit
214 DB 8fh ; 16-bit segment, 4GB limit
256 and edx, 0fh
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/IA32/
InterruptTable.asm 68 int 0fh
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/X64/
InterruptTable.asm 66 int 0fh
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
Thunk16.asm 181 DB 2eh, 66h, 0fh, 01h, 9eh
200 DB 8fh ; 16-bit segment, 4GB limit
207 DB 8fh ; 16-bit segment, 4GB limit
234 and ecx, 0fh
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/X64/
SmiException.asm 62 DB 8fh
69 DB 8fh
279 db 0fh, 0aeh, 00000111y ;fxsave [rdi]
309 db 0fh, 0aeh, 00001110y ; fxrstor [rsi]
  /external/devlib/devlib/instrument/netstats/
__init__.py 22 with open(filepath) as fh:
23 for line in fh:
  /external/lisa/tests/eas/
capacity_capping.py 33 with open(CONF_FILE, "r") as fh:
34 CONF_VARS = json.load(fh)
  /external/python/cpython3/Lib/distutils/tests/
test_dir_util.py 108 with open(f, 'w') as fh:
109 fh.write('some content')
  /external/skia/infra/bots/
recipes.py 68 with open(recipes_cfg_path, 'rU') as fh:
69 pb = json.load(fh)

Completed in 1927 milliseconds

1 2 3 4 5 6 7 891011>>