Searched defs:fh (Results 1 - 25 of 29) sorted by relevance

12

/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/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/external-cross-compile/src/
H A Dfake_cross.py8 fh = open(sys.argv[1], 'w') variable
16 fh.write(data)
18 fh.close()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
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/chromium/base/test/
H A Dtest_file_util_win.cc139 HANDLE fh = FindFirstFile(src.c_str(), &fd); local
140 if (fh == INVALID_HANDLE_VALUE)
154 FindClose(fh);
161 FindClose(fh);
171 } while (FindNextFile(fh, &fd));
173 FindClose(fh);
/external/kernel-headers/original/linux/lockd/
H A Dxdr.h29 struct nfs_fh fh; member in struct:nlm_lock
/external/valgrind/main/tests/
H A Ds390x_features.c112 int n, fh; local
118 //fh = open("/proc/cpuinfo", O_RDONLY, S_IRUSR);
119 fh = open("/proc/cpuinfo", O_RDONLY, S_IRUSR);
120 if (fh < 0) return NULL;
131 n = read(fh, file_buf, file_buf_size);
142 lseek(fh, 0, SEEK_SET);
144 n = read(fh, file_buf, num_bytes);
149 close(fh);
/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/kernel-headers/original/linux/nfsd/
H A Dxdr.h15 struct svc_fh fh; member in struct:nfsd_fhandle
19 struct svc_fh fh; member in struct:nfsd_sattrargs
24 struct svc_fh fh; member in struct:nfsd_diropargs
30 struct svc_fh fh; member in struct:nfsd_readargs
38 svc_fh fh; member in struct:nfsd_writeargs
46 struct svc_fh fh; member in struct:nfsd_createargs
62 struct svc_fh fh; member in struct:nfsd_readlinkargs
83 struct svc_fh fh; member in struct:nfsd_readdirargs
90 struct svc_fh fh; member in struct:nfsd_attrstat
95 struct svc_fh fh; member in struct:nfsd_diropres
104 struct svc_fh fh; member in struct:nfsd_readres
[all...]
/external/libppp/src/
H A Dhdlc.c363 const struct frameheader *fh; local
368 for (fh = FrameHeaders; fh->len; fh++) {
369 h = issync ? fh->data + 1 : fh->data;
370 len = issync ? fh->len - 1 : fh->len;
/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/valgrind/main/coregrind/
H A Dfixup_macho_loadcmds.c245 struct fat_header fh; local
259 fh.magic = ntohl(fh_be->magic);
260 fh.nfat_arch = ntohl(fh_be->nfat_arch);
261 if (fh.magic == FAT_MAGIC) {
267 + fh.nfat_arch * sizeof(struct fat_arch))
271 f < fh.nfat_arch;
293 if (f == fh.nfat_arch)
H A Dlauncher-darwin.c129 static int fat_has_cputype(struct fat_header *fh, cpu_type_t cputype) argument
131 struct fat_arch *fa = (struct fat_arch *)(fh+1);
132 uint32_t nfat_arch = ntohl(fh->nfat_arch);
170 struct fat_header *fh = (struct fat_header *)buf; local
171 if (ntohl(fh->magic) == FAT_MAGIC) {
172 uint32_t nfat_arch = ntohl(fh->nfat_arch);
176 struct fat_arch *fa = (struct fat_arch *)(fh+1);
180 if (fat_has_cputype(fh, default_cputype)) {
186 if (fat_has_cputype(fh, valid_archs[i].cputype)) {
H A Dm_machine.c536 Int model, n, fh; local
545 fh = sr_Res(fd);
555 n = VG_(read)(fh, file_buf, file_buf_size);
566 VG_(lseek)( fh, 0, VKI_SEEK_SET );
568 n = VG_(read)( fh, file_buf, num_bytes );
573 VG_(close)(fh);
623 Int n, fh; local
632 fh = sr_Res(fd);
642 n = VG_(read)(fh, file_buf, file_buf_size);
653 VG_(lseek)( fh,
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-uniscribe.cc67 HANDLE fh; member in struct:hb_uniscribe_shaper_face_data_t
84 data->fh = AddFontMemResourceEx ((void *) blob_data, blob_length, 0, &num_fonts_installed);
86 if (unlikely (!data->fh)) {
98 RemoveFontMemResourceEx (data->fh);
/external/harfbuzz_ng/src/
H A Dhb-uniscribe.cc67 HANDLE fh; member in struct:hb_uniscribe_shaper_face_data_t
84 data->fh = AddFontMemResourceEx ((void *) blob_data, blob_length, 0, &num_fonts_installed);
86 if (unlikely (!data->fh)) {
98 RemoveFontMemResourceEx (data->fh);
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c694 struct fat_header fh; local
714 if (size < sizeof(fh)) {
718 res = VG_(pread)(fd, &fh, sizeof(fh), offset);
719 if (sr_isError(res) || sr_Res(res) != sizeof(fh)) {
725 arch_offset = offset + sizeof(fh);
726 fh.nfat_arch = VG_(ntohl)(fh.nfat_arch);
727 for (i = 0; i < fh.nfat_arch; i++) {
/external/tcpdump/
H A Dieee802_11.h248 struct fh_t fh; member in struct:mgmt_body_t
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c197 struct fat_header fh; local
213 fh.magic = VG_(ntohl)(fh_be->magic);
214 fh.nfat_arch = VG_(ntohl)(fh_be->nfat_arch);
215 if (fh.magic == FAT_MAGIC) {
221 + fh.nfat_arch * sizeof(struct fat_arch)) {
226 f < fh.nfat_arch;
254 if (f == fh.nfat_arch) {
/external/bzip2/
H A Dbzip2.c964 IntNative fh; local
965 fh = open(name, O_WRONLY|O_CREAT|O_EXCL, S_IWUSR|S_IRUSR);
966 if (fh == -1) return NULL;
967 fp = fdopen(fh, mode);
968 if (fp == NULL) close(fh);
/external/icu4c/i18n/
H A Dalphaindex.cpp822 UnicodeString *fh = new UnicodeString(firstHanBoundary); local
823 if (fh == NULL) {
827 firstCharsInScripts_->setElementAt(fh, hanIndex);
991 UnicodeString *fh = new UnicodeString(_4E9C); local
992 if (fh == NULL) {
996 firstCharsInScripts_->setElementAt(fh, hanIndex);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtranstst.cpp4543 Transliterator* fh = Transliterator::createInstance("Fullwidth-Halfwidth", UTRANS_FORWARD, parseError, status); local
4544 if (hf == 0 || fh == 0) {
4547 delete fh;
4553 // "hf"|"fh"|"both",
4571 expect(*fh, f, h);
4575 expect(*fh, f, h);
4580 delete fh;
/external/genext2fs/
H A Dgenext2fs.c1507 add2fs_from_file(filesystem *fs, uint32 this_nod, FILE * fh, uint32 fs_timestamp, struct stats *stats) argument
1517 fstat(fileno(fh), &st);
1520 while(getline(&line, &len, fh) >= 0)
1660 FILE *fh; local
1764 fh = xfopen(dent->d_name, "rb");
1765 nod = mkfile_fs(fs, this_nod, name, mode, st.st_size, fh, uid, gid, ctime, mtime);
1766 fclose(fh);
2131 load_fs(FILE * fh, int swapit) argument
2135 if((fseek(fh, 0, SEEK_END) < 0) || ((ssize_t)(fssize = ftell(fh))
2160 flist_blocks(filesystem *fs, uint32 nod, FILE *fh) argument
2417 dump_fs(filesystem *fs, FILE * fh, int swapit) argument
2436 FILE *fh; local
2653 FILE * fh = xfopen(fsin, "rb"); local
2706 FILE *fh; local
2719 FILE * fh = xfopen(fsout, "wb"); local
[all...]
/external/icu4c/test/intltest/
H A Dtranstst.cpp4544 Transliterator* fh = Transliterator::createInstance("Fullwidth-Halfwidth", UTRANS_FORWARD, parseError, status); local
4545 if (hf == 0 || fh == 0) {
4548 delete fh;
4554 // "hf"|"fh"|"both",
4572 expect(*fh, f, h);
4576 expect(*fh, f, h);
4581 delete fh;

Completed in 1450 milliseconds

12