/foundation/multimedia/camera_framework/services/camera_service/src/ |
H A D | camera_fwk_metadata_utils.cpp | 60 "Failed to get metadata item at index: %{public}d", index); in MergeMetadata() 63 ret = OHOS::Camera::FindCameraMetadataItemIndex(dstHeader, srcItem.item, ¤tIndex); in MergeMetadata() 65 status = dstMetadata->addEntry(srcItem.item, srcItem.data.u8, srcItem.count); in MergeMetadata() 67 status = dstMetadata->updateEntry(srcItem.item, srcItem.data.u8, srcItem.count); in MergeMetadata() 69 CHECK_ERROR_RETURN_RET_LOG(!status, false, "Failed to update metadata item: %{public}d", srcItem.item); in MergeMetadata() 89 int32_t result = OHOS::Camera::FindCameraMetadataItemIndex(dstMetadata->get(), srcItem.item, &itemIndex); in UpdateMetadataTag() 92 status = dstMetadata->addEntry(srcItem.item, srcItem.data.u8, srcItem.count); in UpdateMetadataTag() 94 status = dstMetadata->updateEntry(srcItem.item, srcItem.data.u8, srcItem.count); in UpdateMetadataTag() 113 camera_metadata_item_t item; in DumpMetadataInfo() local 177 camera_metadata_item_t item; RecreateMetadata() local [all...] |
H A D | camera_util.cpp | 247 camera_metadata_item_t item; in IsValidMode() local 248 int ret = Camera::FindCameraMetadataItem(cameraAbility->get(), OHOS_ABILITY_CAMERA_MODES, &item); in IsValidMode() 249 if (ret != CAM_META_SUCCESS || item.count == 0) { in IsValidMode() 252 OHOS_ABILITY_STREAM_AVAILABLE_BASIC_CONFIGURATIONS, &item); in IsValidMode() 253 if (ret == CAM_META_SUCCESS && item.count != 0) { in IsValidMode() 260 for (uint32_t i = 0; i < item.count; i++) { in IsValidMode() 261 if (opMode == item.data.u8[i]) { in IsValidMode() 278 camera_metadata_item_t item; in DumpMetadata() local 280 int ret = OHOS::Camera::GetCameraMetadataItem(srcHeader, index, &item); in DumpMetadata() 281 CHECK_ERROR_RETURN_LOG(ret != CAM_META_SUCCESS, "Failed to get metadata item a in DumpMetadata() [all...] |
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/ |
H A D | nstackx_dfinder_mgt_msg_log.c | 112 cJSON *item = cJSON_GetObjectItemCaseSensitive(data, jsonKey); in CheckAnonymizeJsonData() local 113 if (item == NULL) { in CheckAnonymizeJsonData() 117 if (!cJSON_IsString(item) || !strlen(item->valuestring)) { in CheckAnonymizeJsonData() 121 return item; in CheckAnonymizeJsonData() 136 cJSON *item = CheckAnonymizeJsonData(data, JSON_DEVICE_ID); in AnonymizeDeviceIdJsonData() local 137 if (item == NULL) { in AnonymizeDeviceIdJsonData() 141 if (GetAnonymizedDeviceId(item->valuestring, anonyDevId, sizeof(anonyDevId)) != NSTACKX_EOK) { in AnonymizeDeviceIdJsonData() 154 cJSON *item = CheckAnonymizeJsonData(data, JSON_DEVICE_WLAN_IP); in AnonymizeIpJsonData() local 155 if (item in AnonymizeIpJsonData() 173 cJSON *item = cJSON_GetObjectItemCaseSensitive(data, typeFiled); CheckJsonTypeFiled() local 188 cJSON *item = cJSON_CreateString(newTypeStr); UpdateJsonTypeFiled() local 199 cJSON *item = CheckJsonTypeFiled(data, JSON_BUSINESS_TYPE); BusinessTypeToJsonStr() local 213 cJSON *item = CheckJsonTypeFiled(data, JSON_REQUEST_MODE); ModeTypeToJsonStr() local [all...] |
/foundation/multimodalinput/input/service/device_manager/src/ |
H A D | input_device_manager.cpp | 112 for (const auto &item : axisType) { in GetInputDevice() 113 int32_t min = libinput_device_get_axis_min(inputDeviceOrigin, item.first); in GetInputDevice() 118 if (item.first == ABS_MT_PRESSURE) { in GetInputDevice() 123 axis.SetMaximum(libinput_device_get_axis_max(inputDeviceOrigin, item.first)); in GetInputDevice() 125 axis.SetAxisType(item.first); in GetInputDevice() 126 axis.SetFuzz(libinput_device_get_axis_fuzz(inputDeviceOrigin, item.first)); in GetInputDevice() 127 axis.SetFlat(libinput_device_get_axis_flat(inputDeviceOrigin, item.first)); in GetInputDevice() 128 axis.SetResolution(libinput_device_get_axis_resolution(inputDeviceOrigin, item.first)); in GetInputDevice() 161 for (const auto &item : inputDevice_) { in GetInputDeviceIds() 162 if (!item in GetInputDeviceIds() 277 auto item = virtualInputDevices_.find(deviceId); GetKeyboardType() local [all...] |
/test/testfwk/developer_test/src/core/command/ |
H A D | parameter.py | 36 for item in level_list:
37 item = item.strip(" ")
38 if not item.isdigit():
43 if item not in level_key_list:
50 for item in level_list:
51 item = item.strip(" ")
52 test_level_string = f"{test_level_string}{item},"
62 for item i [all...] |
/third_party/curl/lib/ |
H A D | slist.c | 38 struct curl_slist *item; in slist_get_last() local 44 /* loop through to find the last item */ in slist_get_last() 45 item = list; in slist_get_last() 46 while(item->next) { in slist_get_last() 47 item = item->next; in slist_get_last() 49 return item; in slist_get_last() 75 /* if this is the first item, then new_item *is* the list */ in Curl_slist_append_nodup() 134 struct curl_slist *item; in curl_slist_free_all() local 139 item in curl_slist_free_all() [all...] |
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | generator-function.js | 48 var item = iterator.next(); variable 49 assert(item.value === 1); 50 assert(item.done === false); 52 item = iterator.next(); 53 assert(item.value === 2); 54 assert(item.done === false); 56 item = iterator.next(); 57 assert(item.value === 3); 58 assert(item.done === false); 60 item [all...] |
/foundation/barrierfree/accessibility/services/aams/test/unittest/ |
H A D | accessibility_mouse_key_test.cpp | 69 MMI::KeyEvent::KeyItem item; in OnKeyEventPresss() local 70 item.SetKeyCode(keycode); in OnKeyEventPresss() 71 item.SetPressed(true); in OnKeyEventPresss() 72 event.AddKeyItem(item); in OnKeyEventPresss() 74 event.RemoveReleasedKeyItems(item); in OnKeyEventPresss() 96 MMI::PointerEvent::PointerItem item; in HWTEST_F() local 97 event->AddPointerItem(item); in HWTEST_F() 122 MMI::PointerEvent::PointerItem item; in HWTEST_F() local 123 event->AddPointerItem(item); in HWTEST_F() 177 MMI::KeyEvent::KeyItem item; in HWTEST_F() local 205 MMI::PointerEvent::PointerItem item; HWTEST_F() local 261 MMI::PointerEvent::PointerItem item; HWTEST_F() local 317 MMI::PointerEvent::PointerItem item; HWTEST_F() local 373 MMI::PointerEvent::PointerItem item; HWTEST_F() local 428 MMI::KeyEvent::KeyItem item; HWTEST_F() local 461 MMI::KeyEvent::KeyItem item; HWTEST_F() local 494 MMI::KeyEvent::KeyItem item; HWTEST_F() local 532 MMI::KeyEvent::KeyItem item; HWTEST_F() local 570 MMI::KeyEvent::KeyItem item; HWTEST_F() local 607 MMI::KeyEvent::KeyItem item; HWTEST_F() local 630 MMI::KeyEvent::KeyItem item; HWTEST_F() local [all...] |
/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/ |
H A D | trans_tcp_direct_sessionconn.c | 116 SessionConn *item = NULL; in GetSessionConnByRequestId() local 118 LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_sessionConnList->list, SessionConn, node) { in GetSessionConnByRequestId() 119 if (item->requestId == requestId) { in GetSessionConnByRequestId() 120 return item; in GetSessionConnByRequestId() 132 SessionConn *item = NULL; in GetSessionConnByReq() local 134 LIST_FOR_EACH_ENTRY_SAFE(item, nextItem, &g_sessionConnList->list, SessionConn, node) { in GetSessionConnByReq() 135 if (item->req == req) { in GetSessionConnByReq() 136 return item; in GetSessionConnByReq() 303 SessionConn *item = NULL; in TransDelSessionConnById() local 308 LIST_FOR_EACH_ENTRY_SAFE(item, nex in TransDelSessionConnById() 438 TcpChannelInfo *item = NULL; TransTdcGetLocalIpAndConnectTypeById() local 466 TcpChannelInfo *item = NULL; TransDelTcpChannelInfoByChannelId() local 498 TcpChannelInfo *item = NULL; TransTdcChannelInfoDeathCallback() local [all...] |
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/distributed_ledger/src/ |
H A D | lnn_meta_node_ledger.c | 49 MetaNodeStorageInfo *item = NULL; in FindMetaNodeStorageInfo() local 53 LIST_FOR_EACH_ENTRY_SAFE(item, next, &g_metaNodeList->list, MetaNodeStorageInfo, node) { in FindMetaNodeStorageInfo() 54 itemId = isUdid ? item->info.configInfo.udid : item->info.metaNodeId; in FindMetaNodeStorageInfo() 60 return item; in FindMetaNodeStorageInfo() 166 MetaNodeStorageInfo *item = NULL; in LnnGetAllMetaNodeInfo() local 182 LIST_FOR_EACH_ENTRY(item, &g_metaNodeList->list, MetaNodeStorageInfo, node) { in LnnGetAllMetaNodeInfo() 183 infos[i] = item->info; in LnnGetAllMetaNodeInfo() 195 MetaNodeStorageInfo *item = NULL; in LnnGetMetaNodeUdidByNetworkId() local 205 LIST_FOR_EACH_ENTRY(item, in LnnGetMetaNodeUdidByNetworkId() 226 MetaNodeStorageInfo *item = NULL; LnnGetMetaNodeInfoByNetworkId() local 273 MetaNodeStorageInfo *item = NULL; LnnDeinitMetaNodeLedger() local [all...] |
/foundation/window/window_manager/wmserver/test/unittest/ |
H A D | window_manager_config_test.cpp | 177 ConfigItem item = WindowManagerConfig::config_["windowAnimation"]; in HWTEST_F() local 178 ASSERT_EQ(true, item.IsMap()); in HWTEST_F() 179 item = WindowManagerConfig::config_["windowAnimation"]["timing"]["duration"]; in HWTEST_F() 180 ASSERT_EQ(true, item.IsInts()); in HWTEST_F() 181 auto value = *item.intsValue_; in HWTEST_F() 184 item = WindowManagerConfig::config_["windowAnimation"]["timing"]["curve"].GetProp("name"); in HWTEST_F() 185 ASSERT_EQ(true, item.IsString()); in HWTEST_F() 186 ASSERT_EQ("easeOut", item.stringValue_); in HWTEST_F() 187 item = WindowManagerConfig::config_["windowAnimation"]["scale"]; in HWTEST_F() 188 ASSERT_EQ(true, item in HWTEST_F() [all...] |
/kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
H A D | u_ether_configfs.h | 17 static void _f_##_attr_release(struct config_item *item) \ 19 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 29 static ssize_t _f_##_opts_dev_addr_show(struct config_item *item, \ 32 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 42 static ssize_t _f_##_opts_dev_addr_store(struct config_item *item, \ 45 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 64 static ssize_t _f_##_opts_host_addr_show(struct config_item *item, \ 67 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ 77 static ssize_t _f_##_opts_host_addr_store(struct config_item *item, \ 80 struct f_##_f_##_opts *opts = to_f_##_f_##_opts(item); \ [all...] |
/drivers/peripheral/distributed_camera/hdi_service/src/dcamera_device/ |
H A D | dmetadata_processor.cpp | 73 allResultSet_.insert((MetaType)(itemEntry->item)); in InitDCameraAbility() 239 camera_metadata_item_t item; in InitOutputAbilityWithoutMode() local 241 OHOS_ABILITY_STREAM_AVAILABLE_EXTEND_CONFIGURATIONS, &item); in InitOutputAbilityWithoutMode() 242 if (ret == CAM_META_SUCCESS && item.count != 0) { in InitOutputAbilityWithoutMode() 287 camera_metadata_item_t item; in InitDCameraOutputAbilityKeys() local 289 OHOS_ABILITY_STREAM_AVAILABLE_EXTEND_CONFIGURATIONS, &item); in InitDCameraOutputAbilityKeys() 290 if (ret == CAM_META_SUCCESS && item.count != 0) { in InitDCameraOutputAbilityKeys() 404 camera_metadata_item_t item; in AddAbilityEntry() local 405 int ret = OHOS::Camera::FindCameraMetadataItem(dCameraAbility_->get(), tag, &item); in AddAbilityEntry() 422 camera_metadata_item_t item; in UpdateAbilityEntry() local 561 camera_metadata_item_t item; UpdateOnChanged() local 681 GetMetadataItemData(const camera_metadata_item_t &item) GetMetadataItemData() argument 756 cJSON *item = cJSON_GetArrayItem(formatObj, i); GetNodeSupportedResolution() local 837 cJSON *item = cJSON_GetArrayItem(formatObj, i); ParsePhotoFormats() local 863 cJSON *item = cJSON_GetArrayItem(formatObj, i); ParsePreviewFormats() local 888 cJSON *item = cJSON_GetArrayItem(formatObj, i); ParseVideoFormats() local 906 camera_metadata_item_t item; PrintDCameraMetadata() local [all...] |
/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/ |
H A D | lnn_topo_manager.c | 119 TopoTableItem *item = (TopoTableItem *)SoftBusMalloc(sizeof(TopoTableItem)); in CreateTopoItem() local 120 if (item == NULL) { in CreateTopoItem() 121 LNN_LOGE(LNN_BUILDER, "malloc topo item fail"); in CreateTopoItem() 124 ListInit(&item->joinList); in CreateTopoItem() 125 ListInit(&item->node); in CreateTopoItem() 126 item->count = 0; in CreateTopoItem() 127 if (strcpy_s(item->udid, UDID_BUF_LEN, udid) != EOK) { in CreateTopoItem() 128 LNN_LOGE(LNN_BUILDER, "copy udid to topo item fail"); in CreateTopoItem() 129 SoftBusFree(item); in CreateTopoItem() 132 return item; in CreateTopoItem() 154 TopoTableItem *item = NULL; FindTopoItem() local 164 FindTopoInfo(const char *udid, const char *peerUdid, TopoTableItem **item, TopoInfo **info) FindTopoInfo() argument 193 TopoTableItem *item = NULL; ClearTopoTable() local 261 cJSON *item = cJSON_CreateObject(); PackTopoInfo() local 461 cJSON *item = NULL; ProcessTopoUpdateInfo() local 588 TopoTableItem *item = NULL; FillAllRelation() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_stack.c | 150 StackItem *item = &s->items[i]; in process_slice() local 153 av_image_copy_plane(out->data[p] + out->linesize[p] * item->y[p] + item->x[p], in process_slice() 157 item->linesize[p], item->height[p]); in process_slice() 212 StackItem *item = &s->items[i]; in config_output() local 219 if ((ret = av_image_fill_linesizes(item->linesize, inlink->format, inlink->w)) < 0) { in config_output() 223 item->height[1] = item->height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h); in config_output() 224 item in config_output() 236 StackItem *item = &s->items[i]; config_output() local 269 StackItem *item = &s->items[k]; config_output() local 313 StackItem *item = &s->items[i]; config_output() local [all...] |
/foundation/multimedia/camera_framework/frameworks/native/camera/src/session/ |
H A D | time_lapse_photo_session.cpp | 70 camera_metadata_item_t item;
in ProcessIsoInfoChange() local 72 int ret = Camera::FindCameraMetadataItem(metadata, OHOS_STATUS_ISO_VALUE, &item);
in ProcessIsoInfoChange() 74 MEDIA_DEBUG_LOG("%{public}s: Iso = %{public}d", __FUNCTION__, item.data.ui32[0]);
in ProcessIsoInfoChange() 76 .isoValue = item.data.ui32[0],
in ProcessIsoInfoChange() 79 if (isoInfoCallback_ != nullptr && item.data.ui32[0] != iso_) {
in ProcessIsoInfoChange() 83 iso_ = item.data.ui32[0];
in ProcessIsoInfoChange() 90 camera_metadata_item_t item;
in ProcessExposureChange() local 92 int ret = Camera::FindCameraMetadataItem(metadata, OHOS_STATUS_SENSOR_EXPOSURE_TIME, &item);
in ProcessExposureChange() 94 int32_t numerator = item.data.r->numerator;
in ProcessExposureChange() 95 int32_t denominator = item in ProcessExposureChange() 116 camera_metadata_item_t item; ProcessLuminationChange() local 136 camera_metadata_item_t item; ProcessSetTryAEChange() local 170 camera_metadata_item_t item; ProcessPhysicalCameraSwitch() local 193 camera_metadata_item_t item; IsTryAENeeded() local 251 camera_metadata_item_t item; GetSupportedTimeLapseIntervalRange() local 273 camera_metadata_item_t item; GetTimeLapseInterval() local 393 camera_metadata_item_t item; GetExposure() local 446 camera_metadata_item_t item; GetSupportedExposureRange() local 490 camera_metadata_item_t item; GetSupportedMeteringModes() local 526 camera_metadata_item_t item; GetExposureMeteringMode() local 577 camera_metadata_item_t item; GetIso() local 622 camera_metadata_item_t item; IsManualIsoSupported() local 638 camera_metadata_item_t item; GetIsoRange() local 706 camera_metadata_item_t item; GetSupportedWhiteBalanceModes() local 731 camera_metadata_item_t item; GetWhiteBalanceRange() local 755 camera_metadata_item_t item; GetWhiteBalanceMode() local 814 camera_metadata_item_t item; GetWhiteBalance() local [all...] |
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 64 =item B<new> I<%options> 72 =item B<< from => FILENAME >> 87 loaded_maxnum => 0, # Highest allocated item number when loading 89 maxassigned => 0, # Current highest assigned item number 90 maxnum => 0, # Current highest allocated item number 105 =item B<< $ordinals->load FILENAME >> 133 my $item = OpenSSL::Ordinals::Item->new(source => $filename, from => $_); 135 my $num = $item->number(); 148 $item->intnum($num); 149 push @{$tmp_contents[$num]}, $item; [all...] |
/third_party/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 64 =item B<new> I<%options> 72 =item B<< from => FILENAME >> 87 loaded_maxnum => 0, # Highest allocated item number when loading 89 maxassigned => 0, # Current highest assigned item number 90 maxnum => 0, # Current highest allocated item number 105 =item B<< $ordinals->load FILENAME >> 133 my $item = OpenSSL::Ordinals::Item->new(source => $filename, from => $_); 135 my $num = $item->number(); 148 $item->intnum($num); 149 push @{$tmp_contents[$num]}, $item; [all...] |
/kernel/linux/linux-5.10/drivers/staging/hungtask/ |
H A D | hungtask_base.c | 191 struct task_item *item = NULL; in refresh_task_type() local 196 item = rb_entry(p, struct task_item, node); in refresh_task_type() 197 if (item->tgid == pid) in refresh_task_type() 198 item->task_type = task_type; in refresh_task_type() 248 static bool insert_task(struct task_item *item, struct rb_root *root) in insert_task() argument 260 if (item->pid < cur->pid) { in insert_task() 262 } else if (item->pid > cur->pid) { in insert_task() 266 item->pid, item->tgid, in insert_task() 267 item in insert_task() 447 remove_list_tasks(struct task_item *item) remove_list_tasks() argument 453 shrink_process_item(struct task_item *item, bool *is_finish) shrink_process_item() argument 473 struct task_item *item = NULL; shrink_list_tasks() local 577 dump_task_wa(struct task_item *item, int dump_cnt, struct task_struct *task, unsigned int flag) dump_task_wa() argument 613 update_panic_task(struct task_item *item) update_panic_task() argument 624 deal_task(struct task_item *item, struct task_struct *task, bool is_called) deal_task() argument 745 struct task_item *item = rb_entry(n, struct task_item, node); htbase_post_process() local [all...] |
/kernel/linux/linux-6.6/drivers/staging/hungtask/ |
H A D | hungtask_base.c | 191 struct task_item *item = NULL; in refresh_task_type() local 196 item = rb_entry(p, struct task_item, node); in refresh_task_type() 197 if (item->tgid == pid) in refresh_task_type() 198 item->task_type = task_type; in refresh_task_type() 248 static bool insert_task(struct task_item *item, struct rb_root *root) in insert_task() argument 260 if (item->pid < cur->pid) { in insert_task() 262 } else if (item->pid > cur->pid) { in insert_task() 266 item->pid, item->tgid, in insert_task() 267 item in insert_task() 447 remove_list_tasks(struct task_item *item) remove_list_tasks() argument 453 shrink_process_item(struct task_item *item, bool *is_finish) shrink_process_item() argument 473 struct task_item *item = NULL; shrink_list_tasks() local 577 dump_task_wa(struct task_item *item, int dump_cnt, struct task_struct *task, unsigned int flag) dump_task_wa() argument 613 update_panic_task(struct task_item *item) update_panic_task() argument 624 deal_task(struct task_item *item, struct task_struct *task, bool is_called) deal_task() argument 745 struct task_item *item = rb_entry(n, struct task_item, node); htbase_post_process() local [all...] |
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
H A D | RBTMXImporter.java | 94 Element tu_elem = (Element)tu_list.item(i); in importDoc() 103 Element prop_elem = (Element)prop_list.item(j); in importDoc() 110 Text text_elem = (Text)text_list.item(0); in importDoc() 119 Element tuv_elem = (Element)tuv_list.item(j); in importDoc() 133 Element seg_elem = (Element)seg_list.item(0); in importDoc() 138 Text text_elem = (Text)text_list.item(0); in importDoc() 142 // Create the bundle item in importDoc() 143 BundleItem item = new BundleItem(null, name, value); in importDoc() 145 item.setCreatedDate(tuv_elem.getAttribute("creationdate")); in importDoc() 146 item in importDoc() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_debug_flush.c | 144 debug_flush_item_destroy(struct debug_flush_item *item) in debug_flush_item_destroy() argument 146 debug_flush_buf_reference(&item->fbuf, NULL); in debug_flush_item_destroy() 148 FREE(item->ref_frame); in debug_flush_item_destroy() 150 FREE(item); in debug_flush_item_destroy() 252 struct debug_flush_item *item = in debug_flush_map() local 255 if (item && fctx->catch_map_of_referenced) { in debug_flush_map() 258 debug_flush_alert(NULL, "Reference", 0, item->bt_depth, in debug_flush_map() 259 FALSE, FALSE, item->ref_frame); in debug_flush_map() 304 struct debug_flush_item *item; in debug_flush_cb_reference() local 309 item in debug_flush_cb_reference() 342 struct debug_flush_item *item = debug_flush_might_flush_cb() local 383 struct debug_flush_item *item = debug_flush_flush_cb() local [all...] |
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | config.c | 549 struct perf_config_item *item; in find_config_item() local 551 list_for_each_entry(item, §ion->items, node) in find_config_item() 552 if (!strcmp(item->name, name)) in find_config_item() 553 return item; in find_config_item() 581 struct perf_config_item *item = zalloc(sizeof(*item)); in add_config_item() local 583 if (!item) in add_config_item() 586 item->name = strdup(name); in add_config_item() 587 if (!item->name) { in add_config_item() 589 free(item); in add_config_item() 597 set_value(struct perf_config_item *item, const char *value) set_value() argument 616 struct perf_config_item *item = NULL; collect_config() local 754 struct perf_config_item *item; perf_config() local 793 perf_config_item__delete(struct perf_config_item *item) perf_config_item__delete() argument 802 struct perf_config_item *item, *tmp; perf_config_section__purge() local [all...] |
/third_party/lzma/CPP/Common/ |
H A D | MyVector.h | 214 unsigned Add(const T item)
in Add() argument 219 _items[size] = item;
in Add() 224 unsigned Add2(const T &item)
229 _items[size] = item;
234 unsigned AddInReserved(const T item)
in AddInReserved() argument 238 _items[size] = item;
in AddInReserved() 242 void Insert(unsigned index, const T item)
in Insert() argument 246 _items[index] = item;
in Insert() 250 void InsertInReserved(unsigned index, const T item)
in InsertInReserved() argument 253 _items[index] = item;
in InsertInReserved() 285 FindInSorted(const T item, unsigned left, unsigned right) const FindInSorted() argument 302 FindInSorted2(const T &item, unsigned left, unsigned right) const FindInSorted2() argument 330 AddToUniqueSorted(const T item) AddToUniqueSorted() argument 349 AddToUniqueSorted2(const T &item) AddToUniqueSorted2() argument 513 Add(const T& item) Add() argument 519 AddInReserved(const T& item) AddInReserved() argument 554 Insert(unsigned index, const T& item) Insert() argument 654 AddToUniqueSorted(const T& item) AddToUniqueSorted() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/video/ |
H A D | video_controller_v2.h | 140 for (const auto& item : controllers_) { in Start() 141 item->Start(); in Start() 147 for (const auto& item : controllers_) { in Pause() 148 item->Pause(); in Pause() 154 for (const auto& item : controllers_) { in Reset() 155 item->Reset(); in Reset() 161 for (const auto& item : controllers_) { in Stop() 162 item->Stop(); in Stop() 168 for (const auto& item : controllers_) { in SeekTo() 169 item in SeekTo() [all...] |