Home
last modified time | relevance | path

Searched refs:token (Results 1201 - 1225 of 2250) sorted by relevance

1...<<41424344454647484950>>...90

/third_party/toybox/kconfig/
H A Dlkc.h54 int token; member
87 void menu_add_option(int token, char *arg);
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_next.py9 from ..pgen2 import token namespace
87 if child.type == token.EQUAL:
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dcfg.rs4 use syn::{parenthesized, token, Attribute, LitStr, Token};
39 if input.peek(token::Paren) { in parse_single()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dcordz_test_helpers.h44 cord_internal::CordzSampleToken token = {}) { in CordzInfoIsListed()
45 for (const cord_internal::CordzInfo& info : token) {
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dextension_record_manager.cpp564 const sptr<IRemoteObject> token) in GetUIExtensionRootHostInfo()
566 if (token == nullptr) { in GetUIExtensionRootHostInfo()
571 auto abilityRecord = AAFwk::Token::GetAbilityRecordByToken(token); in GetUIExtensionRootHostInfo()
598 const sptr<IRemoteObject> token, UIExtensionSessionInfo &uiExtensionSessionInfo) in GetUIExtensionSessionInfo()
600 if (token == nullptr) { in GetUIExtensionSessionInfo()
605 auto abilityRecord = AAFwk::Token::GetAbilityRecordByToken(token); in GetUIExtensionSessionInfo()
734 int32_t extensionRecordId, const sptr<IRemoteObject> &token, const sptr<IRemoteObject> &focusToken) in IsFocused()
743 auto abilityRecord = AAFwk::Token::GetAbilityRecordByToken(token); in IsFocused()
563 GetUIExtensionRootHostInfo( const sptr<IRemoteObject> token) GetUIExtensionRootHostInfo() argument
597 GetUIExtensionSessionInfo( const sptr<IRemoteObject> token, UIExtensionSessionInfo &uiExtensionSessionInfo) GetUIExtensionSessionInfo() argument
733 IsFocused( int32_t extensionRecordId, const sptr<IRemoteObject> &token, const sptr<IRemoteObject> &focusToken) IsFocused() argument
/foundation/filemanagement/storage_service/services/storage_daemon/ipc/src/
H A Dstorage_daemon_proxy.cpp383 const std::vector<uint8_t> &token, in UpdateUserAuth()
401 if (!data.WriteUInt8Vector(token)) { in UpdateUserAuth()
461 const std::vector<uint8_t> &token, in ActiveUserKey()
475 if (!data.WriteUInt8Vector(token)) { in ActiveUserKey()
533 const std::vector<uint8_t> &token, in UnlockUserScreen()
547 if (!data.WriteUInt8Vector(token)) { in UnlockUserScreen()
634 const std::vector<uint8_t> &token, in CreateRecoverKey()
651 if (!data.WriteUInt8Vector(token)) { in CreateRecoverKey()
382 UpdateUserAuth(uint32_t userId, uint64_t secureUid, const std::vector<uint8_t> &token, const std::vector<uint8_t> &oldSecret, const std::vector<uint8_t> &newSecret) UpdateUserAuth() argument
460 ActiveUserKey(uint32_t userId, const std::vector<uint8_t> &token, const std::vector<uint8_t> &secret) ActiveUserKey() argument
532 UnlockUserScreen(uint32_t userId, const std::vector<uint8_t> &token, const std::vector<uint8_t> &secret) UnlockUserScreen() argument
632 CreateRecoverKey(uint32_t userId, uint32_t userType, const std::vector<uint8_t> &token, const std::vector<uint8_t> &secret) CreateRecoverKey() argument
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_log.c425 /* Show at most first 64 bytes of token. If token is longer than 64 in log_fr_new_token()
430 if (fr->token.len > 64) { in log_fr_new_token()
431 p = ngtcp2_encode_hex(buf, fr->token.base, 64); in log_fr_new_token()
435 p = ngtcp2_encode_hex(buf, fr->token.base, fr->token.len); in log_fr_new_token()
438 log->user_data, (NGTCP2_LOG_PKT " NEW_TOKEN(0x%02x) token=0x%s len=%zu"), in log_fr_new_token()
439 NGTCP2_LOG_FRM_HD_FIELDS(dir), fr->type, (const char *)p, fr->token.len); in log_fr_new_token()
588 log->user_data, (NGTCP2_LOG_PKT " token=0x%s randlen=%zu"), in ngtcp2_log_rx_sr()
597 uint8_t token[NGTCP2_STATELESS_RESET_TOKENLE in ngtcp2_log_remote_tp() local
[all...]
/third_party/node/deps/npm/test/lib/commands/
H A Dprofile.js602 return { token: 'token' }
650 npm.config.setCredentialsByURI = (registry, { token }) => {
652 t.equal(token, 'token', 'should set expected token')
666 t.test('from token and set otp, retries on pending and verifies with qrcode', async t => {
749 return { token: 'token' }
757 t.test('from token an
[all...]
/third_party/ltp/lib/
H A Dtlibio.c287 * Determine if token is a valid string. in lio_parse_io_arg1()
291 if (strcmp(string, Lio_info1[ind].token) == 0) { in lio_parse_io_arg1()
318 printf("%s %s : %s\n", prefix, Lio_info1[ind].token, in lio_help1()
328 * method tokens as defined in Lio_info2[]. If a token does not match
336 char *token = string; in lio_parse_io_arg2() local
337 char *cc = token; in lio_parse_io_arg2()
346 if (token == NULL) in lio_parse_io_arg2()
357 * Determine if token is a valid string or number and if in lio_parse_io_arg2()
363 if (strcmp(token, Lio_info2[ind].token) in lio_parse_io_arg2()
[all...]
/third_party/python/
H A Dsetup.py352 for token in shlex.split(cflags):
353 switch = token[0:2]
354 value = token[2:]
365 ext.extra_compile_args.append(token)
370 for token in shlex.split(ldflags):
371 switch = token[0:2]
372 value = token[2:]
378 token[0] != '-' and
379 token.endswith(('.a', '.o', '.so', '.sl', '.dylib'))
381 ext.extra_objects.append(token)
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D097-paste-with-non-function-macro.c1 #define PASTE_MACRO one ## token
H A D040-token-pasting.c2 paste(one , token)
H A D096-paste-twice.c2 paste_twice(just, one, token)
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Ddata_ability_helper.cpp175 * @param token Indicates the System token.
179 std::shared_ptr<DataAbilityHelper> DataAbilityHelper::Creator(const sptr<IRemoteObject> token) in Creator() argument
181 TAG_LOGI(AAFwkTag::DATA_ABILITY, "Creator with token"); in Creator()
183 auto dataAbilityHelperImpl = DataAbilityHelperImpl::Creator(token); in Creator()
195 * @param token Indicates the System token.
201 const sptr<IRemoteObject> token, const std::shared_ptr<Uri> &uri) in Creator()
203 TAG_LOGI(AAFwkTag::DATA_ABILITY, "Creator with token & uri"); in Creator()
204 if (!token || !ur in Creator()
200 Creator( const sptr<IRemoteObject> token, const std::shared_ptr<Uri> &uri) Creator() argument
[all...]
/foundation/graphic/graphic_3d/lume/LumeRender/src/
H A Drender_context.cpp464 auto token = renderPlugin->createPlugin(*this); in Init() local
465 plugins_.push_back({ token, renderPlugin }); in Init()
607 return IInterface::Ptr { data.createInterface(*this, data.token) }; in CreateInstance()
654 return data.getInterface(const_cast<RenderContext&>(*this), data.token); in GetInstance()
670 auto token = renderPlugin->createPlugin(*this); in OnTypeInfoEvent() local
671 plugins_.push_back({ token, renderPlugin }); in OnTypeInfoEvent()
/foundation/communication/ipc/ipc/test/auxiliary/native/src/
H A Dtest_capi_skeleton.cpp586 char *token = nullptr; in OnRemoteRequest() local
587 if (OH_IPCParcel_ReadInterfaceToken(data, &token, &readLen, LocalMemAllocator) != OH_IPC_SUCCESS in OnRemoteRequest()
588 || NATIVEREMOTESTUBTEST_DESCRIPTOR != token) { in OnRemoteRequest()
589 if (token != nullptr) { in OnRemoteRequest()
591 free(token); in OnRemoteRequest()
595 free(token); in OnRemoteRequest()
/third_party/libwebsockets/lib/roles/ws/
H A Dserver-ws.c474 if (!strncasecmp(ts.token, "upgrade", ts.token_len)) in lws_process_ws_upgrade()
844 pmdrx.eb_in.token = buffer; in lws_ws_frame_rest_is_payload()
846 pmdrx.eb_out.token = buffer; in lws_ws_frame_rest_is_payload()
947 pmdrx.eb_out.token, in lws_ws_frame_rest_is_payload()
963 lwsl_hexdump_info(pmdrx.eb_out.token, (size_t)pmdrx.eb_out.len); in lws_ws_frame_rest_is_payload()
973 pmdrx.eb_out.token, in lws_ws_frame_rest_is_payload()
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgenerate_stats.py97 # token.pickle). [default=<home>/.auth]
396 for token in unneccesary_tokens:
397 bot_name = bot_name.replace(token, '')
711 token_path = auth_path + '/token.pickle'
723 with open(token_path, 'rb') as token:
724 creds = pickle.load(token)
734 with open(token_path, 'wb') as token:
735 pickle.dump(creds, token)
749 '(credentials.json and token.pickle). '
/foundation/ability/ability_lite/interfaces/inner_api/abilitymgr_lite/
H A Dability_main.h25 int AbilityMain(const char *token);
/foundation/arkui/ace_engine_lite/frameworks/tools/qt/simulator/jsfwk/targets/simulator/mock/amsthread/
H A Dability_manager_interface.h25 int TerminateAbility(uint64_t token);
/foundation/window/window_manager/window_scene/session_manager/include/
H A Dscene_session_manager.h177 SystemSessionConfig& systemConfig, sptr<IRemoteObject> token = nullptr) override;
180 sptr<WindowSessionProperty> property, sptr<ISession>& session, sptr<IRemoteObject> token = nullptr) override;
184 sptr<IRemoteObject> token = nullptr) override;
243 WSError GetFocusSessionToken(sptr<IRemoteObject>& token) override;
259 WSError SetSessionLabel(const sptr<IRemoteObject>& token, const std::string& label) override;
260 WSError SetSessionIcon(const sptr<IRemoteObject>& token, const std::shared_ptr<Media::PixelMap>& icon) override;
265 WSError PendingSessionToForeground(const sptr<IRemoteObject>& token) override;
266 WSError PendingSessionToBackgroundForDelegator(const sptr<IRemoteObject>& token,
293 WSError SetSessionContinueState(const sptr<IRemoteObject>& token, const ContinueState& continueState) override;
392 const sptr<IRemoteObject>& token, uint64_
[all...]
/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_test2.cpp1487 sptr <IRemoteObject> token = data->ReadRemoteObject(); in HWTEST_F() local
1490 WSError result01 = ssm_->SetSessionContinueState(token, continueState); in HWTEST_F()
1504 sptr<IRemoteObject> token = data->ReadRemoteObject(); in HWTEST_F() local
1515 ssm_->SetSessionContinueState(token, continueState); in HWTEST_F()
1641 sptr<IRemoteObject> token = new IRemoteObjectMocker(); in HWTEST_F() local
1642 ret = ssm_->GetFocusSessionToken(token); in HWTEST_F()
1650 ret = ssm_->GetFocusSessionToken(token); in HWTEST_F()
2009 sptr<IRemoteObject> token; in HWTEST_F() local
2014 systemConfig, token); in HWTEST_F()
2022 systemConfig, token); in HWTEST_F()
2085 sptr<IRemoteObject> token; HWTEST_F() local
[all...]
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1load.c29 * _not_ try to read the Type 1 token stream with a state machine (i.e.
809 /* each token is an immediate containing the name of the axis */ in parse_blend_axis_types()
812 T1_Token token = axis_tokens + n; in parse_blend_axis_types() local
818 if ( token->start[0] == '/' ) in parse_blend_axis_types()
819 token->start++; in parse_blend_axis_types()
821 len = (FT_UInt)( token->limit - token->start ); in parse_blend_axis_types()
828 FT_TRACE4(( " /%.*s", len, token->start )); in parse_blend_axis_types()
835 name, len, token->start )); in parse_blend_axis_types()
843 FT_MEM_COPY( name, token in parse_blend_axis_types()
898 T1_Token token; parse_blend_design_positions() local
1097 T1_Token token; parse_weight_vector() local
[all...]
/foundation/ability/ability_lite/interfaces/kits/ability_lite/slite/
H A Dability_manager.h36 * @brief Terminate an ability based on the specified token information.
38 * @param token Indicates the token of the ability.
41 int TerminateAbility(uint64_t token);
/third_party/libunwind/libunwind/src/ia64/
H A DGreg_states_iterate.c32 unw_reg_states_callback cb, void *token) in unw_reg_states_iterate()
37 // return dwarf_reg_states_iterate (&c->dwarf, cb, token); in unw_reg_states_iterate()
31 unw_reg_states_iterate(unw_cursor_t *cursor, unw_reg_states_callback cb, void *token) unw_reg_states_iterate() argument

Completed in 20 milliseconds

1...<<41424344454647484950>>...90