Home
last modified time | relevance | path

Searched refs:code (Results 301 - 325 of 8379) sorted by relevance

1...<<11121314151617181920>>...336

/third_party/node/deps/openssl/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl21 # The code does not present direct interest to OpenSSL, because of low
23 # useless one I must say, because 30% or 88 bytes larger ARMv4 code
26 # by over 40%, while code increases by only 10% or 32 bytes. But once
73 $code.=$inline?&common():"\tbl .Lcommon\n";
74 $code.=<<___;
80 $code.=$inline?&rotate():"\tbl .Lrotate\n";
84 $code.=$inline?&common():"\tbl .Lcommon\n";
85 $code.=<<___;
90 $code.=$inline?&rotate():"\tbl .Lrotate\n";
94 $code
[all...]
/third_party/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl21 # The code does not present direct interest to OpenSSL, because of low
23 # useless one I must say, because 30% or 88 bytes larger ARMv4 code
26 # by over 40%, while code increases by only 10% or 32 bytes. But once
73 $code.=$inline?&common():"\tbl .Lcommon\n";
74 $code.=<<___;
80 $code.=$inline?&rotate():"\tbl .Lrotate\n";
84 $code.=$inline?&common():"\tbl .Lcommon\n";
85 $code.=<<___;
90 $code.=$inline?&rotate():"\tbl .Lrotate\n";
94 $code
[all...]
/third_party/python/Lib/test/
H A Dtest_regrtest.py377 def create_test(self, name=None, code=None):
382 if code is None:
383 code = textwrap.dedent("""
400 fp.write(code)
534 msg = ("Command %s failed with exit code %s\n"
637 code = 'from test import autotest'
638 args = [*self.python_args, '-c', code,
706 code = textwrap.dedent("""
714 test_failing = self.create_test('failing', code=code)
[all...]
H A Dtest_atexit.py19 code = textwrap.dedent("""
28 res = script_helper.assert_python_ok("-c", code)
34 code = textwrap.dedent("""
46 res = script_helper.assert_python_ok("-c", code)
59 code = textwrap.dedent(r"""
66 ret = support.run_in_subinterp(code)
74 code = textwrap.dedent(r"""
81 ret = support.run_in_subinterp(code)
92 code = textwrap.dedent(r"""
99 ret = support.run_in_subinterp(code)
[all...]
/foundation/ability/ability_runtime/test/unittest/app_spawn_client_second_test/
H A Dapp_spawn_client_second_test.cpp149 startMsg.code = MSG_APP_SPAWN; in HWTEST_F()
152 int ret = AppSpawnReqMsgCreate(static_cast<AppSpawnMsgType>(startMsg.code), startMsg.procName.c_str(), &reqHandle); in HWTEST_F()
164 startMsg.code = MSG_APP_SPAWN; in HWTEST_F()
167 int ret = AppSpawnReqMsgCreate(static_cast<AppSpawnMsgType>(startMsg.code), startMsg.procName.c_str(), &reqHandle); in HWTEST_F()
178 startMsg.code = MSG_APP_SPAWN; in HWTEST_F()
181 int ret = AppSpawnReqMsgCreate(static_cast<AppSpawnMsgType>(startMsg.code), startMsg.procName.c_str(), &reqHandle); in HWTEST_F()
193 startMsg.code = MSG_APP_SPAWN; in HWTEST_F()
196 int ret = AppSpawnReqMsgCreate(static_cast<AppSpawnMsgType>(startMsg.code), startMsg.procName.c_str(), &reqHandle); in HWTEST_F()
207 startMsg.code = MSG_APP_SPAWN; in HWTEST_F()
210 int ret = AppSpawnReqMsgCreate(static_cast<AppSpawnMsgType>(startMsg.code), startMs in HWTEST_F()
[all...]
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/entry/src/ohosTest/js/test/
H A DRelationalStoreDistributedJsunit.test.js131 console.info(TAG + "setDistributed002 failed"+ `, error code is ${err.code}, message is ${err.message}`);
132 expect(err.code).assertEqual(ERRCODE);
153 console.info(TAG + "setDistributed003 failed"+ `, error code is ${err.code}, message is ${err.message}`);
154 expect(err.code).assertEqual(ERRCODE);
175 console.info(TAG + "setDistributed004 failed"+ `, error code is ${err.code}, message is ${err.message}`);
176 expect(err.code).assertEqual(ERRCODE);
378 console.info(TAG + "err.code
[all...]
/foundation/multimedia/drm_framework/frameworks/js/drm_napi/
H A Ddrm_error_code.cpp24 napi_value code = nullptr; in ThrowError() local
28 napi_create_int32(env, napiCode, &code); in ThrowError()
29 napi_set_named_property(env, result, "code", code); in ThrowError()
34 void NapiDrmError::ThrowError(napi_env env, int32_t code) in ThrowError() argument
36 std::string messageValue = GetMessageByCode(code); in ThrowError()
37 napi_throw_error(env, (std::to_string(code)).c_str(), messageValue.c_str()); in ThrowError()
40 std::string NapiDrmError::GetMessageByCode(int32_t &code) in GetMessageByCode() argument
43 switch (code) { in GetMessageByCode()
61 code in GetMessageByCode()
[all...]
/foundation/communication/wifi/wifi/frameworks/native/src/
H A Dwifi_scan_callback_stub.cpp33 uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in OnRemoteRequest()
35 WIFI_LOGD("OnRemoteRequest code:%{public}u!", code); in OnRemoteRequest()
38 WIFI_LOGE("Scan callback stub token verification error: %{public}d", code); in OnRemoteRequest()
48 switch (code) { in OnRemoteRequest()
50 WIFI_LOGD("OnRemoteRequest code:%{public}u line:%{public}d!", code, __LINE__); in OnRemoteRequest()
51 ret = RemoteOnWifiScanStateChanged(code, data, reply); in OnRemoteRequest()
55 ret = IPCObjectStub::OnRemoteRequest(code, data, reply, option); in OnRemoteRequest()
91 int WifiScanCallbackStub::RemoteOnWifiScanStateChanged(uint32_t code, MessageParce argument
32 OnRemoteRequest( uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) OnRemoteRequest() argument
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_ap_sa/
H A Dwifi_hotspot_mgr_stub.cpp26 funcHandleMap_[static_cast<uint32_t>(HotspotInterfaceCode::WIFI_MGR_GET_HOTSPOT_SERVICE)] = [this](uint32_t code, in WifiHotspotMgrStub()
28 MessageOption &option) { return GetWifiRemoteInner(code, data, reply, option); }; in WifiHotspotMgrStub()
35 uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in GetWifiRemoteInner()
44 uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in OnRemoteRequest()
47 WIFI_LOGE("Hotspot stub token verification error: %{public}d", code); in OnRemoteRequest()
50 FuncHandleMap::iterator iter = funcHandleMap_.find(code); in OnRemoteRequest()
52 WIFI_LOGE("not find function to deal, code %{public}u", code); in OnRemoteRequest()
53 return IPCObjectStub::OnRemoteRequest(code, data, reply, option); in OnRemoteRequest()
55 (iter->second)(code, dat in OnRemoteRequest()
34 GetWifiRemoteInner( uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) GetWifiRemoteInner() argument
43 OnRemoteRequest( uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) OnRemoteRequest() argument
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_scan_sa/
H A Dwifi_scan_mgr_stub.cpp26 funcHandleMap_[static_cast<uint32_t>(ScanInterfaceCode::WIFI_MGR_GET_SCAN_SERVICE)] = [this](uint32_t code, in WifiScanMgrStub()
28 MessageOption &option) { return GetWifiRemoteInner(code, data, reply, option); }; in WifiScanMgrStub()
35 uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in GetWifiRemoteInner()
44 uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in OnRemoteRequest()
47 WIFI_LOGE("device stub token verification error: %{public}d", code); in OnRemoteRequest()
50 FuncHandleMap::iterator iter = funcHandleMap_.find(code); in OnRemoteRequest()
52 WIFI_LOGE("not find function to deal, code %{public}u", code); in OnRemoteRequest()
53 return IPCObjectStub::OnRemoteRequest(code, data, reply, option); in OnRemoteRequest()
55 (iter->second)(code, dat in OnRemoteRequest()
34 GetWifiRemoteInner( uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) GetWifiRemoteInner() argument
43 OnRemoteRequest( uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) OnRemoteRequest() argument
[all...]
/foundation/multimodalinput/input/service/connect_manager/test/
H A Dmultimodal_input_connect_stub_test.cpp332 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::ALLOC_SOCKET_FD); in HWTEST_F() local
334 int32_t ret = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
337 code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::ADD_INPUT_EVENT_FILTER); in HWTEST_F()
339 ret = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
342 code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::RMV_INPUT_EVENT_FILTER); in HWTEST_F()
344 ret = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
347 code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_MOUSE_SCROLL_ROWS); in HWTEST_F()
349 ret = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
352 code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::GET_MOUSE_SCROLL_ROWS); in HWTEST_F()
354 ret = stub->OnRemoteRequest(code, dat in HWTEST_F()
386 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_MOUSE_ICON); HWTEST_F() local
440 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::RMV_INPUT_EVENT_OBSERVER); HWTEST_F() local
494 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::GET_DEVICE_IDS); HWTEST_F() local
548 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SUBSCRIBE_KEY_EVENT); HWTEST_F() local
602 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::MOVE_MOUSE); HWTEST_F() local
656 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_FUNCTION_KEY_STATE); HWTEST_F() local
710 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_TP_SCROLL_SWITCH); HWTEST_F() local
764 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_KEYBOARD_REPEAT_DELAY); HWTEST_F() local
818 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_TP_ROTATE_SWITCH); HWTEST_F() local
872 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::NATIVE_AUTHORIZE); HWTEST_F() local
920 uint32_t code = static_cast<uint32_t>(MultimodalinputConnectInterfaceCode::SET_TOUCHPAD_SCROLL_ROWS); HWTEST_F() local
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/common/
H A Dnapi_business_error.cpp33 napi_value code = nullptr; in GenerateBusinessError() local
35 code = NapiValue::CreateInt32(env, errCode).val_; in GenerateBusinessError()
38 napi_set_named_property(env, businessError, ZLIB_TAG_ERR_CODE.c_str(), code); in GenerateBusinessError()
109 int32_t code = 0; in GetNapiErr() local
112 code = errCodeTable.at(errCode).first; in GetNapiErr()
115 code = errCodeTable.at(ENOSTR).first; in GetNapiErr()
118 return GenerateBusinessError(env, code, msg); in GetNapiErr()
136 int32_t code = 0; in ThrowErr() local
140 code = errCodeTable.at(errno_).first; in ThrowErr()
143 code in ThrowErr()
157 ThrowErr(napi_env env, int32_t code) ThrowErr() argument
[all...]
/foundation/ability/form_fwk/test/unittest/fms_provider_connect_stub_test/
H A Dfms_provider_connect_stub_test.cpp58 uint32_t code = 1; in HWTEST_F() local
64 auto result = formAbility.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
79 uint32_t code = 1; in HWTEST_F() local
85 auto result = formAbility.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
100 uint32_t code = 2; in HWTEST_F() local
106 auto result = formAbility.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
121 uint32_t code = 3; in HWTEST_F() local
127 auto result = formAbility.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
143 uint32_t code = IAbilityConnection::ON_ABILITY_CONNECT_DONE; in HWTEST_F() local
150 auto result = formAbility.OnRemoteRequest(code, dat in HWTEST_F()
165 uint32_t code = IAbilityConnection::ON_ABILITY_DISCONNECT_DONE; HWTEST_F() local
187 uint32_t code = 3; HWTEST_F() local
[all...]
/third_party/node/deps/npm/node_modules/chalk/source/vendor/ansi-styles/
H A Dindex.js3 const wrapAnsi16 = (offset = 0) => code => `\u001B[${code + offset}m`;
5 const wrapAnsi256 = (offset = 0) => code => `\u001B[${38 + offset};5;${code}m`;
164 value(code) {
165 if (code < 8) {
166 return 30 + code;
169 if (code < 16) {
170 return 90 + (code - 8);
177 if (code >
[all...]
/third_party/node/deps/npm/node_modules/ansi-styles/
H A Dindex.js3 const wrapAnsi16 = (offset = 0) => code => `\u001B[${code + offset}m`;
5 const wrapAnsi256 = (offset = 0) => code => `\u001B[${38 + offset};5;${code}m`;
164 value: code => {
165 if (code < 8) {
166 return 30 + code;
169 if (code < 16) {
170 return 90 + (code - 8);
177 if (code >
[all...]
/foundation/multimedia/av_session/services/session/server/test/
H A Davcontroller_callback_stub_test.cpp129 uint32_t code = 0; in HWTEST_F() local
134 int ret = avControllerCallbackStub.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
147 uint32_t code = 10; in HWTEST_F() local
154 int ret = avControllerCallbackStub.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
167 uint32_t code = 11; in HWTEST_F() local
174 int ret = avControllerCallbackStub.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
187 uint32_t code = 1; in HWTEST_F() local
194 int ret = avControllerCallbackStub.OnRemoteRequest(code, data, reply, option); in HWTEST_F()
207 uint32_t code = 1; in HWTEST_F() local
212 int ret = avControllerCallbackStub.OnRemoteRequest(code, dat in HWTEST_F()
225 uint32_t code = 2; HWTEST_F() local
245 uint32_t code = 2; HWTEST_F() local
265 uint32_t code = 2; HWTEST_F() local
285 uint32_t code = 2; HWTEST_F() local
305 uint32_t code = 5; HWTEST_F() local
325 uint32_t code = 6; HWTEST_F() local
345 uint32_t code = 7; HWTEST_F() local
365 uint32_t code = 7; HWTEST_F() local
383 uint32_t code = 8; HWTEST_F() local
403 uint32_t code = 9; HWTEST_F() local
[all...]
/foundation/communication/dhcp/frameworks/native/src/
H A Ddhcp_server_callback_stub.h40 int OnRemoteRequest(uint32_t code, IpcIo *data);
43 virtual int OnRemoteRequest(uint32_t code, MessageParcel &data, MessageParcel &reply,
56 int RemoteOnServerStatusChanged(uint32_t code, IpcIo *data);
57 int RemoteOnServerLeasesChanged(uint32_t code, IpcIo *data);
58 int RemoteOnServerSerExitChanged(uint32_t code, IpcIo *data);
59 int RemoteOnOnServerSuccess(uint32_t code, IpcIo *data);
62 int RemoteOnServerStatusChanged(uint32_t code, MessageParcel &data, MessageParcel &reply);
63 int RemoteOnServerLeasesChanged(uint32_t code, MessageParcel &data, MessageParcel &reply);
64 int RemoteOnServerSerExitChanged(uint32_t code, MessageParcel &data, MessageParcel &reply);
65 int RemoteOnServerSuccess(uint32_t code, MessageParce
[all...]
/third_party/node/test/parallel/
H A Dtest-dgram-send-bad-arguments.js36 code: 'ERR_INVALID_ARG_TYPE',
48 code: 'ERR_SOCKET_DGRAM_IS_CONNECTED',
57 code: 'ERR_SOCKET_DGRAM_IS_CONNECTED',
66 code: 'ERR_SOCKET_DGRAM_IS_CONNECTED',
75 code: 'ERR_SOCKET_DGRAM_IS_CONNECTED',
97 code: 'ERR_BUFFER_OUT_OF_BOUNDS',
106 code: 'ERR_BUFFER_OUT_OF_BOUNDS',
115 code: 'ERR_BUFFER_OUT_OF_BOUNDS',
131 code: 'ERR_INVALID_ARG_TYPE',
142 code
[all...]
H A Dtest-process-emitwarning.js17 if (warning.code) assert.strictEqual(warning.code, testCode);
26 this.code = testCode;
38 [testMsg, { type: testType, code: testCode }],
39 [testMsg, { type: testType, code: testCode, detail: testDetail }],
42 [testMsg, { type: testType, code: testCode, detail: true }],
43 [testMsg, { type: testType, code: testCode, detail: [] }],
44 [testMsg, { type: testType, code: testCode, detail: null }],
45 [testMsg, { type: testType, code: testCode, detail: 1 }],
79 { code
[all...]
/third_party/libinput/test/
H A Dlitest-device-apple-appletouch.c30 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
31 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
32 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
33 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
34 { .type = -1, .code = -1 },
38 { .type = EV_ABS, .code = ABS_X, .value = LITEST_AUTO_ASSIGN },
39 { .type = EV_ABS, .code = ABS_Y, .value = LITEST_AUTO_ASSIGN },
40 { .type = EV_ABS, .code = ABS_PRESSURE, .value = LITEST_AUTO_ASSIGN },
41 { .type = EV_SYN, .code = SYN_REPORT, .value = 0 },
42 { .type = -1, .code
[all...]
/foundation/communication/ipc/ipc/native/src/core/source/
H A Dipc_object_stub.cpp119 int IPCObjectStub::OnRemoteRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in OnRemoteRequest() argument
122 switch (code) { in OnRemoteRequest()
139 ZLOGW(LABEL, "unknown code:%{public}u desc:%{public}s time:%{public}" PRIu64, code, in OnRemoteRequest()
146 int IPCObjectStub::OnRemoteDump(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) in OnRemoteDump() argument
162 int IPCObjectStub::DBinderPingTransaction(uint32_t code, in DBinderPingTransaction() argument
171 int IPCObjectStub::DBinderSearchDescriptor(uint32_t code, in DBinderSearchDescriptor() argument
182 int IPCObjectStub::DBinderSearchRefCount(uint32_t code, in DBinderSearchRefCount() argument
196 int IPCObjectStub::DBinderDumpTransaction(uint32_t code, in DBinderDumpTransaction() argument
204 return OnRemoteDump(code, dat in DBinderDumpTransaction()
208 DBinderInvokeListenThread(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderInvokeListenThread() argument
220 DBinderIncRefsTransaction(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderIncRefsTransaction() argument
247 DBinderDecRefsTransaction(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderDecRefsTransaction() argument
276 DBinderAddCommAuth(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderAddCommAuth() argument
288 DBinderGetSessionName(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderGetSessionName() argument
307 DBinderGetGrantedSessionName(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderGetGrantedSessionName() argument
317 DBinderGetSessionNameForPidUid(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderGetSessionNameForPidUid() argument
327 DBinderGetPidUid(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderGetPidUid() argument
336 DBinderRemoveSessionName(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) DBinderRemoveSessionName() argument
347 SendRequestInner(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) SendRequestInner() argument
380 SendRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) SendRequest() argument
491 ProcessProto(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) ProcessProto() argument
509 InvokerThread(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) InvokerThread() argument
600 AddAuthInfo(MessageParcel &data, MessageParcel &reply, uint32_t code) AddAuthInfo() argument
660 GetGrantedSessionName(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) GetGrantedSessionName() argument
679 GetSessionNameForPidUid(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) GetSessionNameForPidUid() argument
[all...]
/foundation/deviceprofile/device_info_manager/services/core/test/unittest/
H A Ddistributed_device_profile_stub_new_test.cpp264 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::ON_TRUST_DEVICE_PROFILE_ADD); in HWTEST_F() local
268 int32_t ret = ProfileStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
280 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::PUT_ACL_PROFILE); in HWTEST_F() local
284 int32_t ret = ProfileStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
566 uint32_t code = 1000; in HWTEST_F() local
570 int32_t ret = ProfileStub_->NotifyAclEventInner(code, data, reply, option); in HWTEST_F()
582 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::PUT_ACL_PROFILE); in HWTEST_F() local
586 int32_t ret = ProfileStub_->NotifyAclEventInner(code, data, reply, option); in HWTEST_F()
598 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::UPDATE_ACL_PROFILE); in HWTEST_F() local
602 int32_t ret = ProfileStub_->NotifyAclEventInner(code, dat in HWTEST_F()
614 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_TRUST_DEVICE_PROFILE); HWTEST_F() local
630 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_ALL_TRUST_DEVICE_PROFILE); HWTEST_F() local
646 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_ACL_PROFILE); HWTEST_F() local
662 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_ALL_ACL_PROFILE); HWTEST_F() local
678 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::DELETE_ACL_PROFILE); HWTEST_F() local
694 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::SUBSCRIBE_DEVICE_PROFILE); HWTEST_F() local
710 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::UNSUBSCRIBE_DEVICE_PROFILE); HWTEST_F() local
726 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::SEND_SUBSCRIBE_INFOS); HWTEST_F() local
742 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::PUT_SERVICE_PROFILE); HWTEST_F() local
758 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::PUT_SERVICE_PROFILE_BATCH); HWTEST_F() local
774 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::PUT_CHAR_PROFILE); HWTEST_F() local
790 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::PUT_CHAR_PROFILE_BATCH); HWTEST_F() local
806 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_DEVICE_PROFILE_NEW); HWTEST_F() local
822 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_SERVICE_PROFILE); HWTEST_F() local
838 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::GET_CHAR_PROFILE); HWTEST_F() local
854 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::DEL_SERVICE_PROFILE); HWTEST_F() local
870 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::DEL_CHAR_PROFILE); HWTEST_F() local
886 uint32_t code = static_cast<uint32_t>(DPInterfaceCode::SYNC_DEVICE_PROFILE_NEW); HWTEST_F() local
902 uint32_t code = 1000; HWTEST_F() local
[all...]
/foundation/filemanagement/dfs_service/test/fuzztest/cloudsyncservicestub_fuzzer/
H A Dcloudsyncservicestub_fuzzer.cpp115 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_CHANGE_APP_SWITCH); in HandleChangeAppSwitchFuzzTest() local
119 cloudSyncServiceStubStr->OnRemoteRequest(code, datas, reply, option); in HandleChangeAppSwitchFuzzTest()
133 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_CLEAN); in HandleCleanFuzzTest() local
137 cloudSyncServiceStubStr->OnRemoteRequest(code, datas, reply, option); in HandleCleanFuzzTest()
156 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_DELETE_ASSET); in HandleDeleteAssetFuzzTest() local
160 cloudSyncServiceStubStr->OnRemoteRequest(code, datas, reply, option); in HandleDeleteAssetFuzzTest()
176 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_DISABLE_CLOUD); in HandleDisableCloudFuzzTest() local
180 cloudSyncServiceStubStr->OnRemoteRequest(code, datas, reply, option); in HandleDisableCloudFuzzTest()
206 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_DOWNLOAD_FILE); in HandleDownloadFileFuzzTest() local
210 cloudSyncServiceStubStr->OnRemoteRequest(code, data in HandleDownloadFileFuzzTest()
240 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_ENABLE_CLOUD); HandleEnableCloudFuzzTest() local
263 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_NOTIFY_DATA_CHANGE); HandleNotifyDataChangeFuzzTest() local
288 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_REGISTER_CALLBACK); HandleRegisterCallbackInnerFuzzTest() local
311 uint32_t code = HandleRegisterDownloadFileCallbackFuzzTest() local
332 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_START_DOWNLOAD_FILE); HandleStartDownloadFileFuzzTest() local
354 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_START_SYNC); HandleStartSyncInnerFuzzTest() local
374 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_STOP_DOWNLOAD_FILE); HandleStopDownloadFileFuzzTest() local
392 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_STOP_SYNC); HandleStopSyncInnerFuzzTest() local
412 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_UNREGISTER_CALLBACK); HandleUnRegisterCallbackInnerFuzzTest() local
430 uint32_t code = HandleUnRegisterDownloadFileCallbackFuzzTest() local
454 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_UPLOAD_ASSET); HandleUploadAssetFuzzTest() local
477 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_TRIGGER_SYNC); HandleTriggerSyncInnerFuzzTest() local
503 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_NOTIFY_EVENT_CHANGE); HandleNotifyEventChangeFuzzTest() local
528 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_START_FILE_CACHE); HandleStartFileCacheFuzzTest() local
566 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_DOWNLOAD_FILES); HandleDownloadFilesFuzzTest() local
603 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_DOWNLOAD_ASSET); HandleDownloadAssetFuzzTest() local
626 uint32_t code = HandleRegisterDownloadAssetCallbackFuzzTest() local
647 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_GET_SYNC_TIME); HandleGetSyncTimeFuzzTest() local
667 uint32_t code = static_cast<uint32_t>(CloudFileSyncServiceInterfaceCode::SERVICE_CMD_CLEAN_CACHE); HandleCleanCacheFuzzTest() local
[all...]
/third_party/node/deps/v8/src/objects/
H A Dcode.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "src/objects/code.h"
20 #include "src/objects/code-kind.h"
27 #include "src/codegen/code-comments.h"
41 HeapObject code) { in EmbeddedDataWithMaybeRemappedEmbeddedBuiltins()
45 return EmbeddedData::FromBlob(GetIsolateFromWritableObject(code)); in EmbeddedDataWithMaybeRemappedEmbeddedBuiltins()
65 Address OffHeapInstructionStart(HeapObject code, Builtin builtin) { in OffHeapInstructionStart() argument
68 EmbeddedData d = EmbeddedDataWithMaybeRemappedEmbeddedBuiltins(code); in OffHeapInstructionStart()
72 Address OffHeapInstructionEnd(HeapObject code, Builtin builtin) { in OffHeapInstructionEnd() argument
73 EmbeddedData d = EmbeddedDataWithMaybeRemappedEmbeddedBuiltins(code); in OffHeapInstructionEnd()
40 EmbeddedDataWithMaybeRemappedEmbeddedBuiltins( HeapObject code) EmbeddedDataWithMaybeRemappedEmbeddedBuiltins() argument
78 OffHeapInstructionSize(HeapObject code, Builtin builtin) OffHeapInstructionSize() argument
83 OffHeapMetadataStart(HeapObject code, Builtin builtin) OffHeapMetadataStart() argument
88 OffHeapMetadataEnd(HeapObject code, Builtin builtin) OffHeapMetadataEnd() argument
93 OffHeapMetadataSize(HeapObject code, Builtin builtin) OffHeapMetadataSize() argument
98 OffHeapSafepointTableAddress(HeapObject code, Builtin builtin) OffHeapSafepointTableAddress() argument
103 OffHeapSafepointTableSize(HeapObject code, Builtin builtin) OffHeapSafepointTableSize() argument
108 OffHeapHandlerTableAddress(HeapObject code, Builtin builtin) OffHeapHandlerTableAddress() argument
113 OffHeapHandlerTableSize(HeapObject code, Builtin builtin) OffHeapHandlerTableSize() argument
118 OffHeapConstantPoolAddress(HeapObject code, Builtin builtin) OffHeapConstantPoolAddress() argument
123 OffHeapConstantPoolSize(HeapObject code, Builtin builtin) OffHeapConstantPoolSize() argument
128 OffHeapCodeCommentsAddress(HeapObject code, Builtin builtin) OffHeapCodeCommentsAddress() argument
133 OffHeapCodeCommentsSize(HeapObject code, Builtin builtin) OffHeapCodeCommentsSize() argument
138 OffHeapUnwindingInfoAddress(HeapObject code, Builtin builtin) OffHeapUnwindingInfoAddress() argument
143 OffHeapUnwindingInfoSize(HeapObject code, Builtin builtin) OffHeapUnwindingInfoSize() argument
202 Code code = FromCodeT(CodeT::cast(*p)); RelocateFromDesc() local
473 DisassembleCodeRange(Isolate* isolate, std::ostream& os, Code code, Address begin, size_t size, Address current_pc) DisassembleCodeRange() argument
752 InstallDependency(Isolate* isolate, Handle<Code> code, Handle<HeapObject> object, DependencyGroups groups) InstallDependency() argument
772 InsertWeakCode( Isolate* isolate, Handle<DependentCode> entries, DependencyGroups groups, Handle<Code> code) InsertWeakCode() argument
789 New(Isolate* isolate, DependencyGroups groups, Handle<Code> code) New() argument
[all...]
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/ipc_callbacks/
H A Dhgm_config_change_callback_stub_test.cpp59 * @tc.desc: Verify function OnRemoteRequest incorrect code and no data
67 auto code = -1; in HWTEST_F() local
69 int res = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
83 auto code = static_cast<uint32_t>(RSIHgmConfigChangeCallbackInterfaceCode::ON_HGM_CONFIG_CHANGED); in HWTEST_F() local
86 int res = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
92 * @tc.desc: Verify function OnRemoteRequest incorrect code and data present
100 auto code = -1; in HWTEST_F() local
103 int res = stub->OnRemoteRequest(code, data, reply, option); in HWTEST_F()
109 * @tc.desc: Verify function OnRemoteRequest code:ON_HGM_CONFIG_CHANGED
117 auto code in HWTEST_F() local
134 auto code = static_cast<uint32_t>(RSIHgmConfigChangeCallbackInterfaceCode::ON_HGM_REFRESH_RATE_MODE_CHANGED); HWTEST_F() local
151 auto code = static_cast<uint32_t>(RSIHgmConfigChangeCallbackInterfaceCode::ON_HGM_REFRESH_RATE_CHANGED); HWTEST_F() local
[all...]

Completed in 16 milliseconds

1...<<11121314151617181920>>...336