Home
last modified time | relevance | path

Searched refs:fid (Results 1 - 25 of 59) sorted by relevance

123

/third_party/backends/japi/
H A DSane.c101 jfieldID fid; /* Gets each field ID. */ in Java_Sane_getDevicesNative() local
117 fid = (*env)->GetFieldID(env, devClass, "name", in Java_Sane_getDevicesNative()
119 (*env)->SetObjectField(env, devObj, fid, in Java_Sane_getDevicesNative()
121 fid = (*env)->GetFieldID(env, devClass, "vendor", in Java_Sane_getDevicesNative()
123 (*env)->SetObjectField(env, devObj, fid, in Java_Sane_getDevicesNative()
125 fid = (*env)->GetFieldID(env, devClass, "model", in Java_Sane_getDevicesNative()
127 (*env)->SetObjectField(env, devObj, fid, in Java_Sane_getDevicesNative()
129 fid = (*env)->GetFieldID(env, devClass, "type", in Java_Sane_getDevicesNative()
131 (*env)->SetObjectField(env, devObj, fid, in Java_Sane_getDevicesNative()
182 jfieldID fid; /* Get in Java_Sane_getOptionNative() local
410 jfieldID fid; /* Gets each field ID. */ Java_Sane_getParameters() local
[all...]
/third_party/ltp/testcases/kernel/syscalls/fanotify/
H A Dfanotify22.c109 struct fanotify_fid_t *fid; member
117 .fid = &null_fid,
124 .fid = &bad_file_fid,
131 .fid = &bad_link_fid,
138 .fid = &bad_file_fid,
142 static int check_error_event_info_fid(struct fanotify_event_info_fid *fid, in check_error_event_info_fid() argument
145 struct file_handle *fh = (struct file_handle *) &fid->handle; in check_error_event_info_fid()
147 if (memcmp(&fid->fsid, &ex->fid->fsid, sizeof(fid in check_error_event_info_fid()
[all...]
H A Dfanotify15.c51 struct fanotify_fid_t *fid; member
93 /* Save the test root dir fid */ in do_test()
98 event_set[count].fid = &root_fid; in do_test()
104 /* Save the file fid */ in do_test()
124 event_set[count].fid = &file_fid; in do_test()
134 event_set[count].fid = &file_fid; in do_test()
150 event_set[count].fid = &root_fid; in do_test()
155 /* Save the subdir fid */ in do_test()
172 event_set[count].fid = &dir_fid; in do_test()
223 expected->fid in do_test()
[all...]
H A Dfanotify16.c13 * - FAN_REPORT_DFID_NAME (dir fid + name)
14 * - FAN_REPORT_DIR_FID (dir fid)
15 * - FAN_REPORT_DIR_FID | FAN_REPORT_FID (dir fid + child fid)
16 * - FAN_REPORT_DFID_NAME | FAN_REPORT_FID (dir fid + name + child fid)
17 * - FAN_REPORT_DFID_NAME_TARGET (dir fid + name + created/deleted file fid)
49 struct fanotify_fid_t *fid; member
292 /* Save the mount root fid */ in do_test()
[all...]
H A Dfanotify.h116 struct fanotify_fid_t *fid) in fanotify_save_fid()
118 int *fh = (int *)(fid->handle.f_handle); in fanotify_save_fid()
121 fid->handle.handle_bytes = MAX_HANDLE_SZ; in fanotify_save_fid()
122 fanotify_get_fid(path, &fid->fsid, &fid->handle); in fanotify_save_fid()
125 "fid(%s) = %x.%x.%x.%x.%x...", path, fid->fsid.val[0], in fanotify_save_fid()
126 fid->fsid.val[1], fh[0], fh[1], fh[2]); in fanotify_save_fid()
115 fanotify_save_fid(const char *path, struct fanotify_fid_t *fid) fanotify_save_fid() argument
H A Dfanotify13.c55 struct fanotify_fid_t fid; member
117 fanotify_save_fid(objects[i].path, &objects[i].fid); in get_object_stats()
204 struct fanotify_fid_t *expected_fid = &objects[i].fid; in do_test()
269 "got event: mask=%llx, pid=%d, fid=%x.%x.%lx values " in do_test()
295 * require that kernel supports encoding fid with new flag AT_HADNLE_FID, in do_setup()
/third_party/skia/tools/
H A DSkSharingProc.cpp51 uint32_t fid = context->fImageMap[id]; in serializeImage() local
53 return SkData::MakeWithCopy(&fid, sizeof(fid)); in serializeImage()
67 uint32_t fid; in deserializeImage() local
68 // If the data is an image fid, look up an already deserialized image from our map in deserializeImage()
69 if (length == sizeof(fid)) { in deserializeImage()
70 memcpy(&fid, data, sizeof(fid)); in deserializeImage()
71 if (fid >= context->fImages.size()) { in deserializeImage()
72 SkDebugf("Cannot deserialize using id, We do not have the data for image %d.\n", fid); in deserializeImage()
[all...]
/third_party/python/Lib/idlelib/
H A Ddebugger_r.py41 fid = id(frame)
42 frametable[fid] = frame
43 return fid
86 def set_next(self, fid):
87 frame = frametable[fid]
90 def set_return(self, fid):
91 frame = frametable[fid]
94 def get_stack(self, fid, tbid):
95 frame = frametable[fid]
122 def frame_attr(self, fid, nam
[all...]
/third_party/curl/tests/
H A Dsmbserver.py231 fid, full_path = self.get_server_path(requested_file)
234 fid, full_path = self.get_test_path(requested_file)
241 # Simple way to generate a fid
277 # Let's store the fid for the connection
280 conn_data["OpenedFiles"][fakefid]["FileHandle"] = fid
302 # If we have a rootFid, the path is relative to that fid
323 fid, filename = tempfile.mkstemp()
325 filename, fid, requested_filename)
337 self.write_to_fid(fid, contents)
338 return fid, filenam
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dturbojpeg-jni.c203 jfieldID fid; in Java_org_libjpegturbo_turbojpeg_TJCompressor_init() local
210 BAILIF0(fid = (*env)->GetFieldID(env, cls, "handle", "J")); in Java_org_libjpegturbo_turbojpeg_TJCompressor_init()
211 (*env)->SetLongField(env, obj, fid, (size_t)handle); in Java_org_libjpegturbo_turbojpeg_TJCompressor_init()
598 jfieldID fid; in Java_org_libjpegturbo_turbojpeg_TJDecompressor_init() local
605 BAILIF0(fid = (*env)->GetFieldID(env, cls, "handle", "J")); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_init()
606 (*env)->SetLongField(env, obj, fid, (size_t)handle); in Java_org_libjpegturbo_turbojpeg_TJDecompressor_init()
617 jfieldID fid = 0; in Java_org_libjpegturbo_turbojpeg_TJ_getScalingFactors() local
632 BAILIF0(fid = (*env)->GetFieldID(env, sfcls, "num", "I")); in Java_org_libjpegturbo_turbojpeg_TJ_getScalingFactors()
633 (*env)->SetIntField(env, sfobj, fid, sf[i].num); in Java_org_libjpegturbo_turbojpeg_TJ_getScalingFactors()
634 BAILIF0(fid in Java_org_libjpegturbo_turbojpeg_TJ_getScalingFactors()
1018 jfieldID fid; Java_org_libjpegturbo_turbojpeg_TJTransformer_init() local
1048 jfieldID fid; JNICustomFilter() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_decimate.c41 int fid; ///< current frame id in the queue member
159 dm->queue[dm->fid].frame = in; in filter_frame()
162 dm->clean_src[dm->fid] = in; in filter_frame()
170 in = dm->queue[dm->fid].frame; in filter_frame()
174 prv = dm->fid ? dm->queue[dm->fid - 1].frame : dm->last; in filter_frame()
176 dm->queue[dm->fid].maxbdiff = INT64_MAX; in filter_frame()
177 dm->queue[dm->fid].totdiff = INT64_MAX; in filter_frame()
179 calc_diffs(dm, &dm->queue[dm->fid], prv, in); in filter_frame()
181 if (++dm->fid ! in filter_frame()
[all...]
/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidJNI.cpp45 jfieldID fid = env->GetFieldID(cls, "m_server", "J"); in getExecServiceField() local
46 TCU_CHECK_INTERNAL(fid); in getExecServiceField()
48 return fid; in getExecServiceField()
/third_party/curl/lib/
H A Dsmb.c186 unsigned short fid; member
201 unsigned short fid; member
215 unsigned short fid; member
230 unsigned short fid; member
374 unsigned short fid; /* request, the tid will be different */ member
744 msg.fid = smb_swap16(req->fid); in smb_send_close()
767 msg.fid = smb_swap16(req->fid); in smb_send_read()
793 msg->fid in smb_send_write()
[all...]
/third_party/lame/libmp3lame/
H A Did3tag.c775 if (node->fid == frame_id) { in findNode()
890 node->fid = frame_id; in id3v2_add_ucs2()
927 node->fid = frame_id; in id3v2_add_latin1()
1460 frame = set_4_byte_value(frame, node->fid); in set_frame_comment()
1497 frame = set_4_byte_value(frame, node->fid); in set_frame_custom2()
1530 frame = set_4_byte_value(frame, node->fid); in set_frame_wxxx()
1618 char fid[5] = {0,0,0,0,0}; in id3tag_set_fieldvalue_utf16() local
1623 fid[0] = (frame_id >> 24) & 0x0ff; in id3tag_set_fieldvalue_utf16()
1624 fid[1] = (frame_id >> 16) & 0x0ff; in id3tag_set_fieldvalue_utf16()
1625 fid[ in id3tag_set_fieldvalue_utf16()
[all...]
H A Did3tag.h22 uint32_t fid; /* Frame Identifier */ member
H A DVbrTag.h75 int PutVbrTag(lame_global_flags const *gfp, FILE * fid);
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec_backend.c160 int ret = 0, fid; in ec_group_explicit_todata() local
167 fid = EC_GROUP_get_field_type(group); in ec_group_explicit_todata()
169 if (fid == NID_X9_62_prime_field) { in ec_group_explicit_todata()
171 } else if (fid == NID_X9_62_characteristic_two_field) { in ec_group_explicit_todata()
/third_party/openssl/crypto/ec/
H A Dec_backend.c160 int ret = 0, fid; in ec_group_explicit_todata() local
167 fid = EC_GROUP_get_field_type(group); in ec_group_explicit_todata()
169 if (fid == NID_X9_62_prime_field) { in ec_group_explicit_todata()
171 } else if (fid == NID_X9_62_characteristic_two_field) { in ec_group_explicit_todata()
/third_party/node/deps/v8/src/codegen/ia32/
H A Dmacro-assembler-ia32.h604 // Convenience function: Same as above, but takes the fid instead.
605 void CallRuntime(Runtime::FunctionId fid, in CallRuntime() argument
607 const Runtime::Function* function = Runtime::FunctionForId(fid); in CallRuntime()
611 // Convenience function: Same as above, but takes the fid instead.
612 void CallRuntime(Runtime::FunctionId fid, int num_arguments, in CallRuntime() argument
614 CallRuntime(Runtime::FunctionForId(fid), num_arguments, save_doubles); in CallRuntime()
618 void TailCallRuntime(Runtime::FunctionId fid);
/third_party/skia/src/gpu/
H A DGrGpuResource.h114 GrGpuResourceTag(uint32_t pid, uint32_t tid, uint32_t wid, uint32_t fid, const std::string& name) in GrGpuResourceTag()
115 : fPid(pid), fTid(tid), fWid(wid), fFid(fid), fName(name) in GrGpuResourceTag()
/third_party/node/deps/v8/src/codegen/arm/
H A Dmacro-assembler-arm.h777 // Convenience function: Same as above, but takes the fid instead.
778 void CallRuntime(Runtime::FunctionId fid, in CallRuntime() argument
780 const Runtime::Function* function = Runtime::FunctionForId(fid); in CallRuntime()
784 // Convenience function: Same as above, but takes the fid instead.
785 void CallRuntime(Runtime::FunctionId fid, int num_arguments, in CallRuntime() argument
787 CallRuntime(Runtime::FunctionForId(fid), num_arguments, save_doubles); in CallRuntime()
791 void TailCallRuntime(Runtime::FunctionId fid);
/third_party/node/deps/v8/src/codegen/loong64/
H A Dmacro-assembler-loong64.h957 // Convenience function: Same as above, but takes the fid instead.
958 void CallRuntime(Runtime::FunctionId fid, in CallRuntime() argument
960 const Runtime::Function* function = Runtime::FunctionForId(fid); in CallRuntime()
964 // Convenience function: Same as above, but takes the fid instead.
965 void CallRuntime(Runtime::FunctionId fid, int num_arguments, in CallRuntime() argument
967 CallRuntime(Runtime::FunctionForId(fid), num_arguments, save_doubles); in CallRuntime()
971 void TailCallRuntime(Runtime::FunctionId fid);
/third_party/node/deps/v8/src/codegen/x64/
H A Dmacro-assembler-x64.h867 // Convenience function: Same as above, but takes the fid instead.
868 void CallRuntime(Runtime::FunctionId fid, in CallRuntime() argument
870 const Runtime::Function* function = Runtime::FunctionForId(fid); in CallRuntime()
874 // Convenience function: Same as above, but takes the fid instead.
875 void CallRuntime(Runtime::FunctionId fid, int num_arguments, in CallRuntime() argument
877 CallRuntime(Runtime::FunctionForId(fid), num_arguments, save_doubles); in CallRuntime()
881 void TailCallRuntime(Runtime::FunctionId fid);
/third_party/node/deps/v8/src/codegen/ppc/
H A Dmacro-assembler-ppc.h1250 void CallRuntimeSaveDoubles(Runtime::FunctionId fid) { in CallRuntimeSaveDoubles() argument
1251 const Runtime::Function* function = Runtime::FunctionForId(fid); in CallRuntimeSaveDoubles()
1255 // Convenience function: Same as above, but takes the fid instead.
1256 void CallRuntime(Runtime::FunctionId fid, in CallRuntime() argument
1258 const Runtime::Function* function = Runtime::FunctionForId(fid); in CallRuntime()
1262 // Convenience function: Same as above, but takes the fid instead.
1263 void CallRuntime(Runtime::FunctionId fid, int num_arguments, in CallRuntime() argument
1265 CallRuntime(Runtime::FunctionForId(fid), num_arguments, save_doubles); in CallRuntime()
1269 void TailCallRuntime(Runtime::FunctionId fid);
/third_party/NuttX/drivers/usbdev/gadget/
H A Df_uac.h66 uint32_t fid; /* Frame Identifier */ member

Completed in 25 milliseconds

123