HomeSort by relevance Sort by last modified time
    Searched refs:fh (Results 251 - 275 of 333) sorted by null

<<11121314

  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/lockd/
xdr.h 31 struct nfs_fh fh; member in struct:nlm_lock
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/lockd/
xdr.h 31 struct nfs_fh fh; member in struct:nlm_lock
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/lockd/
xdr.h 31 struct nfs_fh fh; member in struct:nlm_lock
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/lockd/
xdr.h 31 struct nfs_fh fh; member in struct:nlm_lock
  /external/valgrind/main/coregrind/
fixup_macho_loadcmds.c 245 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)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIGenRegisterInfo.pl 202 open(my $fh, ">", $INDEX_FILE);
233 print $fh "unsigned SIRegisterInfo::getHWRegNum(unsigned reg) const\n{\n switch(reg) {\n";
237 print $fh " case AMDGPU::$regname:\n"
239 print $fh " return $key;\n";
241 print $fh " default: return 0;\n }\n}\n"
  /external/mesa3d/src/gallium/drivers/radeon/
SIGenRegisterInfo.pl 202 open(my $fh, ">", $INDEX_FILE);
233 print $fh "unsigned SIRegisterInfo::getHWRegNum(unsigned reg) const\n{\n switch(reg) {\n";
237 print $fh " case AMDGPU::$regname:\n"
239 print $fh " return $key;\n";
241 print $fh " default: return 0;\n }\n}\n"
  /external/skia/tools/tests/
render_pictures_test.py 295 with open(expectations_path, 'w') as fh:
595 with open(path, 'w') as fh:
596 json.dump(expectations_dict, fh)
655 with open(json_path, 'r') as fh:
656 prettyprinted_json_dict = json.dumps(json.load(fh), sort_keys=True,
  /external/tcpdump/
parsenfsfh.c 113 Parse_fh(fh, len, fsidp, inop, osnamep, fsnamep, ourself)
114 register const unsigned char *fh;
122 register const unsigned char *fhp = fh;
371 memcpy((char *)fsidp, (char *)fh, 14);
377 memcpy((char *)tempa, (char *)fh, 14); /* ensure alignment */
  /external/valgrind/main/coregrind/m_ume/
macho.c 694 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/clang/www/demo/
index.cgi 111 my $fh = $msg->open();
112 print $fh $body;
113 $fh->close();
325 my $fh = $c->upload('uploaded_file');
326 if ( !$fh ) {
329 while (<$fh>) {
332 close $fh;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
svn-unapply 184 my ($fh, $tempPath) = tempfile(basename($fullPath) . "-XXXXXXXX",
186 close($fh);
  /external/genext2fs/
genext2fs.c 1660 FILE *fh; local
2436 FILE *fh; local
2653 FILE * fh = xfopen(fsin, "rb"); local
2706 FILE *fh; local
2719 FILE * fh = xfopen(fsout, "wb"); local
    [all...]
  /hardware/samsung_slsi/exynos5/include/
exynos_gscaler.h 72 uint32_t fh; member in struct:__anon42705
  /external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/
crash_dump_tester.py 31 fh = open(filename, 'r')
32 for line in fh:
36 fh.close()
  /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/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.cpp 411 FILE *fh = fopen(path.string(), "r+"); local
412 if ( !fh ) {
417 fseek(fh, 0, SEEK_END);
418 len = ftell(fh);
419 rewind(fh);
423 fclose(fh);
433 ret = fread(buff, 1, len, fh);
447 rewind(fh);
450 ret = fwrite(&temp, sizeof(unsigned char), 1, fh);
455 fwrite(&temp, sizeof(unsigned char), 1, fh);
2969 FILE *fh = fopen(file, "r"); local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 24 // Deprecated in FUSE. Use fh instead.
39 uint64_t fh; member in struct:fuse_file_info
  /external/chromium_org/third_party/skia/tools/tests/
render_pictures_test.py 681 with open(path, 'w') as fh:
682 json.dump(expectations_dict, fh)
742 with open(json_path, 'r') as fh:
743 prettyprinted_json_dict = json.dumps(json.load(fh), sort_keys=True,
  /external/lldb/source/API/
SBDebugger.cpp 232 SBDebugger::SetInputFileHandle (FILE *fh, bool transfer_ownership)
237 log->Printf ("SBDebugger(%p)::SetInputFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get(),
238 fh, transfer_ownership);
241 m_opaque_sp->SetInputFileHandle (fh, transfer_ownership);
245 SBDebugger::SetOutputFileHandle (FILE *fh, bool transfer_ownership)
251 log->Printf ("SBDebugger(%p)::SetOutputFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get(),
252 fh, transfer_ownership);
255 m_opaque_sp->SetOutputFileHandle (fh, transfer_ownership);
259 SBDebugger::SetErrorFileHandle (FILE *fh, bool transfer_ownership)
265 log->Printf ("SBDebugger(%p)::SetErrorFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get()
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
readmacho.c 166 struct fat_header fh; local
183 VG_(memset)(&fh, 0, sizeof(fh));
184 fh.magic = VG_(ntohl)(fh_be.magic);
185 fh.nfat_arch = VG_(ntohl)(fh_be.nfat_arch);
186 if (fh.magic == FAT_MAGIC) {
189 + fh.nfat_arch * sizeof(struct fat_arch)) {
196 f < fh.nfat_arch;
228 if (f == fh.nfat_arch) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccSmsInterfaceManager.java 143 IccFileHandler fh = mPhone.getIccFileHandler(); local
144 if (fh == null) {
162 fh.updateEFLinearFixed(IccConstants.EF_SMS, i + 1, record, null, null);
220 IccFileHandler fh = mPhone.getIccFileHandler(); local
221 if (fh == null) {
226 fh.updateEFLinearFixed(
298 IccFileHandler fh = mPhone.getIccFileHandler(); local
299 if (fh == null) {
308 fh.loadEFLinearFixedAll(IccConstants.EF_SMS, response);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpcsvc/
klm_prot.h 28 netobj fh; member in struct:klm_lock
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
klm_prot.h 28 netobj fh; member in struct:klm_lock

Completed in 1025 milliseconds

<<11121314