Home
last modified time | relevance | path

Searched refs:status (Results 2726 - 2750 of 10542) sorted by relevance

1...<<101102103104105106107108109110>>...422

/base/security/certificate_framework/frameworks/js/napi/certificate/src/
H A Dnapi_x509_cert_chain_validate_params.cpp54 napi_status status = napi_is_array(env, arg, &flag); in GetArrayLength() local
55 if (status != napi_ok || !flag) { in GetArrayLength()
59 status = napi_get_array_length(env, arg, &length); in GetArrayLength()
60 if (status != napi_ok || length == 0 || length > MAX_LEN_OF_ARRAY) { in GetArrayLength()
145 napi_status status = napi_get_element(env, obj, i, &element); in GetCertCRLCollectionArray() local
146 if (status != napi_ok) { in GetCertCRLCollectionArray()
174 napi_status status = napi_is_array(env, obj, &flag); in GetRevocationOptions() local
175 if (status != napi_ok || !flag) { in GetRevocationOptions()
180 status = napi_get_array_length(env, obj, &length); in GetRevocationOptions()
181 if (status ! in GetRevocationOptions()
360 napi_status status = napi_get_value_int32(env, obj, (int32_t *)&out); GetValidationPolicyType() local
391 napi_status status = napi_is_array(env, obj, &flag); GetKeyUsage() local
[all...]
/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/signature/src/
H A Decdsa_openssl.c39 CryptoStatus status; member
49 CryptoStatus status; member
133 if (impl->status != UNINITIALIZED) { in EngineSignInit()
165 impl->status = INITIALIZED; in EngineSignInit()
180 if (impl->status == UNINITIALIZED) { in EngineSignUpdate()
189 impl->status = READY; in EngineSignUpdate()
211 impl->status = READY; in EngineSignDoFinal()
213 if (impl->status != READY) { in EngineSignDoFinal()
255 if (impl->status != UNINITIALIZED) { in EngineVerifyInit()
286 impl->status in EngineVerifyInit()
[all...]
/base/web/webview/interfaces/kits/napi/webviewcontroller/
H A Dwebview_javascript_execute_callback.cpp108 void WebviewJavaScriptExecuteCallback::UvAfterWorkCb(uv_work_t* work, int status) in UvAfterWorkCb() argument
111 (void)status; in UvAfterWorkCb()
163 napi_status status = napi_wrap(env, setResult[INTEGER_ONE], webJsMessageExt, in UvAfterWorkCbAsync() local
170 if (status != napi_status::napi_ok) { in UvAfterWorkCbAsync()
195 napi_status status = napi_get_reference_value(env, g_jsMsgExtClassRef, &jsMsgExt); in UvAfterWorkCbPromise() local
196 if (status != napi_status::napi_ok) { in UvAfterWorkCbPromise()
200 status = napi_new_instance(env, jsMsgExt, 0, NULL, &setResult[INTEGER_ONE]); in UvAfterWorkCbPromise()
201 if (status != napi_status::napi_ok) { in UvAfterWorkCbPromise()
211 status = napi_wrap(env, setResult[INTEGER_ONE], webJsMessageExt, in UvAfterWorkCbPromise()
218 if (status ! in UvAfterWorkCbPromise()
310 napi_status status = napi_get_cb_info(env, info, &argc, argv, &thisVar, nullptr); GetType() local
[all...]
/foundation/ability/dmsfwk/services/dtbschedmgr/src/mission/
H A Ddsched_sync_e2e.cpp259 Status status = kvStorePtr_->Sync(networkIdList, DistributedKv::SyncMode::PUSH_PULL, dataQuery, syncCallback); in PushAndPullData() local
260 if (status != Status::SUCCESS) { in PushAndPullData()
261 HILOGE("sync error: %{public}d", status); in PushAndPullData()
284 Status status = kvStorePtr_->Sync(networkIdList, DistributedKv::SyncMode::PUSH_PULL, dataQuery, syncCallback); in PushAndPullData() local
285 if (status != Status::SUCCESS) { in PushAndPullData()
286 HILOGE("sync error: %{public}d", status); in PushAndPullData()
329 Status status = GetKvStore(); in CheckKvStore() local
330 if (status == Status::SUCCESS && kvStorePtr_ != nullptr) { in CheckKvStore()
359 Status status = dataManager_.GetSingleKvStore(options, appId_, storeId_, kvStorePtr_); in GetKvStore() local
360 if (status in GetKvStore()
373 Status status = func(); TryTwice() local
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H A Dclassic_adapter.h448 * @param status Inquire status.
451 static void InquiryCompleteCallback(uint8_t status, void *context);
456 * @param status Inquire status.
462 uint8_t status, const BtAddr *addr, const uint8_t name[MAX_LOC_BT_NAME_LEN], void *context);
545 * @param status Pair status.
548 static void SimplePairCompleteCallback(const BtAddr *addr, uint8_t status, void *context);
554 * @param status Authenticatio
[all...]
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/src/
H A Dcamera_napi_utils.cpp40 jsContext->status = false; in CreateNapiErrorObject()
52 if (asyncContext.status) { in InvokeJSAsyncMethod()
226 napi_status status = napi_get_value_string_utf8(env, value, nullptr, 0, &stringSize); in GetStringArgument() local
227 if (status != napi_ok || stringSize == 0) { in GetStringArgument()
231 status = napi_get_value_string_utf8(env, value, strValue.data(), stringSize + 1, &stringSize); in GetStringArgument()
232 if (status != napi_ok || stringSize == 0) { in GetStringArgument()
341 napi_status status = napi_create_object(env, &result); in CreateFrameRateJSArray() local
342 if (status == napi_ok) { in CreateFrameRateJSArray()
344 status = napi_create_int32(env, frameRateRange[0], &minRate); in CreateFrameRateJSArray()
346 status in CreateFrameRateJSArray()
363 napi_status status = napi_create_array(env, &supportedFrameRateArray); CreateSupportFrameRatesJSArray() local
416 CreateJSArray(napi_env env, napi_status status, std::vector<int32_t> nativeArray) CreateJSArray() argument
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/adapter/communicator/test/unittest/
H A Ddevice_manager_adapter_test.cpp97 auto status = DeviceManagerAdapter::GetInstance().StartWatchDeviceChange(nullptr, {}); in HWTEST_F() local
98 EXPECT_EQ(status, Status::INVALID_ARGUMENT); in HWTEST_F()
100 status = DeviceManagerAdapter::GetInstance().StartWatchDeviceChange(observer_.get(), {}); in HWTEST_F()
101 EXPECT_EQ(status, Status::SUCCESS); in HWTEST_F()
102 status = DeviceManagerAdapter::GetInstance().StartWatchDeviceChange(observer_.get(), {}); in HWTEST_F()
103 EXPECT_EQ(status, Status::ERROR); in HWTEST_F()
115 auto status = DeviceManagerAdapter::GetInstance().StopWatchDeviceChange(nullptr, {}); in HWTEST_F() local
116 EXPECT_EQ(status, Status::INVALID_ARGUMENT); in HWTEST_F()
117 status = DeviceManagerAdapter::GetInstance().StopWatchDeviceChange(observer_.get(), {}); in HWTEST_F()
118 EXPECT_EQ(status, Statu in HWTEST_F()
134 auto status = DeviceManagerAdapter::GetInstance().StopWatchDeviceChange(observer.get(), {}); HWTEST_F() local
377 auto status = DeviceManagerAdapter::GetInstance().StartWatchDeviceChange(observer.get(), {}); HWTEST_F() local
[all...]
/third_party/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.cpp51 UnicodeSetPerformanceTest(int32_t argc, const char *argv[], UErrorCode &status) in UnicodeSetPerformanceTest() argument
52 : UPerfTest(argc, argv, options, UPRV_LENGTHOF(options), unisetperf_usage, status), in UnicodeSetPerformanceTest()
54 if (U_SUCCESS(status)) { in UnicodeSetPerformanceTest()
56 set.applyPattern(pattern, status); in UnicodeSetPerformanceTest()
63 UPerfTest::getBuffer(inputLength, status); in UnicodeSetPerformanceTest()
64 if(U_SUCCESS(status) && inputLength>0) { in UnicodeSetPerformanceTest()
70 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status); in UnicodeSetPerformanceTest()
71 if(status==U_BUFFER_OVERFLOW_ERROR) { in UnicodeSetPerformanceTest()
74 status=U_ZERO_ERROR; in UnicodeSetPerformanceTest()
75 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status); in UnicodeSetPerformanceTest()
428 UErrorCode status = U_ZERO_ERROR; main() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/dso/
H A Ddso_vms.c272 int status = 0; in vms_bind_sym() local
315 status = do_find_symbol(ptr, &symname_dsc, sym, LIB$M_FIS_MIXEDCASE); in vms_bind_sym()
317 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym()
318 status = do_find_symbol(ptr, &symname_dsc, sym, 0); in vms_bind_sym()
320 if (!$VMS_STATUS_SUCCESS(status)) { in vms_bind_sym()
332 status = sys$getmsg(status, &length, &errstring_dsc, 1, 0); in vms_bind_sym()
334 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym()
335 lib$signal(status); /* This is really bad. Abort! */ in vms_bind_sym()
364 int status; in vms_merger() local
[all...]
/third_party/openssl/crypto/dso/
H A Ddso_vms.c272 int status = 0; in vms_bind_sym() local
315 status = do_find_symbol(ptr, &symname_dsc, sym, LIB$M_FIS_MIXEDCASE); in vms_bind_sym()
317 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym()
318 status = do_find_symbol(ptr, &symname_dsc, sym, 0); in vms_bind_sym()
320 if (!$VMS_STATUS_SUCCESS(status)) { in vms_bind_sym()
332 status = sys$getmsg(status, &length, &errstring_dsc, 1, 0); in vms_bind_sym()
334 if (!$VMS_STATUS_SUCCESS(status)) in vms_bind_sym()
335 lib$signal(status); /* This is really bad. Abort! */ in vms_bind_sym()
364 int status; in vms_merger() local
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
H A Dstatus.h16 // File: status.h
19 // This header file defines the Abseil `status` library, consisting of:
23 // utilities for generating and propagating status codes.
24 // * A set of helper functions for creating status codes and checking their
58 #include "absl/status/internal/status_internal.h"
89 // to your status. See `absl::Status::SetPayload()` and
267 // The purpose of this enumerated value is to force people who handle status
276 // Returns the name for the status code, or "" if it is an unknown value.
288 // status.
349 // functions to constuct each status cod
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dccapitst.c1155 UErrorCode status = U_ZERO_ERROR; in TestAlias() local
1187 uint16_t na = ucnv_countAliases(name, &status); in TestAlias()
1197 cnv = ucnv_open(name, &status); in TestAlias()
1198 if (U_FAILURE(status)) { in TestAlias()
1204 if (strcmp(ucnv_getName(cnv, &status), name) != 0 in TestAlias()
1208 name, ucnv_getName(cnv, &status)); in TestAlias()
1213 status = U_ZERO_ERROR; in TestAlias()
1214 alias0 = ucnv_getAlias(name, 0, &status); in TestAlias()
1222 status = U_ZERO_ERROR; in TestAlias()
1223 alias = ucnv_getAlias(name, j, &status); in TestAlias()
1319 UErrorCode status = U_ZERO_ERROR; TestDuplicateAlias() local
3099 UErrorCode status = U_ZERO_ERROR; TestLMBCSMaxChar() local
3367 UErrorCode status = U_ZERO_ERROR; TestFromUCountPending() local
3471 UErrorCode status = U_ZERO_ERROR; TestToUCountPending() local
3582 UErrorCode status = U_ZERO_ERROR; TestOneDefaultNameChange() local
[all...]
/foundation/multimedia/image_framework/frameworks/kits/js/common/sendable/
H A Dsendable_image_napi.cpp46 uint32_t status; member
111 napi_status status = napi_unwrap_sendable(env, image, reinterpret_cast<void**>(&napi)); in GetNativeImage() local
112 if (!IMG_IS_OK(status) || napi == nullptr) { in GetNativeImage()
121 napi_status status; in Constructor() local
129 status = napi_get_cb_info(env, info, &argc, argv, &thisVar, nullptr); in Constructor()
130 if (status != napi_ok || thisVar == nullptr || argc != NUM1) { in Constructor()
150 status = napi_wrap_sendable(env, thisVar, in Constructor()
152 if (status != napi_ok) { in Constructor()
237 using AsyncCompleteCallback = void (*)(napi_env env, napi_status status, SendableImageAsyncContext* ctx);
243 napi_status status in JsCreateWork() local
471 JSReleaseCallBack(napi_env env, napi_status status, SendableImageAsyncContext* context) JSReleaseCallBack() argument
536 auto status = napi_create_external_arraybuffer(env, src, srcLen, CreateArrayBuffer() local
583 TestGetComponentCallBack(napi_env env, napi_status status, SendableImageAsyncContext* context) TestGetComponentCallBack() argument
604 JsGetComponentCallBack(napi_env env, napi_status status, SendableImageAsyncContext* context) JsGetComponentCallBack() argument
[all...]
/foundation/multimedia/camera_framework/services/camera_service/src/
H A Dhstream_repeat.cpp137 void HStreamRepeat::UpdateSketchStatus(SketchStatus status) in UpdateSketchStatus() argument
146 if (sketchStatus_ != status) { in UpdateSketchStatus()
147 sketchStatus_ = status; in UpdateSketchStatus()
409 int32_t HStreamRepeat::OnSketchStatusChanged(SketchStatus status) in OnSketchStatusChanged() argument
412 MEDIA_DEBUG_LOG("HStreamRepeat::OnSketchStatusChanged %{public}d", status); in OnSketchStatusChanged()
414 streamRepeatCallback_->OnSketchStatusChanged(status); in OnSketchStatusChanged()
506 bool status = false; in SetFrameRate() local
509 status = dynamicSetting->addEntry( in SetFrameRate()
513 status = dynamicSetting->updateEntry( in SetFrameRate()
516 CHECK_ERROR_PRINT_LOG(!status, "HStreamRepea in SetFrameRate()
819 bool status = false; OpenVideoDfxSwitch() local
842 bool status = false; UpdateVideoSettings() local
859 bool status = false; UpdateFrameRateSettings() local
881 bool status = false; UpdateFrameMuteSettings() local
[all...]
/foundation/communication/nfc/frameworks/js/napi/tag/
H A Dnfc_napi_tag_ndef.cpp170 napi_status status = napi_wrap( in CreateNdefMessage() local
179 NAPI_ASSERT(env, status == napi_ok, "CreateNdefMessage, failed to wrap ndefMessage"); in CreateNdefMessage()
193 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetNdefTagType() local
194 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetNdefTagType()
221 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in GetNdefMessage() local
222 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in GetNdefMessage()
271 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); in IsNdefWritable() local
272 if (status != napi_ok || objectInfo == nullptr || objectInfo->tagSession == nullptr) { in IsNdefWritable()
320 static void ReadNdefCallback(napi_env env, napi_status status, void *data) in ReadNdefCallback() argument
323 if (status in ReadNdefCallback()
332 napi_status status = napi_wrap( ReadNdefCallback() local
366 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfoCb)); ReadNdef() local
417 WriteNdefCallback(napi_env env, napi_status status, void *data) WriteNdefCallback() argument
442 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfoCb)); WriteNdef() local
479 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); CanSetReadOnly() local
526 SetReadOnlyCallback(napi_env env, napi_status status, void *data) SetReadOnlyCallback() argument
551 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfoCb)); SetReadOnly() local
587 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&objectInfo)); GetNdefTagTypeString() local
[all...]
/foundation/communication/ipc/ipc/native/src/napi/src/
H A Dnapi_remote_proxy.cpp60 void SendRequestCbComplete(napi_env env, napi_status status, void *data) in SendRequestCbComplete() argument
79 void SendRequestPromiseComplete(napi_env env, napi_status status, void *data) in SendRequestPromiseComplete() argument
204 napi_status status = napi_unwrap(env, argv[ARGV_INDEX_1], reinterpret_cast<void **>(&data)); in NAPI_RemoteProxy_sendRequest() local
205 NAPI_ASSERT(env, status == napi_ok, "failed to get data message parcel"); in NAPI_RemoteProxy_sendRequest()
207 status = napi_unwrap(env, argv[ARGV_INDEX_2], reinterpret_cast<void **>(&reply)); in NAPI_RemoteProxy_sendRequest()
208 NAPI_ASSERT(env, status == napi_ok, "failed to get reply message parcel"); in NAPI_RemoteProxy_sendRequest()
210 status = napi_unwrap(env, argv[ARGV_INDEX_3], reinterpret_cast<void **>(&option)); in NAPI_RemoteProxy_sendRequest()
211 NAPI_ASSERT(env, status == napi_ok, "failed to get message option"); in NAPI_RemoteProxy_sendRequest()
261 napi_status status = napi_unwrap(env, argv[ARGV_INDEX_1], reinterpret_cast<void **>(&data)); in NAPI_RemoteProxy_checkSendMessageRequestArgs() local
262 if (status ! in NAPI_RemoteProxy_checkSendMessageRequestArgs()
367 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&proxyHolder)); NAPI_RemoteProxy_addDeathRecipient() local
436 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&proxyHolder)); NAPI_RemoteProxy_registerDeathRecipient() local
486 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&proxyHolder)); NAPI_RemoteProxy_removeDeathRecipient() local
558 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&proxyHolder)); NAPI_RemoteProxy_unregisterDeathRecipient() local
595 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&holder)); NAPI_RemoteProxy_getInterfaceDescriptor() local
618 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&holder)); NAPI_RemoteProxy_getDescriptor() local
648 napi_status status = napi_unwrap(env, thisVar, reinterpret_cast<void **>(&holder)); NAPI_RemoteProxy_isObjectDead() local
697 napi_status status = napi_wrap( RemoteProxy_JS_Constructor() local
748 napi_status status = napi_set_named_property(env, exports, "RemoteProxy", constructor); NAPIRemoteProxyExport() local
[all...]
/foundation/CastEngine/castengine_wifi_display/tests/unittest/agent/
H A Dsrc_agent_unit_test.cpp193 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
207 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
221 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
235 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
249 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
263 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
277 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
291 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
305 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
319 sessionMsg->status in HWTEST_F()
[all...]
H A Dsink_agent_unit_test.cpp192 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
206 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
220 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
234 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
248 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
262 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
276 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
290 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
304 sessionMsg->status = SessionNotifyStatus::NOTIFY_PROSUMER_CREATE; in HWTEST_F()
318 sessionMsg->status in HWTEST_F()
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/object/
H A Dobject_manager.cpp58 auto status = DistributedFileDaemonManager::GetInstance().UnRegisterAssetCallback(objectAssetsRecvListener_); in ~ObjectStoreManager() local
59 if (status != DistributedDB::DBStatus::OK) { in ~ObjectStoreManager()
60 ZLOGE("UnRegister assetsRecvListener err %{public}d", status); in ~ObjectStoreManager()
85 DistributedDB::DBStatus status = store->RegisterObserver(tmpKey, in OpenObjectKvStore()
88 if (status != DistributedDB::DBStatus::OK) { in OpenObjectKvStore()
89 ZLOGE("RegisterObserver err %{public}d", status); in OpenObjectKvStore()
103 auto status = DistributedFileDaemonManager::GetInstance().RegisterAssetCallback(objectAssetsRecvListener_); in RegisterAssetsLister() local
104 if (status != DistributedDB::DBStatus::OK) { in RegisterAssetsLister()
105 ZLOGE("Register assetsRecvListener err %{public}d", status); in RegisterAssetsLister()
125 ZLOGE("Save failed, status in ProcessSyncCallback()
198 auto status = ObjectAssetLoader::GetInstance()->PushAsset(userId, assetObj, objectAssetsSendListener_); PushAssets() local
252 int32_t status = RetrieveFromStore(bundleName, sessionId, results); Retrieve() local
344 auto status = DistributedData::MetaDataManager::GetInstance().DelMeta(metaKey, true); DeleteByAppId() local
776 auto status = kvStoreDelegateManager_->CloseKvStore(delegate_); FlushClosedStore() local
796 auto status = delegate_->GetEntries(std::vector<uint8_t>(appId.begin(), appId.end()), entries); ProcessOldEntry() local
858 auto status = delegate_->PutBatch(entries); SaveToStore() local
890 auto status = delegate_->Sync(syncDevices, DistributedDB::SyncMode::SYNC_MODE_PUSH_ONLY, SyncOnStore() local
910 SetSyncStatus(bool status) SetSyncStatus() argument
920 auto status = delegate_->GetEntries(std::vector<uint8_t>(prefix.begin(), prefix.end()), entries); RevokeSaveToStore() local
952 auto status = delegate_->GetEntries(std::vector<uint8_t>(prefix.begin(), prefix.end()), entries); RetrieveFromStore() local
1175 auto status = AccessTokenKit::GetHapTokenInfo(tokenId, tokenInfo); BindAsset() local
[all...]
/base/update/updateservice/services/firmware/upgrade/mode/src/
H A Dfirmware_manual_check_mode.cpp85 FIRMWARE_LOGI("FirmwareManualCheckMode::status %{public}d", static_cast<uint32_t>(task.status)); in GetStepAfterCheck()
86 if (task.status == UpgradeStatus::CHECK_VERSION_SUCCESS) { in GetStepAfterCheck()
99 CheckStatus status, const Duration &duration, const std::vector<FirmwareComponent> &componentList, in SetCheckResult()
102 FIRMWARE_LOGI("FirmwareManualCheckMode::SetCheckResult %{public}d", static_cast<uint32_t>(status)); in SetCheckResult()
103 checkDataProcessor_.SetCheckResult(status, duration, componentList); in SetCheckResult()
98 SetCheckResult( CheckStatus status, const Duration &duration, const std::vector<FirmwareComponent> &componentList, const CheckAndAuthInfo &checkAndAuthInfo) SetCheckResult() argument
/base/web/webview/test/fuzztest/ohos_adapter/aafwk_adapter/aafwkbrowserclientadapter_fuzzer/
H A Daafwkbrowserclientadapter_fuzzer.cpp43 void ReportThread(int32_t status, int32_t process_id, int32_t thread_id, int32_t role);
56 void MockBrowserClient::ReportThread(int32_t status, int32_t process_id, int32_t thread_id, int32_t role) in ReportThread() argument
58 (void)status; in ReportThread()
81 int32_t status = 0; in AafwkBrowserClientAdapterFuzzTest() local
86 client->ReportThread(status, process_id, thread_id, role); in AafwkBrowserClientAdapterFuzzTest()
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dstepper_item_composed_element.cpp26 { "status", [](const StepperItemComposedElement& inspector) { return inspector.GetStatus(); } },
74 auto status = label.initialStatus; in GetStatus() local
75 if (status == "normal") { in GetStatus()
77 } else if (status == "disabled") { in GetStatus()
79 } else if (status == "waiting") { in GetStatus()
81 } else if (status == "skip") { in GetStatus()
/foundation/resourceschedule/frame_aware_sched/qos_manager/src/
H A Dqos_common.cpp38 int AuthEnable(int pid, unsigned int flag, unsigned int status) in AuthEnable() argument
53 data.status = status; in AuthEnable()
58 RME_LOGE("auth enable failed for pid %{public}d with status %{public}u\n", pid, status); in AuthEnable()
79 data.status = AUTH_STATUS_BACKGROUND; in AuthPause()
/foundation/communication/netmanager_ext/frameworks/js/napi/sharing/include/
H A Dnetshare_callback_observer.h39 template <napi_value (*MakeJsValue)(napi_env, void *)> static void CallbackTemplate(uv_work_t *work, int status) in CallbackTemplate() argument
41 (void)status; in CallbackTemplate()
63 static void SharingStateChangedCallback(uv_work_t *work, int status);
64 static void InterfaceSharingStateChangedCallback(uv_work_t *work, int status);
65 static void SharingUpstreamChangedCallback(uv_work_t *work, int status);
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/data_share/
H A Ddata_share_silent_config.cpp74 int status = ERROR; in CheckExistEnableSilentUris() local
75 enableSilentUris_.ComputeIfPresent(callerTokenId, [&isEnable, &status, &uri](const uint32_t &key, in CheckExistEnableSilentUris()
80 status = E_OK; in CheckExistEnableSilentUris()
86 status = E_OK; in CheckExistEnableSilentUris()
91 return status; in CheckExistEnableSilentUris()

Completed in 24 milliseconds

1...<<101102103104105106107108109110>>...422