/third_party/alsa-lib/test/ |
H A D | midifile.c | 32 * (6) changed mf_write_midi_event to use running status 314 /* This array is indexed by the high half of a status byte. It's */ in readtrack() 325 int running = 0; /* 1 when running status used */ in readtrack() 326 int status = 0; /* status value (e.g. 0x90==note-on) */ in readtrack() local 417 { /* running status? */ in readtrack() 418 if (status == 0) in readtrack() 419 mferror ("unexpected running status"); in readtrack() 424 status = c; in readtrack() 428 needed = chantype[(status >> in readtrack() [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | putiltst.c | 244 UErrorCode status = U_ZERO_ERROR; in TestVersion() local 327 u_getDataVersion(version, &status); in TestVersion() 328 if (U_FAILURE(status)) { in TestVersion() 329 log_data_err("ERROR: Unable to get data version. %s\n", u_errorName(status)); in TestVersion() 702 UErrorCode status = U_ZERO_ERROR; in toolutil_findDirname() local 706 result = STRNULL(findDirname(testCases[i].inBuf, toolutil_testBuf, testCases[i].outBufLen, &status)); in toolutil_findDirname() 707 log_verbose(" -> %s, \n", u_errorName(status)); in toolutil_findDirname() 708 if(status != testCases[i].expectStatus) { in toolutil_findDirname() 709 log_verbose("FAIL: Test case [%d/%d]: %s got error code %s but expected %s\n", i, count-1, input, u_errorName(status), u_errorName(testCases[i].expectStatus)); in toolutil_findDirname()
|
/third_party/node/deps/openssl/openssl/crypto/cmp/ |
H A D | cmp_local.h | 122 int status; /* PKIStatus of last received IP/CP/KUP/RP/error or -1 */ member 143 * status PKIStatus, 152 ASN1_INTEGER *status; member 282 * status PKIStatus, 288 OSSL_CMP_PKISTATUS *status; member 311 * status SEQUENCE SIZE (1..MAX) OF PKIStatusInfo, 316 * -- (same order as status) 323 STACK_OF(OSSL_CMP_PKISI) *status; member 331 * status PKIStatusInfo, 340 OSSL_CMP_PKISI *status; member 399 OSSL_CMP_PKISI *status; global() member [all...] |
H A D | cmp_server.c | 338 OSSL_CMP_CERTSTATUS *status = NULL; in process_certConf() local 348 || ctx->status != OSSL_CMP_PKISTATUS_trans) { in process_certConf() 358 status = sk_OSSL_CMP_CERTSTATUS_value(ccc, OSSL_CMP_CERTREQID); in process_certConf() 361 if (status != NULL) { in process_certConf() 362 int certReqId = ossl_cmp_asn1_get_int(status->certReqId); in process_certConf() 363 ASN1_OCTET_STRING *certHash = status->certHash; in process_certConf() 364 OSSL_CMP_PKISI *si = status->statusInfo; in process_certConf() 620 ctx->status = OSSL_CMP_PKISTATUS_trans; in OSSL_CMP_SRV_process_request() 635 ctx->status = OSSL_CMP_PKISTATUS_unspecified; /* transaction closed */ in OSSL_CMP_SRV_process_request()
|
/third_party/openssl/crypto/cmp/ |
H A D | cmp_local.h | 122 int status; /* PKIStatus of last received IP/CP/KUP/RP/error or -1 */ member 143 * status PKIStatus, 152 ASN1_INTEGER *status; member 282 * status PKIStatus, 288 OSSL_CMP_PKISTATUS *status; member 311 * status SEQUENCE SIZE (1..MAX) OF PKIStatusInfo, 316 * -- (same order as status) 323 STACK_OF(OSSL_CMP_PKISI) *status; member 331 * status PKIStatusInfo, 340 OSSL_CMP_PKISI *status; member 399 OSSL_CMP_PKISI *status; global() member [all...] |
H A D | cmp_server.c | 338 OSSL_CMP_CERTSTATUS *status = NULL; in process_certConf() local 348 || ctx->status != OSSL_CMP_PKISTATUS_trans) { in process_certConf() 358 status = sk_OSSL_CMP_CERTSTATUS_value(ccc, OSSL_CMP_CERTREQID); in process_certConf() 361 if (status != NULL) { in process_certConf() 362 int certReqId = ossl_cmp_asn1_get_int(status->certReqId); in process_certConf() 363 ASN1_OCTET_STRING *certHash = status->certHash; in process_certConf() 364 OSSL_CMP_PKISI *si = status->statusInfo; in process_certConf() 620 ctx->status = OSSL_CMP_PKISTATUS_trans; in OSSL_CMP_SRV_process_request() 635 ctx->status = OSSL_CMP_PKISTATUS_unspecified; /* transaction closed */ in OSSL_CMP_SRV_process_request()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | VirtualFileSystem.h | 44 /// The result of a \p status operation. 105 /// Get the status of the file. 106 virtual llvm::ErrorOr<Status> status() = 0; 110 if (auto Status = status()) in getName() 248 /// Get the status of the entry at \p Path, if one exists. 249 virtual llvm::ErrorOr<Status> status(const Twine &Path) = 0; 334 llvm::ErrorOr<Status> status(const Twine &Path) override; 374 llvm::ErrorOr<Status> status(const Twine &Path) override { 375 return FS->status(Path); 448 /// status (an [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | FileSystem.h | 394 /// @param status A file_status previously returned from stat. 395 /// @returns True if the file represented by status exists, false if it does 397 bool exists(file_status status); 460 /// @brief Does status represent a directory? 462 /// @param status A file_status previously returned from status. 463 /// @returns status.type() == file_type::directory_file. 464 bool is_directory(file_status status); 482 /// @brief Does status represent a regular file? 484 /// @param status [all...] |
/third_party/vk-gl-cts/framework/delibs/deutil/ |
H A D | deProcess.c | 271 /* Set status pipe to close on exec(). That way parent will know that exec() succeeded. */ in deProcess_start() 300 /* Check status. */ in deProcess_start() 375 int status = 0; in deProcess_isRunning() local 377 if (waitpid(process->pid, &status, WNOHANG) == 0) in deProcess_isRunning() 378 return DE_TRUE; /* No status available. */ in deProcess_isRunning() 380 if (WIFEXITED(status) || WIFSIGNALED(status)) in deProcess_isRunning() 395 int status = 0; in deProcess_waitForFinish() local 405 while ((waitResult = waitpid(process->pid, &status, 0)) != process->pid) in deProcess_waitForFinish() 414 if (!WIFEXITED(status) in deProcess_waitForFinish() [all...] |
/drivers/hdf_core/framework/model/input/driver/touchscreen/ |
H A D | touch_ft6336.c | 75 frame->fingers[i].status = (int)buf[FT_EVENT_POS + FT_POINT_SIZE * i] >> SIX_BIT_OFFSET; in ParsePointData() 77 frame->definedEvent = frame->fingers[i].status; in ParsePointData() 79 if ((frame->fingers[i].status == TOUCH_DOWN || frame->fingers[i].status == TOUCH_CONTACT) && (pointNum == 0)) { in ParsePointData()
|
/drivers/hdf_core/framework/tools/hdi-gen/test/unittest/ |
H A D | unit_test.py | 115 status, _ = exec_command(self.command)
116 if status == 0 and compare_target_files(self.output_dir, self.target_dir):
122 status, _ = exec_command(self.command)
128 if status != 0 and expected_fail_output == _:
|
/drivers/peripheral/audio/test/sample/ |
H A D | framework_event.c | 287 "@@@@@ status : %d\n" in AudioUsbPnpOnSvcStatusReceived() 290 svcStatus->serviceName, svcStatus->deviceClass, svcStatus->status, svcStatus->info); in AudioUsbPnpOnSvcStatusReceived() 337 int32_t status = g_servmgr->RegisterServiceStatusListener(g_servmgr, g_listener, DEVICE_CLASS_AUDIO); in main() local 338 if (status != HDF_SUCCESS) { in main() 339 AUDIO_FUNC_LOGE("RegisterServiceStatusListener fail! ret = %d.\n", status); in main()
|
/drivers/peripheral/camera/test/common/v1_2/include/ |
H A D | hdi_common_v1_2.h | 99 int32_t OnCameraStatus(const std::string& cameraId, CameraStatus status) override;
100 int32_t OnFlashlightStatus(const std::string& cameraId, FlashlightStatus status) override;
101 int32_t OnFlashlightStatus_V1_2(FlashlightStatus status) override;
119 int32_t OnStatusChanged(OHOS::HDI::Camera::V1_2::SessionStatus status) override;
|
/drivers/peripheral/camera/test/mpi/src/ |
H A D | hdi_callback_test.cpp | 73 Test_->status = true;
in HWTEST_F() 74 Test_->rc = Test_->service->SetFlashlight(Test_->cameraIds.front(), Test_->status);
in HWTEST_F() 76 Test_->status = false;
in HWTEST_F() 77 Test_->rc = Test_->service->SetFlashlight(Test_->cameraIds.front(), Test_->status);
in HWTEST_F()
|
/drivers/peripheral/camera/vdi_base/v4l2/src/offline_stream_operator/ |
H A D | offline_stream.cpp | 142 CameraBufferStatus status = buffer->GetBufferStatus(); in ReturnBuffer() local 143 if (status != CAMERA_BUFFER_STATUS_OK) { in ReturnBuffer() 144 if (status != CAMERA_BUFFER_STATUS_DROP) { in ReturnBuffer() 147 request->GetOwnerCount(), static_cast<VdiStreamError>(status)); in ReturnBuffer() 162 CAMERA_LOGI("offline stream [id:%{public}d] dequeue buffer index:%{public}d, status:%{public}d", in ReturnBuffer()
|
/drivers/peripheral/sensor/chipset/accel/ |
H A D | accel_bmi160.c | 28 uint8_t status = 0; in ReadBmi160RawData() local 43 int32_t ret = ReadSensor(&data->busCfg, BMI160_STATUS_ADDR, &status, sizeof(uint8_t)); in ReadBmi160RawData() 44 if (!(status & BMI160_ACCEL_DATA_READY_MASK) || (ret != HDF_SUCCESS)) { in ReadBmi160RawData() 45 HDF_LOGE("%s: data status [%hhu] ret [%d]", __func__, status, ret); in ReadBmi160RawData()
|
/drivers/peripheral/sensor/chipset/magnetic/ |
H A D | magnetic_lsm303.c | 28 uint8_t status = 0; in ReadLsm303RawData() local 43 int32_t ret = ReadSensor(&data->busCfg, LSM303_STATUS_ADDR, &status, sizeof(uint8_t)); in ReadLsm303RawData() 44 if (!(status & LSM303_DATA_READY_MASK) || (ret != HDF_SUCCESS)) { in ReadLsm303RawData() 45 HDF_LOGE("%s: data status [%u] ret [%d]", __func__, status, ret); in ReadLsm303RawData()
|
/foundation/ability/idl_tool/test/sa_test/ |
H A D | test_base.py | 113 status, result = exec_command(self.command) 115 if status != 0: 171 status, result = exec_command(self.command) 176 if status != 0 and self.hdi_gen_fail_check_ignore_line(result, expected_fail_output):
|
/foundation/ai/intelligent_voice_framework/frameworks/js/napi/ |
H A D | enroll_intell_voice_engine_callback_napi.cpp | 30 napi_status status = napi_create_object(env, &out); in GetCallBackInfoNapiValue() local 31 if (status != napi_ok || out == nullptr) { in GetCallBackInfoNapiValue() 32 INTELL_VOICE_LOG_ERROR("failed to create js callbackInfo, error: %{public}d", status); in GetCallBackInfoNapiValue() 164 void EnrollIntellVoiceEngineCallbackNapi::UvWorkCallBack(uv_work_t *work, int status) in UvWorkCallBack() argument
|
/foundation/ability/ability_runtime/frameworks/native/ability/native/continuation/remote_register_service/ |
H A D | continuation_register_manager_proxy.cpp | 70 int token, const std::string &deviceId, int status) in ContinuationRequestUpdateConnectStatus() 74 status_ = status; in ContinuationRequestUpdateConnectStatus() 194 * @param status Indicates the connection state to update, which can be {@link DeviceConnectState#FAILURE}, 201 int token, const std::string &deviceId, int status, const std::shared_ptr<RequestCallback> &requestCallback) in UpdateConnectStatus() 209 new (std::nothrow) ContinuationRequestUpdateConnectStatus(token, deviceId, status); in UpdateConnectStatus() 69 ContinuationRequestUpdateConnectStatus( int token, const std::string &deviceId, int status) ContinuationRequestUpdateConnectStatus() argument 200 UpdateConnectStatus( int token, const std::string &deviceId, int status, const std::shared_ptr<RequestCallback> &requestCallback) UpdateConnectStatus() argument
|
/foundation/ability/ability_runtime/frameworks/js/napi/inner/napi_common/ |
H A D | napi_common_util.h | 228 void CompleteAsyncCallbackWork(napi_env env, napi_status status, void *data); 236 void CompleteAsyncVoidCallbackWork(napi_env env, napi_status status, void *data); 244 void CompletePromiseCallbackWork(napi_env env, napi_status status, void *data); 252 void CompletePromiseVoidCallbackWork(napi_env env, napi_status status, void *data);
|
/foundation/ability/ability_runtime/frameworks/js/napi/app/js_app_manager/ |
H A D | js_ability_first_frame_state_observer.cpp | 35 [self, abilityFirstFrameStateData](napi_env env, NapiAsyncTask &task, int32_t status) { in OnAbilityFirstFrameState() 73 napi_status status = napi_call_function(env_, value, method, argc, argv, &callResult); in CallJsFunction() local 74 if (status != napi_ok) { in CallJsFunction() 75 TAG_LOGE(AAFwkTag::ABILITYMGR, "call js func failed %{public}d", status); in CallJsFunction()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/drag_controller/ |
H A D | drag_preview.h | 142 napi_status status = napi_wrap( in NapiSerializer() local 151 if (status != napi_ok) { in NapiSerializer() 190 napi_status status = napi_get_value_double(env, durationNApi, &durationValue); in ParseAnimationInfo() local 191 NAPI_ASSERT(env, status == napi_ok, "Parse duration failed"); in ParseAnimationInfo()
|
/foundation/bundlemanager/app_domain_verify/services/src/manager/core/ |
H A D | app_domain_verify_data_mgr.cpp | 53 APP_DOMAIN_VERIFY_HILOGD(APP_DOMAIN_VERIFY_MGR_MODULE_SERVICE, "get verify status fail, verify result can't find"); in GetVerifyStatus() 65 auto [status, verifyTime, cnt] = it.second; in VerifyResultInfoToDB() 69 .status = status, in VerifyResultInfoToDB() 90 std::make_pair(it.domain, std::make_tuple(InnerVerifyStatus(it.status), it.verifyTs, it.count))); in DBToVerifyResultInfo()
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_host_observer_proxy.cpp | 21 void BluetoothHostObserverProxy::OnStateChanged(int32_t transport, int32_t status) in OnStateChanged() argument 35 if (!data.WriteInt32(status)) { in OnStateChanged() 36 HILOGE("BluetoothHostObserverProxy::OnStateChanged status error"); in OnStateChanged() 51 void BluetoothHostObserverProxy::OnDiscoveryStateChanged(int32_t status) in OnDiscoveryStateChanged() argument 60 if (!data.WriteInt32(status)) { in OnDiscoveryStateChanged() 61 HILOGE("BluetoothHostObserverProxy::OnDiscoveryStateChanged status error"); in OnDiscoveryStateChanged() 96 HILOGE("BluetoothHostObserverProxy::OnDiscoveryResult status error"); in OnDiscoveryResult() 192 HILOGE("BluetoothHostObserverProxy::OnScanModeChanged status error"); in OnScanModeChanged() 215 HILOGE("BluetoothHostObserverProxy::OnDeviceNameChanged status error"); in OnDeviceNameChanged() 238 HILOGE("BluetoothHostObserverProxy::OnDeviceAddrChanged status erro in OnDeviceAddrChanged() [all...] |