/third_party/node/lib/internal/streams/ |
H A D | add-abort-signal.js | 46 stream.destroy(new AbortError(undefined, { cause: signal.reason })); 49 stream[kControllerErrorFunction](new AbortError(undefined, { cause: signal.reason }));
|
/third_party/backends/backend/ |
H A D | epsonds-cmd.c | 1008 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 D | bluetooth_map_mse.cpp | 43 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 D | bluetooth_pan.cpp | 42 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 D | bluetooth_avrcp_tg.cpp | 45 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 D | bluetooth_a2dp_snk.cpp | 76 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 D | bt_connection_manager.h | 84 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 D | import.go | 26 "../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 D | bluetooth_avrcp_tg_observer_stub.cpp | 64 int cause = data.ReadInt32(); in OnConnectionStateChangedInner() local 66 stub->OnConnectionStateChanged(*addr, state, cause); in OnConnectionStateChangedInner()
|
H A D | bluetooth_pbap_pse_observer_stub.cpp | 63 int32_t cause = data.ReadInt32();
in OnConnectionStateChangedInner() local 65 stub->OnConnectionStateChanged(*device, state, cause);
in OnConnectionStateChangedInner()
|
H A D | bluetooth_map_mse_observer_stub.cpp | 63 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 D | hi_audit.h | 30 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 D | promises.js | 40 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 D | run_inspect.js | 36 assert.deepStrictEqual({ name: details.error.cause.name, code: details.error.cause.code }, expectedError);
|
/foundation/communication/bluetooth/frameworks/cj/connection/src/ |
H A D | bluetooth_connection_callback.cpp | 104 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 D | error_serdes.js | 69 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 D | bt_connection_manager.cpp | 784 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 D | bluetooth_ble_peripheral_observer_proxy.cpp | 64 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 D | hi_audit.h | 38 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 D | run.py | 247 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 D | card.c | 429 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 D | metadata.py | 487 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 D | process.py | 339 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 D | CharsetICU.java | 218 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 D | cfrg.js | 150 { name: 'OperationError', cause: err }); 219 'Invalid keyData', { name: 'DataError', cause: err }); 233 'Invalid keyData', { name: 'DataError', cause: err });
|