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

1 2 3 4 5 6 78 91011>>

  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
WriteDr5.asm 44 DB 0fh, 23h, 0e8h
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
ReadDr4.asm 38 DB 0fh, 21h, 0e0h
ReadDr5.asm 38 DB 0fh, 21h, 0e8h
WriteDr4.asm 38 DB 0fh, 23h, 0e1h
WriteDr5.asm 38 DB 0fh, 23h, 0e9h
  /external/autotest/client/cros/
touch_playback_test_base.py 321 self.fh = tempfile.NamedTemporaryFile()
328 ['evtest', self.node], stdout=self.fh)
334 self.fh.name)
343 self.fh.close()
344 self.fh = tempfile.NamedTemporaryFile()
356 self.fh.seek(0)
357 events = self.fh.read()
391 self.fh.close()
  /external/autotest/client/site_tests/power_SuspendStress/
power_SuspendStress.py 69 with open('/proc/net/route') as fh:
70 for line in fh:
  /external/tensorflow/tensorflow/python/ops/
conv2d_benchmark.py 145 fh = 3
152 filter_shapes += [[fh, fw, c, b]]
  /external/tensorflow/tensorflow/tools/test/
system_info_lib.py 83 with gfile.GFile('/proc/self/status', 'rb') as fh:
84 nc = re.search(r'(?m)^Cpus_allowed:\s*(.*)$', fh.read())
  /prebuilts/go/darwin-x86/src/archive/zip/
zip_test.go 61 fh := new(FileHeader)
62 fh.SetModTime(testTime)
63 outTime := fh.ModTime()
69 func testHeaderRoundTrip(fh *FileHeader, wantUncompressedSize uint32, wantUncompressedSize64 uint64, t *testing.T) {
70 fi := fh.FileInfo()
75 if got, want := fh2.Name, fh.Name; got != want {
84 if got, want := fh2.ModifiedTime, fh.ModifiedTime; got != want {
87 if got, want := fh2.ModifiedDate, fh.ModifiedDate; got != want {
91 if sysfh, ok := fi.Sys().(*FileHeader); !ok && sysfh != fh {
97 fh := &FileHeader
    [all...]
  /prebuilts/go/linux-x86/src/archive/zip/
zip_test.go 61 fh := new(FileHeader)
62 fh.SetModTime(testTime)
63 outTime := fh.ModTime()
69 func testHeaderRoundTrip(fh *FileHeader, wantUncompressedSize uint32, wantUncompressedSize64 uint64, t *testing.T) {
70 fi := fh.FileInfo()
75 if got, want := fh2.Name, fh.Name; got != want {
84 if got, want := fh2.ModifiedTime, fh.ModifiedTime; got != want {
87 if got, want := fh2.ModifiedDate, fh.ModifiedDate; got != want {
91 if sysfh, ok := fi.Sys().(*FileHeader); !ok && sysfh != fh {
97 fh := &FileHeader
    [all...]
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_nic.c 88 FILE *fh = fopen(fname, "r"); local
89 if (!fh)
91 if (fscanf(fh, "%" PRIu64 "", value) != 0) {
94 fclose(fh);
  /external/tcpdump/
parsenfsfh.c 108 Parse_fh(register const unsigned char *fh, u_int len, my_fsid *fsidp,
114 register const unsigned char *fhp = fh;
371 memcpy((char *)fsidp, (const char *)fh, 14);
377 memcpy((char *)tempa, (const char *)fh, 14); /* ensure alignment */
  /system/extras/verity/fec/
main.cpp 145 fec::io fh(filename, O_RDONLY, FEC_VERITY_DISABLE);
147 if (!fh) {
154 if (!fh.get_ecc_metadata(data)) {
162 if (!fh.get_verity_metadata(data)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
fmmodule.c 23 newfhobject(fmfonthandle fh)
26 if (fh == NULL) {
34 fhp->fh_fh = fh;
  /external/autotest/client/site_tests/platform_FilePerms/
platform_FilePerms.py 297 fh = open(tempfile, 'w')
298 fh.write(TEXT)
299 fh.close()
  /external/python/cpython2/Lib/distutils/tests/
test_dir_util.py 110 fh = open(f, 'w')
112 fh.write('some content')
114 fh.close()
  /external/python/cpython2/Modules/
fmmodule.c 23 newfhobject(fmfonthandle fh)
26 if (fh == NULL) {
34 fhp->fh_fh = fh;
  /external/python/cpython2/PC/VC6/
build_ssl.py 44 fh = os.popen('"%s" -e "use Win32;"' % perl)
45 fh.read()
46 rc = fh.close()
  /external/python/cpython2/PC/VS8.0/
build_ssl.py 49 fh = os.popen('"%s" -e "use Win32;"' % perl)
50 fh.read()
51 rc = fh.close()
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccPhoneBookInterfaceManager.java 265 IccFileHandler fh = mPhone.getIccFileHandler(); local
266 if (fh != null) {
267 fh.getEFLinearRecordSize(efid, response);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_dir_util.py 110 fh = open(f, 'w')
112 fh.write('some content')
114 fh.close()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_dir_util.py 110 fh = open(f, 'w')
112 fh.write('some content')
114 fh.close()
  /device/google/marlin/camera/QCamera2/HAL/test/
qcamera_test.cpp 426 FILE *fh = fopen(path.string(), "r+");
427 if ( !fh ) {
432 fseek(fh, 0, SEEK_END);
433 size_t len = (size_t)ftell(fh);
434 rewind(fh);
438 fclose(fh);
448 size_t readSize = fread(buff, 1, len, fh);
462 rewind(fh);
465 size_t writeSize = fwrite(&temp, sizeof(unsigned char), 1, fh);
470 fwrite(&temp, sizeof(unsigned char), 1, fh);
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/HAL/test/
qcamera_test.cpp 421 FILE *fh = fopen(path.string(), "r+"); local
422 if ( !fh ) {
427 fseek(fh, 0, SEEK_END);
428 size_t len = (size_t)ftell(fh);
429 rewind(fh);
433 fclose(fh);
443 size_t readSize = fread(buff, 1, len, fh);
457 rewind(fh);
460 size_t writeSize = fwrite(&temp, sizeof(unsigned char), 1, fh);
465 fwrite(&temp, sizeof(unsigned char), 1, fh);
3089 FILE *fh = fopen(file, "r"); local
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 78 91011>>