Home
last modified time | relevance | path

Searched refs:cause (Results 51 - 75 of 287) sorted by relevance

12345678910>>...12

/third_party/node/lib/internal/streams/
H A Dadd-abort-signal.js46 stream.destroy(new AbortError(undefined, { cause: signal.reason }));
49 stream[kControllerErrorFunction](new AbortError(undefined, { cause: signal.reason }));
/third_party/backends/backend/
H A Depsonds-cmd.c1008 char *cause = token + 3 + 4; /* OPN, PJ, PE, ERR, LTF, LOCK, DFED, DTCL, AUT, PERM */ in img_cb() local
1013 DBG(1, "%s: error on option %3.3s, cause %4.4s\n", in img_cb()
1014 __func__, option, cause); in img_cb()
1016 if (cause[0] == 'P' && cause[1] == 'J') in img_cb()
1019 if (cause[0] == 'P' && cause[1] == 'E') in img_cb()
1022 if (cause[0] == 'O' && cause[1] == 'P' && cause[ in img_cb()
[all...]
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_map_mse.cpp43 void OnConnectionStateChanged(const BluetoothRawAddress &device, int32_t state, int32_t cause) override
45 HILOGI("enter, device: %{public}s, state: %{public}s, cause: %{public}d",
46 GET_ENCRYPT_RAW_ADDR(device), GetProfileConnStateName(state).c_str(), cause);
47 observers_.ForEach([device, state, cause](std::shared_ptr<MapMseObserver> observer) {
49 observer->OnConnectionStateChanged(dev, state, cause);
H A Dbluetooth_pan.cpp42 ErrCode OnConnectionStateChanged(const BluetoothRawAddress &device, int32_t state, int32_t cause) override
44 HILOGI("enter, device: %{public}s, state: %{public}d, cause: %{public}d",
45 GET_ENCRYPT_RAW_ADDR(device), state, cause);
47 observers_.ForEach([remoteDevice, state, cause](std::shared_ptr<PanObserver> observer) {
48 observer->OnConnectionStateChanged(remoteDevice, state, cause);
H A Dbluetooth_avrcp_tg.cpp45 void OnConnectionStateChanged(const BluetoothRawAddress &addr, int32_t state, int32_t cause) override
47 HILOGD("enter, address: %{public}s, state: %{public}d, cause: %{public}d",
48 GET_ENCRYPT_RAW_ADDR(addr), state, cause);
50 impl_->OnConnectionStateChanged(device, static_cast<int>(state), cause);
80 void OnConnectionStateChanged(const BluetoothRemoteDevice &device, int state, int cause) in OnConnectionStateChanged()
82 HILOGI("enter, device: %{public}s, state: %{public}d, cause: %{public}d", in OnConnectionStateChanged()
83 GET_ENCRYPT_ADDR(device), state, cause); in OnConnectionStateChanged()
85 observers_.ForEach([device, state, cause](std::shared_ptr<IObserver> observer) { in OnConnectionStateChanged()
86 observer->OnConnectionStateChanged(device, state, cause); in OnConnectionStateChanged()
H A Dbluetooth_a2dp_snk.cpp76 void OnConnectionStateChanged(const RawAddress &device, int state, int cause) override
78 HILOGD("device: %{public}s, state: %{public}d, cause: %{public}d",
79 GET_ENCRYPT_RAW_ADDR(device), state, cause);
80 a2dpSink_.observers_.ForEach([device, state, cause](std::shared_ptr<A2dpSinkObserver> observer) {
81 observer->OnConnectionStateChanged(BluetoothRemoteDevice(device.GetAddress(), 0), state, cause);
/foundation/communication/nfc/services/include/
H A Dbt_connection_manager.h84 void OnPairStatusChanged(const Bluetooth::BluetoothRemoteDevice &device, int status, int cause) override;
105 void OnConnectionStateChanged(const Bluetooth::BluetoothRemoteDevice &device, int state, int cause) override;
114 int32_t state, int32_t cause) override;
127 void OnConnectionStateChanged(const Bluetooth::BluetoothRemoteDevice &device, int state, int cause) override;
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
H A Dimport.go26 "../cause"
102 return nil, cause.Wrap(err, "llvm-profdata errored")
123 return nil, cause.Wrap(err, "llvm-cov errored: %v", string(err.(*exec.ExitError).Stderr))
127 return nil, cause.Wrap(err, "Couldn't parse coverage json data")
134 return nil, cause.Wrap(err, "turbo-cov errored: %v", string(err.(*exec.ExitError).Stderr))
138 return nil, cause.Wrap(err, "Couldn't process turbo-cov output")
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_avrcp_tg_observer_stub.cpp64 int cause = data.ReadInt32(); in OnConnectionStateChangedInner() local
66 stub->OnConnectionStateChanged(*addr, state, cause); in OnConnectionStateChangedInner()
H A Dbluetooth_pbap_pse_observer_stub.cpp63 int32_t cause = data.ReadInt32(); in OnConnectionStateChangedInner() local
65 stub->OnConnectionStateChanged(*device, state, cause); in OnConnectionStateChangedInner()
H A Dbluetooth_map_mse_observer_stub.cpp63 int32_t cause = data.ReadInt32(); in OnConnectionStateChangedInner() local
64 stub->OnConnectionStateChanged(*device, state, cause); in OnConnectionStateChangedInner()
/foundation/filemanagement/storage_service/services/storage_daemon/include/utils/
H A Dhi_audit.h30 std::string cause; member
39 return "happenTime, packageName, isForeground, cause, isUserBehavior, operationType, operationScenario, " in TitleString()
45 return cause + ", " + std::to_string(isUserBehavior) + ", " + operationType + ", " + operationScenario + in ToString()
/third_party/node/lib/readline/
H A Dpromises.js40 new AbortError(undefined, { cause: options.signal.reason }));
45 reject(new AbortError(undefined, { cause: options.signal.reason }));
/third_party/node/test/fixtures/test-runner/
H A Drun_inspect.js36 assert.deepStrictEqual({ name: details.error.cause.name, code: details.error.cause.code }, expectedError);
/foundation/communication/bluetooth/frameworks/cj/connection/src/
H A Dbluetooth_connection_callback.cpp104 int status, int cause) in OnPairStatusChanged()
118 cBondStateParam.cause = cause; in OnPairStatusChanged()
103 OnPairStatusChanged(const BluetoothRemoteDevice &device, int status, int cause) OnPairStatusChanged() argument
/third_party/node/lib/internal/
H A Derror_serdes.js69 if (key === 'cause') {
169 if ('cause' in properties && 'value' in properties.cause) {
170 properties.cause.value = deserializeError(properties.cause.value);
/foundation/communication/nfc/services/src/tag/
H A Dbt_connection_manager.cpp784 int status, int cause) in OnPairStatusChanged()
786 (void)cause; // Unused parameter in OnPairStatusChanged()
838 int32_t state, int32_t cause) in OnConnectionStateChanged()
840 (void)cause; // Unused param in OnConnectionStateChanged()
847 int32_t state, int32_t cause) in OnConnectionStateChanged()
849 (void)cause; // Unused param in OnConnectionStateChanged()
856 int state, int cause) in OnConnectionStateChanged()
858 (void)cause; // Unused param in OnConnectionStateChanged()
783 OnPairStatusChanged(const Bluetooth::BluetoothRemoteDevice &device, int status, int cause) OnPairStatusChanged() argument
837 OnConnectionStateChanged(const Bluetooth::BluetoothRemoteDevice &device, int32_t state, int32_t cause) OnConnectionStateChanged() argument
846 OnConnectionStateChanged(const Bluetooth::BluetoothRemoteDevice &device, int32_t state, int32_t cause) OnConnectionStateChanged() argument
855 OnConnectionStateChanged(const Bluetooth::BluetoothRemoteDevice &device, int state, int cause) OnConnectionStateChanged() argument
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_ble_peripheral_observer_proxy.cpp64 const int32_t transport, const BluetoothRawAddress &device, int status, int cause) in OnPairStatusChanged()
87 if (!data.WriteInt32(cause)) { in OnPairStatusChanged()
88 HILOGE("[OnPairStatusChanged] fail: write cause failed"); in OnPairStatusChanged()
63 OnPairStatusChanged( const int32_t transport, const BluetoothRawAddress &device, int status, int cause) OnPairStatusChanged() argument
/foundation/filemanagement/app_file_service/utils/include/b_hiaudit/
H A Dhi_audit.h38 std::string cause; member
49 return "happenTime, packageName, isForeground, cause, isUserBehavior, operationType, operationScenario, " in TitleString()
55 return cause + ", " + std::to_string(isUserBehavior) + ", " + operationType + ", " + operationScenario + ", " + in ToString()
/third_party/python/Lib/idlelib/
H A Drun.py247 cause = exc.__cause__
248 if cause is not None and id(cause) not in seen:
249 print_exc(type(cause), cause, cause.__traceback__)
250 print("\nThe above exception was the direct cause "
/third_party/pulseaudio/src/pulsecore/
H A Dcard.c429 int pa_card_suspend(pa_card *c, bool suspend, pa_suspend_cause_t cause) { in pa_card_suspend() argument
437 pa_assert(cause != 0); in pa_card_suspend()
442 suspend_cause |= cause; in pa_card_suspend()
444 suspend_cause &= ~cause; in pa_card_suspend()
455 if ((r = pa_sink_suspend(sink, suspend, cause)) < 0) in pa_card_suspend()
462 if ((r = pa_source_suspend(source, suspend, cause)) < 0) in pa_card_suspend()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dmetadata.py487 If the raw value is invalid, :exc:`InvalidMetadata` is raised (with a cause
534 self, msg: str, cause: Optional[Exception] = None
539 exc.__cause__ = cause
556 f"{value!r} is invalid for {{field}}", cause=exc
568 f"{value!r} is invalid for {{field}}", cause=exc
629 f"{name!r} is invalid for {{field}}", cause=exc
639 f"{value!r} is invalid for {{field}}", cause=exc
651 raise self._invalid_metadata(f"{req!r} is invalid for {{field}}", cause=exc)
661 will cause :exc:`InvalidMetadata` to be raised (with a
/third_party/python/Lib/concurrent/futures/
H A Dprocess.py339 result_item, is_broken, cause = self.wait_result_broken_or_wakeup()
342 self.terminate_broken(cause)
414 cause = None
422 cause = format_exception(type(e), e, e.__traceback__)
430 return result_item, is_broken, cause
465 def terminate_broken(self, cause):
466 # Terminate the executor because it is in a broken state. The cause
484 if cause is not None:
486 f"\n'''\n{''.join(cause)}'''")
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetICU.java218 Throwable cause = e.getCause(); in getCharset()
220 icuCanonicalName + ": " + "Could not load " + className + ". Exception: " + cause); in getCharset()
221 e2.initCause(cause); in getCharset()
/third_party/node/lib/internal/crypto/
H A Dcfrg.js150 { name: 'OperationError', cause: err });
219 'Invalid keyData', { name: 'DataError', cause: err });
233 'Invalid keyData', { name: 'DataError', cause: err });

Completed in 16 milliseconds

12345678910>>...12