Home
last modified time | relevance | path

Searched refs:item (Results 201 - 225 of 3061) sorted by relevance

12345678910>>...123

/test/xts/device_attest/services/core/attest/
H A Dattest_service_auth.c123 cJSON* item = cJSON_GetObjectItem(root, "authResult"); in ParseAuthResult() local
124 if (item == NULL || !cJSON_IsNumber(item)) { in ParseAuthResult()
129 authStatus->hardwareResult = item->valueint; in ParseAuthResult()
139 cJSON* item = cJSON_GetObjectItem(root, "softwareResult"); in ParseSoftwareResult() local
140 if (item == NULL || !cJSON_IsNumber(item)) { in ParseSoftwareResult()
145 authStatus->softwareResult = item->valueint; in ParseSoftwareResult()
155 cJSON* item = cJSON_GetObjectItem(json, "versionIdResult"); in ParseVersionIdResult() local
156 if ((item in ParseVersionIdResult()
170 cJSON* item = cJSON_GetObjectItem(json, "patchLevelResult"); ParsePatchLevelResult() local
185 cJSON* item = cJSON_GetObjectItem(json, "rootHashResult"); ParseRootHashResult() local
200 cJSON* item = cJSON_GetObjectItem(json, "pcidResult"); ParsePcidResult() local
257 cJSON* item = cJSON_GetObjectItem(root, "expireTime"); ParseExpireTime() local
693 cJSON* item = cJSON_GetObjectItem(json, "errcode"); ParseErrcode() local
711 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "authStats")); ParseAuthStats() local
743 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "ticket")); ParseTicket() local
775 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "token")); ParseTokenValue() local
807 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "uuid")); ParseTokenId() local
[all...]
/test/xts/device_attest_lite/services/core/attest/
H A Dattest_service_auth.c142 cJSON* item = cJSON_GetObjectItem(root, "authResult"); in ParseAuthResult() local
143 if (item == NULL || !cJSON_IsNumber(item)) { in ParseAuthResult()
148 authStatus->hardwareResult = item->valueint; in ParseAuthResult()
158 cJSON* item = cJSON_GetObjectItem(root, "softwareResult"); in ParseSoftwareResult() local
159 if (item == NULL || !cJSON_IsNumber(item)) { in ParseSoftwareResult()
164 authStatus->softwareResult = item->valueint; in ParseSoftwareResult()
174 cJSON* item = cJSON_GetObjectItem(json, "versionIdResult"); in ParseVersionIdResult() local
175 if ((item in ParseVersionIdResult()
189 cJSON* item = cJSON_GetObjectItem(json, "patchLevelResult"); ParsePatchLevelResult() local
204 cJSON* item = cJSON_GetObjectItem(json, "rootHashResult"); ParseRootHashResult() local
219 cJSON* item = cJSON_GetObjectItem(json, "pcidResult"); ParsePcidResult() local
281 cJSON* item = cJSON_GetObjectItem(root, "expireTime"); ParseExpireTime() local
713 cJSON* item = cJSON_GetObjectItem(json, "errcode"); ParseErrcode() local
731 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "authStats")); ParseAuthStats() local
763 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "ticket")); ParseTicket() local
795 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "token")); ParseTokenValue() local
827 char* item = cJSON_GetStringValue(cJSON_GetObjectItem(json, "uuid")); ParseTokenId() local
[all...]
/third_party/libwebsockets/lib/core/
H A Dlws_map.c184 lws_map_item_t *item; in lws_map_item_create() local
189 item = lws_map_item_lookup(map, key, keylen); in lws_map_item_create()
190 if (item) in lws_map_item_create()
191 lws_map_item_destroy(item); in lws_map_item_create()
193 item = map->info._alloc(map, sizeof(*item) + keylen + valuelen); in lws_map_item_create()
194 if (!item) in lws_map_item_create()
197 lws_dll2_clear(&item->list); in lws_map_item_create()
198 item->keylen = keylen; in lws_map_item_create()
199 item in lws_map_item_create()
218 lws_map_item_destroy(lws_map_item_t *item) lws_map_item_destroy() argument
[all...]
/third_party/mesa3d/src/intel/dev/
H A Dintel_hwconfig.c131 const struct hwconfig *item);
168 key_to_name(item->key), (V), #F, \
174 const struct hwconfig *item) in apply_hwconfig_item()
176 switch (item->key) { in apply_hwconfig_item()
192 DEVINFO_HWCONFIG(max_eus_per_subslice, item->val[0]); in apply_hwconfig_item()
195 DEVINFO_HWCONFIG(num_thread_per_eu, item->val[0]); in apply_hwconfig_item()
198 DEVINFO_HWCONFIG(max_vs_threads, item->val[0]); in apply_hwconfig_item()
201 DEVINFO_HWCONFIG(max_gs_threads, item->val[0]); in apply_hwconfig_item()
204 DEVINFO_HWCONFIG(max_tcs_threads, item->val[0]); in apply_hwconfig_item()
207 DEVINFO_HWCONFIG(max_tes_threads, item in apply_hwconfig_item()
173 apply_hwconfig_item(struct intel_device_info *devinfo, const struct hwconfig *item) apply_hwconfig_item() argument
293 print_hwconfig_item(struct intel_device_info *devinfo, const struct hwconfig *item) print_hwconfig_item() argument
[all...]
/kernel/linux/linux-5.10/drivers/usb/gadget/
H A Dconfigfs.c56 static inline struct gadget_info *to_gadget_info(struct config_item *item) in to_gadget_info() argument
58 return container_of(to_config_group(item), struct gadget_info, group); in to_gadget_info()
70 static inline struct config_usb_cfg *to_config_usb_cfg(struct config_item *item) in to_config_usb_cfg() argument
72 return container_of(to_config_group(item), struct config_usb_cfg, in to_config_usb_cfg()
129 static ssize_t gadget_dev_desc_##__name##_show(struct config_item *item, \
133 to_gadget_info(item)->cdev.desc.__name); \
137 static ssize_t gadget_dev_desc_##__name##_show(struct config_item *item, \
141 le16_to_cpup(&to_gadget_info(item)->cdev.desc.__name)); \
146 static ssize_t gadget_dev_desc_##_name##_store(struct config_item *item, \
154 to_gadget_info(item)
197 gadget_dev_desc_bcdDevice_store(struct config_item *item, const char *page, size_t len) gadget_dev_desc_bcdDevice_store() argument
214 gadget_dev_desc_bcdUSB_store(struct config_item *item, const char *page, size_t len) gadget_dev_desc_bcdUSB_store() argument
231 gadget_dev_desc_UDC_show(struct config_item *item, char *page) gadget_dev_desc_UDC_show() argument
260 gadget_dev_desc_UDC_store(struct config_item *item, const char *page, size_t len) gadget_dev_desc_UDC_store() argument
303 gadget_dev_desc_max_speed_show(struct config_item *item, char *page) gadget_dev_desc_max_speed_show() argument
311 gadget_dev_desc_max_speed_store(struct config_item *item, const char *page, size_t len) gadget_dev_desc_max_speed_store() argument
369 to_gadget_strings(struct config_item *item) to_gadget_strings() argument
375 to_gadget_config_name( struct config_item *item) to_gadget_config_name() argument
382 to_usb_function_instance( struct config_item *item) to_usb_function_instance() argument
389 gadget_info_attr_release(struct config_item *item) gadget_info_attr_release() argument
404 gadget_config_attr_release(struct config_item *item) gadget_config_attr_release() argument
508 gadget_config_desc_MaxPower_show(struct config_item *item, char *page) gadget_config_desc_MaxPower_show() argument
514 gadget_config_desc_MaxPower_store(struct config_item *item, const char *page, size_t len) gadget_config_desc_MaxPower_store() argument
528 gadget_config_desc_bmAttributes_show(struct config_item *item, char *page) gadget_config_desc_bmAttributes_show() argument
535 gadget_config_desc_bmAttributes_store(struct config_item *item, const char *page, size_t len) gadget_config_desc_bmAttributes_store() argument
629 function_drop( struct config_group *group, struct config_item *item) function_drop() argument
661 gadget_config_name_attr_release(struct config_item *item) gadget_config_name_attr_release() argument
738 config_desc_drop( struct config_group *group, struct config_item *item) config_desc_drop() argument
766 gadget_strings_attr_release(struct config_item *item) gadget_strings_attr_release() argument
781 to_os_desc(struct config_item *item) to_os_desc() argument
786 os_desc_item_to_gadget_info( struct config_item *item) os_desc_item_to_gadget_info() argument
792 os_desc_use_show(struct config_item *item, char *page) os_desc_use_show() argument
798 os_desc_use_store(struct config_item *item, const char *page, size_t len) os_desc_use_store() argument
816 os_desc_b_vendor_code_show(struct config_item *item, char *page) os_desc_b_vendor_code_show() argument
822 os_desc_b_vendor_code_store(struct config_item *item, const char *page, size_t len) os_desc_b_vendor_code_store() argument
840 os_desc_qw_sign_show(struct config_item *item, char *page) os_desc_qw_sign_show() argument
852 os_desc_qw_sign_store(struct config_item *item, const char *page, size_t len) os_desc_qw_sign_store() argument
884 os_desc_attr_release(struct config_item *item) os_desc_attr_release() argument
953 to_usb_os_desc_ext_prop(struct config_item *item) to_usb_os_desc_ext_prop() argument
958 ext_prop_type_show(struct config_item *item, char *page) ext_prop_type_show() argument
963 ext_prop_type_store(struct config_item *item, const char *page, size_t len) ext_prop_type_store() argument
1004 ext_prop_data_show(struct config_item *item, char *page) ext_prop_data_show() argument
1018 ext_prop_data_store(struct config_item *item, const char *page, size_t len) ext_prop_data_store() argument
1061 usb_os_desc_ext_prop_release(struct config_item *item) usb_os_desc_ext_prop_release() argument
1117 ext_prop_drop(struct config_group *group, struct config_item *item) ext_prop_drop() argument
1138 interf_grp_compatible_id_show(struct config_item *item, char *page) interf_grp_compatible_id_show() argument
1145 interf_grp_compatible_id_store(struct config_item *item, const char *page, size_t len) interf_grp_compatible_id_store() argument
1164 interf_grp_sub_compatible_id_show(struct config_item *item, char *page) interf_grp_sub_compatible_id_show() argument
1171 interf_grp_sub_compatible_id_store(struct config_item *item, const char *page, size_t len) interf_grp_sub_compatible_id_store() argument
1623 gadgets_drop(struct config_group *group, struct config_item *item) gadgets_drop() argument
1648 unregister_gadget_item(struct config_item *item) unregister_gadget_item() argument
[all...]
/third_party/node/test/common/
H A Dv8.js23 const item = data.statistics[0];
24 assert.ok(typeof item.gcType === 'string');
25 assert.ok(item.cost >= 0);
26 assert.ok(typeof item.beforeGC === 'object');
27 assert.ok(typeof item.afterGC === 'object');
29 assert.ok(typeof item.afterGC.heapStatistics === 'object');
44 assert.ok(item.afterGC.heapStatistics[key] >= 0);
46 assert.ok(typeof item.afterGC.heapSpaceStatistics === 'object');
55 const value = item.afterGC.heapSpaceStatistics[0][key];
/third_party/selinux/libsepol/cil/src/
H A Dcil_list.h47 #define cil_list_for_each(item, list) \
48 for (item = (list)->head; item != NULL; item = item->next)
53 void cil_list_item_init(struct cil_list_item **item);
54 void cil_list_item_destroy(struct cil_list_item **item, unsigned destroy_data);
59 void cil_list_append_item(struct cil_list *list, struct cil_list_item *item);
60 void cil_list_prepend_item(struct cil_list *list, struct cil_list_item *item);
/base/hiviewdfx/hiview/base/event_raw/include/encoded/
H A Dencoded_param.h113 for (auto item = vals.begin(); item != vals.end(); item++) { in UnsignedVarintEncodedArrayParam()
118 vals_.emplace_back(*item); in UnsignedVarintEncodedArrayParam()
130 for (auto item : vals_) {
131 ret = ret && RawDataEncoder::UnsignedVarintEncoded(rawData_, EncodeType::VARINT, item);
138 for (auto item : vals_) {
139 dest.emplace_back(static_cast<uint64_t>(item));
204 for (auto item = vals.begin(); item ! in SignedVarintEncodedArrayParam()
[all...]
/base/startup/init/interfaces/innerkits/fs_manager/erofs_overlay/
H A Derofs_mount_overlay.c264 INIT_STATIC int GetOverlayDevice(FstabItem *item, char *devRofs, const uint32_t devRofsLen, in GetOverlayDevice() argument
272 if (access(item->deviceName, 0) < 0) { in GetOverlayDevice()
273 BEGET_LOGE("connot access dev [%s]", item->deviceName); in GetOverlayDevice()
277 AllocDmName(item->mountPoint, nameRofs, MAX_BUFFER_LEN, nameExt4, MAX_BUFFER_LEN); in GetOverlayDevice()
279 if (GetMapperAddr(item->deviceName, &mapStart, &mapLength)) { in GetOverlayDevice()
280 BEGET_LOGE("get mapper addr failed, dev is [%s]", item->deviceName); in GetOverlayDevice()
287 int rc = ConstructLinearTarget(&dmRofsTarget, item->deviceName, 0, mapStart); in GetOverlayDevice()
289 BEGET_LOGE("fs construct erofs linear target failed, dev is [%s]", item->deviceName); in GetOverlayDevice()
294 BEGET_LOGE("fs create erofs linear device failed, dev is [%s]", item->deviceName); in GetOverlayDevice()
298 rc = ConstructLinearTarget(&dmExt4Target, item in GetOverlayDevice()
395 MountPartitionDevice(FstabItem *item, const char *devRofs, const char *devExt4) MountPartitionDevice() argument
455 DoMountOverlayDevice(FstabItem *item) DoMountOverlayDevice() argument
[all...]
/kernel/linux/linux-5.10/fs/btrfs/
H A Droot-tree.c16 * Read a root item from the tree. In case we detect a root item smaller then
20 * kernel that was not aware of the root item structure change.
23 struct btrfs_root_item *item) in btrfs_read_root_item()
29 read_extent_buffer(eb, item, btrfs_item_ptr_offset(eb, slot), in btrfs_read_root_item()
30 min_t(u32, len, sizeof(*item))); in btrfs_read_root_item()
31 if (len < sizeof(*item)) in btrfs_read_root_item()
33 if (!need_reset && btrfs_root_generation(item) in btrfs_read_root_item()
34 != btrfs_root_generation_v2(item)) { in btrfs_read_root_item()
35 if (btrfs_root_generation_v2(item) ! in btrfs_read_root_item()
22 btrfs_read_root_item(struct extent_buffer *eb, int slot, struct btrfs_root_item *item) btrfs_read_root_item() argument
107 btrfs_set_root_node(struct btrfs_root_item *item, struct extent_buffer *node) btrfs_set_root_node() argument
118 btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, struct btrfs_key *key, struct btrfs_root_item *item) btrfs_update_root() argument
197 btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, const struct btrfs_key *key, struct btrfs_root_item *item) btrfs_insert_root() argument
461 struct btrfs_root_item *item = &root->root_item; btrfs_update_root_times() local
[all...]
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-config.c40 struct perf_config_item *item = NULL; in set_config() local
59 perf_config_items__for_each_entry(&section->items, item) { in set_config()
60 if (!use_system_config && item->from_system_config) in set_config()
62 if (item->value) in set_config()
64 item->name, item->value); in set_config()
75 struct perf_config_item *item; in show_spec_config() local
84 perf_config_items__for_each_entry(&section->items, item) { in show_spec_config()
87 if (strcmp(name, item->name) == 0) { in show_spec_config()
88 char *value = item in show_spec_config()
105 struct perf_config_item *item; show_config() local
[all...]
/kernel/linux/linux-6.6/tools/perf/
H A Dbuiltin-config.c41 struct perf_config_item *item = NULL; in set_config() local
60 perf_config_items__for_each_entry(&section->items, item) { in set_config()
61 if (!use_system_config && item->from_system_config) in set_config()
63 if (item->value) in set_config()
65 item->name, item->value); in set_config()
76 struct perf_config_item *item; in show_spec_config() local
85 perf_config_items__for_each_entry(&section->items, item) { in show_spec_config()
88 if (strcmp(name, item->name) == 0) { in show_spec_config()
89 char *value = item in show_spec_config()
106 struct perf_config_item *item; show_config() local
[all...]
/test/testfwk/xdevice/src/xdevice/_core/resource/template/static/components/
H A DcaseTable.js113 filterData = filterData.filter((item) => {
114 return item[0] == this.keyname;
118 filterData = filterData.filter((item) =>
119 this.resultFilter.includes(item[2])
123 filterData = filterData.filter(item => item[1].toLowerCase().includes(this.keyword.toLowerCase()))
128 pageData.forEach((item) => {
129 let [suiteName, name, result, time, error] = item;
133 this.pageCaseList.forEach(item => {
134 if (item
[all...]
/base/hiviewdfx/hiview/plugins/unified_collector/task/
H A Dcpu_collection_task.cpp85 for (auto &item : checkItems) { in CheckAndDumpTraceData()
86 int32_t pid = CommonUtils::GetPidByName(item.processName); in CheckAndDumpTraceData()
88 HIVIEW_LOGW("get pid failed, process:%{public}s", item.processName.c_str()); in CheckAndDumpTraceData()
93 if (!item.hasOverThreshold && cpuLoad >= item.cpuLoadThreshold) { in CheckAndDumpTraceData()
95 item.hasOverThreshold = true; in CheckAndDumpTraceData()
100 if (item.hasOverThreshold && cpuLoad < item.cpuLoadThreshold) { in CheckAndDumpTraceData()
103 traceCollector->DumpTrace(item.caller); in CheckAndDumpTraceData()
104 item in CheckAndDumpTraceData()
[all...]
/third_party/gn/src/gn/
H A Dbuilder_record.cc7 #include "gn/item.h"
34 bool BuilderRecord::IsItemOfType(const Item* item, ItemType type) { in IsItemOfType() argument
37 return !!item->AsTarget(); in IsItemOfType()
39 return !!item->AsConfig(); in IsItemOfType()
41 return !!item->AsToolchain(); in IsItemOfType()
43 return !!item->AsPool(); in IsItemOfType()
51 BuilderRecord::ItemType BuilderRecord::TypeOfItem(const Item* item) { in TypeOfItem() argument
52 if (item->AsTarget()) in TypeOfItem()
54 if (item->AsConfig()) in TypeOfItem()
56 if (item in TypeOfItem()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcontravariantInferenceAndTypeGuard.js7 type IteratorFn<TData, TResult, TContext = List<TData>> = (this: TContext, item: TData, node: ListItem<TData>, list: List<TData>) => TResult;
8 type FilterFn<TData, TResult extends TData, TContext = List<TData>> = (this: TContext, item: TData, node: ListItem<TData>, list: List<TData>) => item is TResult;
20 const filter1 = list2.filter(function(item, node, list): item is Test {
22 item; // $ExpectType Test | null
25 return !!item;
33 var filter1 = list2.filter(function (item, node, list) {
35 item; // $ExpectType Test | null
38 return !!item;
[all...]
H A DobjectInstantiationFromUnionSpread.js15 a.map(item => ({ ...item })).filter(value => {});
19 a.map(item => ({ ...item })).filter(value => {});
37 a.map(function (item) { return (__assign({}, item)); }).filter(function (value) { });
40 a.map(function (item) { return (__assign({}, item)); }).filter(function (value) { });
/kernel/linux/linux-5.10/fs/xfs/
H A Dxfs_dquot_item_recover.c26 struct xlog_recover_item *item) in xlog_recover_dquot_ra_pass2()
36 recddq = item->ri_buf[1].i_addr; in xlog_recover_dquot_ra_pass2()
39 if (item->ri_buf[1].i_len < sizeof(struct xfs_disk_dquot)) in xlog_recover_dquot_ra_pass2()
47 dq_f = item->ri_buf[0].i_addr; in xlog_recover_dquot_ra_pass2()
63 struct xlog_recover_item *item, in xlog_recover_dquot_commit_pass2()
80 recddq = item->ri_buf[1].i_addr; in xlog_recover_dquot_commit_pass2()
85 if (item->ri_buf[1].i_len < sizeof(struct xfs_disk_dquot)) { in xlog_recover_dquot_commit_pass2()
87 item->ri_buf[1].i_len, __func__); in xlog_recover_dquot_commit_pass2()
109 dq_f = item->ri_buf[0].i_addr; in xlog_recover_dquot_commit_pass2()
148 memcpy(ddq, recddq, item in xlog_recover_dquot_commit_pass2()
24 xlog_recover_dquot_ra_pass2( struct xlog *log, struct xlog_recover_item *item) xlog_recover_dquot_ra_pass2() argument
60 xlog_recover_dquot_commit_pass2( struct xlog *log, struct list_head *buffer_list, struct xlog_recover_item *item, xfs_lsn_t current_lsn) xlog_recover_dquot_commit_pass2() argument
176 xlog_recover_quotaoff_commit_pass1( struct xlog *log, struct xlog_recover_item *item) xlog_recover_quotaoff_commit_pass1() argument
[all...]
/third_party/rust/crates/clap/clap_derive/src/derives/
H A Dargs.rs23 use crate::item::{Item, Kind, Name};
35 let item = Item::from_args_struct(input, name)?; in derive_args()
40 let item = Item::from_args_field(field, item.casing(), item.env_casing())?; in derive_args()
41 Ok((field, item)) in derive_args()
44 gen_for_struct(&item, ident, &input.generics, &fields) in derive_args()
51 let item = Item::from_args_struct(input, name)?; in derive_args()
56 let item = Item::from_args_field(field, item in derive_args()
[all...]
/kernel/linux/linux-6.6/drivers/usb/gadget/function/
H A Duvc_configfs.c122 static void uvcg_config_item_release(struct config_item *item) in uvcg_config_item_release() argument
124 struct config_group *group = to_config_group(item); in uvcg_config_item_release()
187 struct config_item *item, char *page) \
189 struct uvcg_control_header *ch = to_uvcg_control_header(item); \
192 struct mutex *su_mutex = &ch->item.ci_group->cg_subsys->su_mutex;\
197 opts_item = ch->item.ci_parent->ci_parent->ci_parent; \
209 uvcg_control_header_##cname##_store(struct config_item *item, \
212 struct uvcg_control_header *ch = to_uvcg_control_header(item); \
215 struct mutex *su_mutex = &ch->item.ci_group->cg_subsys->su_mutex;\
221 opts_item = ch->item
337 uvcg_default_processing_bm_controls_store( struct config_item *item, const char *page, size_t len) uvcg_default_processing_bm_controls_store() argument
395 uvcg_default_processing_bm_controls_show( struct config_item *item, char *page) uvcg_default_processing_bm_controls_show() argument
506 uvcg_default_camera_bm_controls_store( struct config_item *item, const char *page, size_t len) uvcg_default_camera_bm_controls_store() argument
565 uvcg_default_camera_bm_controls_show( struct config_item *item, char *page) uvcg_default_camera_bm_controls_show() argument
673 uvcg_default_output_b_source_id_show(struct config_item *item, char *page) uvcg_default_output_b_source_id_show() argument
699 uvcg_default_output_b_source_id_store(struct config_item *item, const char *page, size_t len) uvcg_default_output_b_source_id_store() argument
816 uvcg_extension_b_num_controls_store(struct config_item *item, const char *page, size_t len) uvcg_extension_b_num_controls_store() argument
850 uvcg_extension_b_nr_in_pins_store(struct config_item *item, const char *page, size_t len) uvcg_extension_b_nr_in_pins_store() argument
903 uvcg_extension_b_control_size_store(struct config_item *item, const char *page, size_t len) uvcg_extension_b_control_size_store() argument
953 uvcg_extension_guid_extension_code_show(struct config_item *item, char *page) uvcg_extension_guid_extension_code_show() argument
976 uvcg_extension_guid_extension_code_store(struct config_item *item, const char *page, size_t len) uvcg_extension_guid_extension_code_store() argument
1005 uvcg_extension_ba_source_id_show(struct config_item *item, char *page) uvcg_extension_ba_source_id_show() argument
1033 uvcg_extension_ba_source_id_store(struct config_item *item, const char *page, size_t len) uvcg_extension_ba_source_id_store() argument
1084 uvcg_extension_bm_controls_show(struct config_item *item, char *page) uvcg_extension_bm_controls_show() argument
1112 uvcg_extension_bm_controls_store(struct config_item *item, const char *page, size_t len) uvcg_extension_bm_controls_store() argument
1177 uvcg_extension_release(struct config_item *item) uvcg_extension_release() argument
1246 uvcg_extension_drop(struct config_group *group, struct config_item *item) uvcg_extension_drop() argument
1465 uvcg_default_control_b_interface_number_show( struct config_item *item, char *page) uvcg_default_control_b_interface_number_show() argument
1490 uvcg_default_control_enable_interrupt_ep_show( struct config_item *item, char *page) uvcg_default_control_enable_interrupt_ep_show() argument
1513 uvcg_default_control_enable_interrupt_ep_store( struct config_item *item, const char *page, size_t len) uvcg_default_control_enable_interrupt_ep_store() argument
1982 uvcg_frame_b_frame_index_show(struct config_item *item, char *page) uvcg_frame_b_frame_index_show() argument
2027 uvcg_frame_dw_frame_interval_show(struct config_item *item, char *page) uvcg_frame_dw_frame_interval_show() argument
2053 uvcg_frame_dw_frame_interval_store(struct config_item *item, const char *page, size_t len) uvcg_frame_dw_frame_interval_store() argument
2182 uvcg_frame_drop(struct config_group *group, struct config_item *item) uvcg_frame_drop() argument
2234 uvcg_uncompressed_guid_format_show(struct config_item *item, char *page) uvcg_uncompressed_guid_format_show() argument
2256 uvcg_uncompressed_guid_format_store(struct config_item *item, const char *page, size_t len) uvcg_uncompressed_guid_format_store() argument
2389 uvcg_uncompressed_bma_controls_show(struct config_item *item, char *page) uvcg_uncompressed_bma_controls_show() argument
2396 uvcg_uncompressed_bma_controls_store(struct config_item *item, const char *page, size_t len) uvcg_uncompressed_bma_controls_store() argument
2586 uvcg_mjpeg_bma_controls_show(struct config_item *item, char *page) uvcg_mjpeg_bma_controls_show() argument
2593 uvcg_mjpeg_bma_controls_store(struct config_item *item, const char *page, size_t len) uvcg_mjpeg_bma_controls_store() argument
2750 uvcg_color_matching_release(struct config_item *item) uvcg_color_matching_release() argument
2887 struct config_item *item; __uvcg_iter_strm_cls() local
3235 uvcg_default_streaming_b_interface_number_show( struct config_item *item, char *page) uvcg_default_streaming_b_interface_number_show() argument
3286 uvc_func_item_release(struct config_item *item) uvc_func_item_release() argument
[all...]
/base/startup/init/services/modules/seccomp/scripts/tools/
H A Dcollect_elf_syscall.py76 for item in result_list:
77 item = item.strip()
78 if len(item) > len(result):
79 result = item
87 for item in result.split('\n'):
88 name = item[item.find('[') + 1: item.find(']')]
100 for item i
[all...]
/kernel/linux/linux-5.10/drivers/hwtracing/stm/
H A Dpolicy.c65 static inline struct stp_policy *to_stp_policy(struct config_item *item) in to_stp_policy() argument
67 return item ? in to_stp_policy()
68 container_of(to_config_group(item), struct stp_policy, group) : in to_stp_policy()
73 to_stp_policy_node(struct config_item *item) in to_stp_policy_node() argument
75 return item ? in to_stp_policy_node()
76 container_of(to_config_group(item), struct stp_policy_node, in to_stp_policy_node()
81 void *to_pdrv_policy_node(struct config_item *item) in to_pdrv_policy_node() argument
83 struct stp_policy_node *node = to_stp_policy_node(item); in to_pdrv_policy_node()
90 stp_policy_node_masters_show(struct config_item *item, char *page) in stp_policy_node_masters_show() argument
92 struct stp_policy_node *policy_node = to_stp_policy_node(item); in stp_policy_node_masters_show()
102 stp_policy_node_masters_store(struct config_item *item, const char *page, size_t count) stp_policy_node_masters_store() argument
137 stp_policy_node_channels_show(struct config_item *item, char *page) stp_policy_node_channels_show() argument
149 stp_policy_node_channels_store(struct config_item *item, const char *page, size_t count) stp_policy_node_channels_store() argument
182 stp_policy_node_release(struct config_item *item) stp_policy_node_release() argument
273 stp_policy_node_drop(struct config_group *group, struct config_item *item) stp_policy_node_drop() argument
293 stp_policy_device_show(struct config_item *item, char *page) stp_policy_device_show() argument
309 stp_policy_protocol_show(struct config_item *item, char *page) stp_policy_protocol_show() argument
356 stp_policy_release(struct config_item *item) stp_policy_release() argument
500 struct config_item *item; __stp_policy_node_lookup() local
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Droot-tree.c21 * Read a root item from the tree. In case we detect a root item smaller then
25 * kernel that was not aware of the root item structure change.
28 struct btrfs_root_item *item) in btrfs_read_root_item()
34 read_extent_buffer(eb, item, btrfs_item_ptr_offset(eb, slot), in btrfs_read_root_item()
35 min_t(u32, len, sizeof(*item))); in btrfs_read_root_item()
36 if (len < sizeof(*item)) in btrfs_read_root_item()
38 if (!need_reset && btrfs_root_generation(item) in btrfs_read_root_item()
39 != btrfs_root_generation_v2(item)) { in btrfs_read_root_item()
40 if (btrfs_root_generation_v2(item) ! in btrfs_read_root_item()
27 btrfs_read_root_item(struct extent_buffer *eb, int slot, struct btrfs_root_item *item) btrfs_read_root_item() argument
110 btrfs_set_root_node(struct btrfs_root_item *item, struct extent_buffer *node) btrfs_set_root_node() argument
121 btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, struct btrfs_key *key, struct btrfs_root_item *item) btrfs_update_root() argument
200 btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root, const struct btrfs_key *key, struct btrfs_root_item *item) btrfs_insert_root() argument
476 struct btrfs_root_item *item = &root->root_item; btrfs_update_root_times() local
[all...]
/kernel/linux/linux-6.6/drivers/hwtracing/stm/
H A Dpolicy.c60 static inline struct stp_policy *to_stp_policy(struct config_item *item) in to_stp_policy() argument
62 return item ? in to_stp_policy()
63 container_of(to_config_group(item), struct stp_policy, group) : in to_stp_policy()
68 to_stp_policy_node(struct config_item *item) in to_stp_policy_node() argument
70 return item ? in to_stp_policy_node()
71 container_of(to_config_group(item), struct stp_policy_node, in to_stp_policy_node()
76 void *to_pdrv_policy_node(struct config_item *item) in to_pdrv_policy_node() argument
78 struct stp_policy_node *node = to_stp_policy_node(item); in to_pdrv_policy_node()
85 stp_policy_node_masters_show(struct config_item *item, char *page) in stp_policy_node_masters_show() argument
87 struct stp_policy_node *policy_node = to_stp_policy_node(item); in stp_policy_node_masters_show()
97 stp_policy_node_masters_store(struct config_item *item, const char *page, size_t count) stp_policy_node_masters_store() argument
132 stp_policy_node_channels_show(struct config_item *item, char *page) stp_policy_node_channels_show() argument
144 stp_policy_node_channels_store(struct config_item *item, const char *page, size_t count) stp_policy_node_channels_store() argument
177 stp_policy_node_release(struct config_item *item) stp_policy_node_release() argument
268 stp_policy_node_drop(struct config_group *group, struct config_item *item) stp_policy_node_drop() argument
288 stp_policy_device_show(struct config_item *item, char *page) stp_policy_device_show() argument
304 stp_policy_protocol_show(struct config_item *item, char *page) stp_policy_protocol_show() argument
351 stp_policy_release(struct config_item *item) stp_policy_release() argument
495 struct config_item *item; __stp_policy_node_lookup() local
[all...]
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DRBxliffImporter.java107 Text text_elem = (Text)header_note_list.item(0).getChildNodes().item(0); in importDoc()
115 Node prop_group_list = ((Element)header).getElementsByTagName("prop-group").item(0); in importDoc()
120 if (prop_list.item(prop) instanceof Element) { in importDoc()
121 Element property_elem = (Element)prop_list.item(prop); in importDoc()
124 String value = property_elem.getChildNodes().item(0).getNodeValue(); in importDoc()
173 Node body_elem = body_list.item(i); in importDoc()
214 if (!(tu_list.item(i) instanceof Element)) { in importDoc()
217 Element tu_elem = (Element)tu_list.item(i); in importDoc()
230 Text text_elem = (Text)notes_list.item( in importDoc()
[all...]

Completed in 14 milliseconds

12345678910>>...123