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

123

/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/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/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/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/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.h409 uint64_t fh; member in struct:fuse_getattr_in
452 uint64_t fh; member in struct:fuse_setattr_in
481 uint64_t fh; member in struct:fuse_open_out
487 uint64_t fh; member in struct:fuse_release_in
494 uint64_t fh; member in struct:fuse_flush_in
501 uint64_t fh; member in struct:fuse_read_in
513 uint64_t fh; member in struct:fuse_write_in
534 uint64_t fh; member in struct:fuse_fsync_in
555 uint64_t fh; member in struct:fuse_lk_in
629 uint64_t fh; member in struct:fuse_ioctl_in
650 uint64_t fh; member in struct:fuse_poll_in
666 uint64_t fh; member in struct:fuse_fallocate_in
[all...]
/external/libvncserver/x11vnc/misc/
H A Dultravnc_repeater.pl312 foreach my $fh (@ready) {
313 if (($client_listen && $fh == $client_listen) || ($client_listen6 && $fh == $client_listen6)) {
315 } elsif (($server_listen && $fh == $server_listen) || ($server_listen6 && $fh == $server_listen6)) {
318 my $sock = $fh->accept();
324 if (($client_listen && $fh == $client_listen) || ($client_listen6 && $fh == $client_listen6)) {
356 } elsif (($client_listen && $fh == $client_listen) || ($client_listen6 && $fh
[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/google-breakpad/src/client/mac/handler/
H A Dbreakpad_nlist_64.cc206 struct fat_header fh; local
210 if (read(fd, (char *)&fh, sizeof(fh)) != sizeof(fh)) {
215 fh.nfat_arch = CFSwapInt32BigToHost(fh.nfat_arch);
219 (struct fat_arch *)malloc(fh.nfat_arch * sizeof(struct fat_arch));
224 sizeof(struct fat_arch) * fh.nfat_arch) !=
225 (ssize_t)(sizeof(struct fat_arch) * fh.nfat_arch)) {
234 for (unsigned i = 0; i < fh
[all...]
/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)
/external/valgrind/tests/
H A Ds390x_features.c117 int n, fh; local
123 fh = open("/proc/cpuinfo", O_RDONLY, S_IRUSR);
124 if (fh < 0) return NULL;
135 n = read(fh, file_buf, file_buf_size);
146 lseek(fh, 0, SEEK_SET);
148 n = read(fh, file_buf, num_bytes);
153 close(fh);
/external/valgrind/coregrind/
H A Dlauncher-darwin.c133 static int fat_has_cputype(struct fat_header *fh, cpu_type_t cputype) argument
135 struct fat_arch *fa = (struct fat_arch *)(fh+1);
136 uint32_t nfat_arch = ntohl(fh->nfat_arch);
174 struct fat_header *fh = (struct fat_header *)buf; local
175 if (ntohl(fh->magic) == FAT_MAGIC) {
176 uint32_t nfat_arch = ntohl(fh->nfat_arch);
180 struct fat_arch *fa = (struct fat_arch *)(fh+1);
184 if (fat_has_cputype(fh, default_cputype)) {
190 if (fat_has_cputype(fh, valid_archs[i].cputype)) {
/external/libvncserver/utils/
H A Dgit2cl.pl60 my $fh = new FileHandle;
297 #($fh,$dummyfh) = FileHandle::pipe;
298 $fh->fdopen(*STDIN, 'r');
302 $fh->open("LC_ALL=C git log --pretty --numstat --summary|")
306 while (my $_l = <$fh>) {
/external/skia/gm/
H A Dconicpaths.cpp104 for (int fh = 0; fh < 2; ++fh) {
105 paint.setStyle(fh ? SkPaint::kStroke_Style : SkPaint::kFill_Style);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.h113 FlagHandler<T> *fh = new (FlagParser::Alloc) FlagHandler<T>(var); // NOLINT local
114 parser->RegisterHandler(name, fh, desc);

Completed in 840 milliseconds

123