Home
last modified time | relevance | path

Searched refs:token (Results 1351 - 1375 of 3256) sorted by relevance

1...<<51525354555657585960>>...131

/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Drrm.c59 * @report: Neighbor report buffer, prefixed by a 1-byte dialog token
73 "RRM: Discarding neighbor report with token %d (expected %d)", in wpas_rrm_process_neighbor_rep()
86 /* skipping the first byte, which is only an id (dialog token) */ in wpas_rrm_process_neighbor_rep()
93 wpa_printf(MSG_DEBUG, "RRM: Notifying neighbor report (token = %d)", in wpas_rrm_process_neighbor_rep()
170 /* 3 = action category + action code + dialog token */ in wpas_rrm_send_neighbor_rep_request()
180 wpa_printf(MSG_DEBUG, "RRM: Neighbor report request (for %s), token=%d", in wpas_rrm_send_neighbor_rep_request()
199 * Measurement token; nonzero number that is unique among the in wpas_rrm_send_neighbor_rep_request()
233 * Measurement token; nonzero number that is unique among the in wpas_rrm_send_neighbor_rep_request()
281 static int wpas_rrm_report_elem(struct wpabuf **buf, u8 token, u8 mode, u8 type, in wpas_rrm_report_elem() argument
289 wpabuf_put_u8(*buf, token); in wpas_rrm_report_elem()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Drrm.c59 * @report: Neighbor report buffer, prefixed by a 1-byte dialog token
73 "RRM: Discarding neighbor report with token %d (expected %d)", in wpas_rrm_process_neighbor_rep()
86 /* skipping the first byte, which is only an id (dialog token) */ in wpas_rrm_process_neighbor_rep()
93 wpa_dbg(wpa_s, MSG_DEBUG, "RRM: Notifying neighbor report (token = %d)", in wpas_rrm_process_neighbor_rep()
176 /* 3 = action category + action code + dialog token */ in wpas_rrm_send_neighbor_rep_request()
187 "RRM: Neighbor report request (for %s), token=%d", in wpas_rrm_send_neighbor_rep_request()
190 wpa_printf(MSG_DEBUG, "RRM: Neighbor report request (for %s), token=%d", in wpas_rrm_send_neighbor_rep_request()
209 * Measurement token; nonzero number that is unique among the in wpas_rrm_send_neighbor_rep_request()
243 * Measurement token; nonzero number that is unique among the in wpas_rrm_send_neighbor_rep_request()
291 static int wpas_rrm_report_elem(struct wpabuf **buf, u8 token, u argument
[all...]
/foundation/ability/ability_runtime/test/unittest/appkit/ohos_application_first_test/
H A Dohos_application_first_test.cpp404 sptr<Notification::MockIRemoteObject> token = new (std::nothrow) Notification::MockIRemoteObject();
407 std::shared_ptr<AbilityLocalRecord> abilityRecord = std::make_shared<AbilityLocalRecord>(info, token, want, 0);
408 ohosApplication_->abilityRecordMgr_->abilityRecords_.emplace(token, abilityRecord);
561 sptr<Notification::MockIRemoteObject> token = new (std::nothrow) Notification::MockIRemoteObject();
562 ohosApplication_->CleanAbilityStage(token, abilityInfo, false);
570 * @tc.desc: Verify function CleanAbilityStage pointer token empty
576 sptr<Notification::MockIRemoteObject> token = nullptr;
577 ohosApplication_->CleanAbilityStage(token, abilityInfo, false);
578 EXPECT_TRUE(token == nullptr);
594 sptr<Notification::MockIRemoteObject> token
[all...]
/foundation/filemanagement/storage_service/services/storage_daemon/crypto/test/key_manager_test/
H A Dkey_manager_sup_test.cpp385 std::vector<uint8_t> token; in HWTEST_F() local
391 EXPECT_EQ(KeyManager::GetInstance()->UnlockEceSece(user, token, secret, ret), false); in HWTEST_F()
398 EXPECT_EQ(KeyManager::GetInstance()->UnlockEceSece(user, token, secret, ret), false); in HWTEST_F()
404 EXPECT_EQ(KeyManager::GetInstance()->UnlockEceSece(user, token, secret, ret), false); in HWTEST_F()
410 EXPECT_EQ(KeyManager::GetInstance()->UnlockEceSece(user, token, secret, ret), true); in HWTEST_F()
416 EXPECT_EQ(KeyManager::GetInstance()->UnlockEceSece(user, token, secret, ret), false); in HWTEST_F()
525 std::vector<uint8_t> token; in HWTEST_F() local
533 EXPECT_EQ(KeyManager::GetInstance()->UnlockUece(user, token, secret, ret), false); in HWTEST_F()
546 EXPECT_EQ(KeyManager::GetInstance()->UnlockUece(user, token, secret, ret), false); in HWTEST_F()
555 EXPECT_EQ(KeyManager::GetInstance()->UnlockUece(user, token, secre in HWTEST_F()
[all...]
/kernel/linux/linux-6.6/sound/soc/qcom/qdsp6/
H A Dq6apm.c508 int token; in graph_callback() local
518 token = hdr->token & APM_WRITE_TOKEN_MASK; in graph_callback()
521 phys = graph->rx_data.buf[token].phys; in graph_callback()
529 graph->cb(client_event, hdr->token, data->payload, graph->priv); in graph_callback()
541 if (hdr->token == SNDRV_PCM_STREAM_PLAYBACK) in graph_callback()
554 phys = graph->tx_data.buf[hdr->token].phys; in graph_callback()
562 graph->cb(client_event, hdr->token, data->payload, graph->priv); in graph_callback()
571 graph->cb(client_event, hdr->token, data->payload, graph->priv); in graph_callback()
578 if (hdr->token in graph_callback()
[all...]
/third_party/libcoap/tests/
H A Dtest_options.c469 /* CoAP PDU without token, options, or data */ in t_iterate_option1()
476 .token = teststr, in t_iterate_option1()
494 /* CoAP PDU with token but without options and data */ in t_iterate_option2()
502 .token = teststr, in t_iterate_option2()
520 /* CoAP PDU with token and options */ in t_iterate_option3()
529 .token = teststr, in t_iterate_option3()
562 /* CoAP PDU with token, options, and data */ in t_iterate_option4()
572 .token = teststr, in t_iterate_option4()
614 .token = teststr, in t_iterate_option5()
638 /* CoAP PDU with token, option in t_iterate_option6()
[all...]
/third_party/python/Lib/lib2to3/
H A Drefactor.py25 from .pgen2 import driver, tokenize, token namespace
117 ignore = frozenset({token.NEWLINE, tokenize.NL, token.COMMENT})
124 elif tp == token.STRING:
128 elif tp == token.NAME and value == "from":
130 if tp != token.NAME or value != "__future__":
133 if tp != token.NAME or value != "import":
136 if tp == token.OP and value == "(":
138 while tp == token.NAME:
141 if tp != token
[all...]
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/
H A Dform_extension.h49 * @param token the remote token.
54 const sptr<IRemoteObject> &token) override;
62 * @param token the remote token.
69 const sptr<IRemoteObject> &token) override;
/foundation/ability/form_fwk/interfaces/kits/native/include/
H A Dform_provider_caller.h37 * @brief Is the same caller token.
38 * @param callerToken Caller ability token.
77 * @param token Indicates the provider client token.
81 const sptr<IRemoteObject> &token);
97 int32_t OnAcquire(const FormJsInfo &formJsInfo, const sptr<IRemoteObject> &token);
/foundation/ability/form_fwk/test/fuzztest/formhostclient_fuzzer/
H A Dformhostclient_fuzzer.cpp49 sptr<IRemoteObject> token = nullptr; in DoSomethingInterestingWithMyAPI() local
50 formHostClient.OnAcquired(formJsInfo, token); in DoSomethingInterestingWithMyAPI()
/foundation/ability/form_fwk/test/fuzztest/formrenderserviceextension_fuzzer/
H A Dformrenderserviceextension_fuzzer.cpp51 sptr<IRemoteObject> token = nullptr; in DoSomethingInterestingWithMyAPI() local
52 formRenderServiceExtension->Init(record, application, handler, token); in DoSomethingInterestingWithMyAPI()
/foundation/ability/dmsfwk/services/dtbabilitymgr/src/continuation_manager/
H A Dapp_connection_stub.cpp29 AppConnectionStub::AppConnectionStub(int32_t token, in AppConnectionStub() argument
32 token_ = token; in AppConnectionStub()
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/continuation/distributed/
H A Dcontinuation_handler_stage.h52 * @param token The token
56 bool HandleStartContinuation(const sptr<IRemoteObject> &token, const std::string &deviceId) override;
134 * @param token Indicates the token
139 const sptr<IRemoteObject> &token, const std::string &deviceId, uint32_t versionCode);
H A Dcontinuation_handler.h46 virtual bool HandleStartContinuation(const sptr<IRemoteObject> &token, const std::string &deviceId) override;
59 bool HandleStartContinuationWithStack(const sptr<IRemoteObject> &token,
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dability_running_record.cpp25 sptr<IRemoteObject> token, int32_t abilityRecordId) in AbilityRunningRecord()
26 : info_(info), token_(token), abilityRecordId_(abilityRecordId) in AbilityRunningRecord()
24 AbilityRunningRecord(std::shared_ptr<AbilityInfo> info, sptr<IRemoteObject> token, int32_t abilityRecordId) AbilityRunningRecord() argument
/foundation/ability/ability_runtime/test/unittest/ability_manager_client_branch_second_test/
H A Dability_manager_client_branch_second_test.cpp91 sptr<IRemoteObject> token = nullptr; in HWTEST_F() local
93 ErrCode result = client_->AbilityWindowConfigTransitionDone(token, windowConfig); in HWTEST_F()
/foundation/ability/ability_lite/services/abilitymgr_lite/src/task/
H A Dability_connect_task.cpp23 uint64_t token) : AbilityTask(context), want_(want), connectSid_(identity), token_(token) in AbilityConnectTask()
22 AbilityConnectTask(AbilityMgrContext *context, const Want &want, const SvcIdentity& identity, uint64_t token) AbilityConnectTask() argument
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/ability_runtime/app/
H A Dability_stage.h56 void AddAbility(const sptr<IRemoteObject> &token,
58 void RemoveAbility(const sptr<IRemoteObject> &token);
/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/entry/
H A Dmain.cpp79 static void TerminateInterface(uint32_t token, bool forceStop) in TerminateInterface() argument
82 TerminateAbility(token); in TerminateInterface()
/foundation/arkui/ace_engine_lite/frameworks/src/core/context/
H A Dace_ability.cpp49 const uint16_t token = 0xff; // js ability's token is hidden by AMS in OnStart() local
50 jsAbility_.Launch(jsBundlePath, bundleName, (uint16_t)token); in OnStart()
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dpolling_task_queue.cpp54 void CancelTask(Token token) override
56 TaskQueueImpl::CancelTask(token);
/foundation/window/window_manager/extension/window_extension/src/zidl/
H A Dwindow_extension_proxy.cpp36 WLOGFE("write interface token failed"); in SetBounds()
63 WLOGFE("write interface token failed"); in Hide()
84 WLOGFE("write interface token failed"); in Show()
99 void WindowExtensionProxy::GetExtensionWindow(sptr<IWindowExtensionClient>& token) in GetExtensionWindow() argument
105 WLOGFE("write interface token failed"); in GetExtensionWindow()
108 if (!data.WriteRemoteObject(token->AsObject())) { in GetExtensionWindow()
/kernel/linux/linux-5.10/arch/powerpc/boot/
H A Dopal-calls.S24 #define OPAL_CALL(name, token) \
27 li r0, token; \
/kernel/linux/linux-5.10/include/uapi/linux/
H A Dsmc_diag.h64 __u32 token; /* unique connection id */ member
108 __aligned_u64 token; /* Token of DMB */ member
/kernel/linux/linux-5.10/fs/orangefs/
H A Ddowncall.h69 __u64 token; member
131 __u64 token; member

Completed in 12 milliseconds

1...<<51525354555657585960>>...131