Searched refs:fh (Results 1 - 25 of 91) sorted by relevance

1234

/external/chromium_org/tools/gyp/test/actions-multiple/src/
H A Dfilter.py10 fh = open(sys.argv[4], 'w') variable
11 fh.write(data.replace(sys.argv[1], sys.argv[2]))
12 fh.close()
/external/chromium_org/tools/gyp/test/actions-none/src/
H A Dfake_cross.py9 fh = open(sys.argv[-1], 'wb') variable
11 fh.write(open(filename).read())
12 fh.close()
/external/clang/utils/analyzer/
H A Dupdate_plist_test.pl13 my $fh = File::Temp->new();
14 my $filename = $fh->filename;
15 $fh->unlink_on_destroy(1);
21 print $fh $_;
39 print $fh "// CHECK: ";
43 print $fh "// CHECK-NEXT: ";
45 print $fh $_;
48 close ($fh);
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DANTLRFileStream.pm25 my $fh;
28 open $fh, "<:encoding($encoding)", $file_name
32 open $fh, '<', $file_name
39 $content = <$fh>;
41 close $fh or carp "Can't close $fh: $!";
55 my $fh;
57 open $fh, "<:encoding($encoding)", $file_name
61 open $fh, '<', $file_name
68 $content = <$fh>;
[all...]
/external/chromium_org/tools/gyp/test/external-cross-compile/src/
H A Dfake_cross.py8 fh = open(sys.argv[1], 'w') variable
16 fh.write(data)
18 fh.close()
/external/lldb/scripts/Python/interface/
H A DSBCommandReturnObject.i51 PutOutput (FILE *fh);
54 PutError (FILE *fh);
88 SetImmediateOutputFile (FILE *fh);
91 SetImmediateErrorFile (FILE *fh);
H A DSBStream.i84 RedirectToFileHandle (FILE *fh, bool transfer_fh_ownership);
/external/chromium_org/third_party/libvpx/
H A Dobj_int_extract.py27 with open(options.output, 'w') as fh:
29 stdout=fh)
/external/lldb/include/lldb/API/
H A DSBCommandReturnObject.h48 PutOutput (FILE *fh);
57 PutError (FILE *fh);
84 SetImmediateOutputFile (FILE *fh);
87 SetImmediateErrorFile (FILE *fh);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRFileStream.m84 NSFileHandle *fh;
88 fh = [NSFileHandle fileHandleForReadingFromURL:f error:&error];
89 if ( fh==nil ) {
94 retData = [fh readDataToEndOfFile];
105 [fh closeFile];
H A DANTLRReaderStream.h13 NSFileHandle *fh; variable
19 @property (retain) NSFileHandle *fh; variable
/external/iproute2/tc/
H A Df_route.c42 __u32 fh = 0xFFFF8000; local
69 fh &= ~0x80FF;
70 fh |= id&0xFF;
79 fh &= 0xFFFF;
80 fh |= id<<16;
90 fh &= 0xFFFF;
91 fh |= (0x8000|id)<<16;
126 fh &= ~0x7F00;
127 fh |= (order<<8)&0x7F00;
130 t->tcm_handle = fh;
[all...]
/external/dnsmasq/contrib/dynamic-dnsmasq/
H A Ddynamic-dnsmasq.pl65 my $fh;
67 open($fh, ">$recordfile") || die "Couldn't open recordfile \"$recordfile\": $!\n";
68 flock($fh, 2);
69 seek($fh, 0, 0);
70 truncate($fh, 0);
78 print $fh "$ip\t$domain\n";
83 flock($fh, 8);
84 close($fh);
/external/lldb/source/Core/
H A DStreamFile.cpp44 StreamFile::StreamFile (FILE *fh, bool transfer_ownership) : argument
46 m_file (fh, transfer_ownership)
/external/llvm/test/MC/X86/
H A Dintel-syntax-hex.s18 mov eax, 0fh
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_framebuffer.c187 float fh = flip * viewport->scale[1] * 2; local
201 fh);
222 if (fh < 0.0) {
223 prescale.translate[1] = fh - 1 + fy * 2;
224 fh = -fh;
225 fy -= fh;
244 prescale.scale[1] *= fh / (fh + fy);
245 fh
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_framebuffer.c187 float fh = flip * viewport->scale[1] * 2; local
201 fh);
222 if (fh < 0.0) {
223 prescale.translate[1] = fh - 1 + fy * 2;
224 fh = -fh;
225 fy -= fh;
244 prescale.scale[1] *= fh / (fh + fy);
245 fh
[all...]
/external/chromium_org/third_party/skia/platform_tools/android/bin/
H A Ddownload_utils.py197 def _HashFileHandle(fh):
201 fh: file handle like object to hash.
208 data = fh.read(4096)
213 fh.close()
225 fh = open(filename, 'rb')
226 return _HashFileHandle(fh)
238 fh = urllib2.urlopen(url)
242 return _HashFileHandle(fh)
252 fh = urllib2.urlopen(hash_url)
253 data = fh
[all...]
/external/lldb/source/API/
H A DSBCommandReturnObject.cpp127 SBCommandReturnObject::PutOutput (FILE *fh) argument
129 if (fh)
133 return ::fprintf (fh, "%s", GetOutput());
139 SBCommandReturnObject::PutError (FILE *fh) argument
141 if (fh)
145 return ::fprintf (fh, "%s", GetError());
268 SBCommandReturnObject::SetImmediateOutputFile (FILE *fh) argument
271 m_opaque_ap->SetImmediateOutputFile (fh);
275 SBCommandReturnObject::SetImmediateErrorFile (FILE *fh) argument
278 m_opaque_ap->SetImmediateErrorFile (fh);
[all...]
/external/skia/platform_tools/android/bin/
H A Ddownload_utils.py197 def _HashFileHandle(fh):
201 fh: file handle like object to hash.
208 data = fh.read(4096)
213 fh.close()
225 fh = open(filename, 'rb')
226 return _HashFileHandle(fh)
238 fh = urllib2.urlopen(url)
242 return _HashFileHandle(fh)
252 fh = urllib2.urlopen(hash_url)
253 data = fh
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dfuse.h394 uint64_t fh; member in struct:fuse_getattr_in
431 uint64_t fh; member in struct:fuse_setattr_in
460 uint64_t fh; member in struct:fuse_open_out
466 uint64_t fh; member in struct:fuse_release_in
473 uint64_t fh; member in struct:fuse_flush_in
480 uint64_t fh; member in struct:fuse_read_in
492 uint64_t fh; member in struct:fuse_write_in
513 uint64_t fh; member in struct:fuse_fsync_in
534 uint64_t fh; member in struct:fuse_lk_in
603 uint64_t fh; member in struct:fuse_ioctl_in
624 uint64_t fh; member in struct:fuse_poll_in
640 uint64_t fh; member in struct:fuse_fallocate_in
[all...]
/external/lldb/include/lldb/Core/
H A DStreamFile.h40 StreamFile (FILE *fh, bool transfer_ownership);
/external/lldb/include/lldb/Interpreter/
H A DCommandReturnObject.h80 SetImmediateOutputFile (FILE *fh, bool transfer_fh_ownership = false) argument
82 lldb::StreamSP stream_sp (new StreamFile (fh, transfer_fh_ownership));
87 SetImmediateErrorFile (FILE *fh, bool transfer_fh_ownership = false) argument
89 lldb::StreamSP stream_sp (new StreamFile (fh, transfer_fh_ownership));
/external/chromium_org/third_party/boringssl/win-x86_64/crypto/bn/
H A Drsaz-avx2.asm24 DB 00fh,00bh
/external/libedit/src/
H A Dmakelist38 USAGE="Usage: $0 -n|-h|-e|-fc|-fh|-bc|-bh|-m <filenames>"
77 # XXX: need a space between name and prototype so that -fc and -fh
150 -fh)

Completed in 558 milliseconds

1234