/foundation/ability/idl_tool/parser/ |
H A D | parser.cpp | 63 Token token; in ParseFile() local 64 while ((token = lexer_.PeekToken()) != Token::END_OF_FILE) { in ParseFile() 65 switch (token) { in ParseFile() 77 LogError(token, String::Format("%s is not expected.", lexer_.DumpToken().string())); in ParseFile() 90 Token token = lexer_.PeekToken(false); in ParseLicense() local 91 if (token != Token::COMMENT_BLOCK) { in ParseLicense() 107 Token token = lexer_.GetToken(); in ParseInterface() local 108 if (token == Token::BRACKETS_LEFT) { in ParseInterface() 109 token = lexer_.PeekToken(); in ParseInterface() 110 if (token ! in ParseInterface() 149 ParseInterfaceMiddle(Token& token, String& interfaceFullName) ParseInterfaceMiddle() argument 183 ParseInterfaceEnd(Token& token, String& interfaceFullName, bool hasProperties, bool oneway, bool ret) ParseInterfaceEnd() argument 233 Token token; ParseMethodProperties() local 290 ParseMethodName(Token& token, ASTType* type, ASTInterfaceType* interface) ParseMethodName() argument 334 ParseMethodBrackets(Token& token, ASTMethod* method, bool& ret) ParseMethodBrackets() argument 379 Token token = lexer_.PeekToken(); ParseMethod() local 430 ParseParameterPeek(Token& token) ParseParameterPeek() argument 444 ParseParameterInOut(Token& token, ASTParameter* parameter) ParseParameterInOut() argument 487 Token token = lexer_.PeekToken(); ParseParameter() local 538 Token token = lexer_.PeekToken(); ParseType() local 595 Token token = lexer_.PeekToken(); ParseList() local 631 Token token = lexer_.PeekToken(); ParseMap() local 683 Token token = lexer_.PeekToken(); ParseSequenceable() local 756 LogError(Token token, const String& message) LogError() argument [all...] |
/foundation/ability/idl_tool/idl_tool_2/parser/ |
H A D | parser.cpp | 137 Token token = lexer_.PeekToken(false);
in ParseLicense() local 138 if (token.kind == TokenType::COMMENT_BLOCK) {
in ParseLicense() 140 return token.value;
in ParseLicense() 149 Token token = lexer_.PeekToken();
in ParsePackage() local 150 if (token.kind != TokenType::PACKAGE) {
in ParsePackage() 151 LogErrorBeforeToken(__func__, __LINE__, token, std::string("expected 'package'"));
in ParsePackage() 157 token = lexer_.PeekToken();
in ParsePackage() 158 if (token.kind != TokenType::ID) {
in ParsePackage() 159 LogErrorBeforeToken(__func__, __LINE__, token, std::string("expected name of package"));
in ParsePackage() 163 std::string packageName = token in ParsePackage() 215 Token token = lexer_.PeekToken(); ParseInterfaceToken() local 251 Token token = lexer_.PeekToken(); ParseSupportDelegator() local 287 Token token = lexer_.PeekToken(); ParseImports() local 320 Token token = lexer_.PeekToken(); ParseImportInfo() local 353 Token token = lexer_.PeekToken(); ParseSequenceableInfo() local 381 Token token = lexer_.PeekToken(); ParseTypeDecls() local 410 Token token = lexer_.PeekToken(); ParseAttribute() local 435 Token token = lexer_.PeekToken(); ParseAttributeInfo() local 471 Token token = lexer_.PeekToken(); ParseAttrUnit() local 511 ParseAttrUnitFreezecontrol(AttrSet &attrs, Token &token) ParseAttrUnitFreezecontrol() argument 535 Token token = lexer_.PeekToken(); ParseInterface() local 603 CheckInterfaceAttr(const AutoPtr<ASTInterfaceType> &interface, Token token) CheckInterfaceAttr() argument 632 Token token = lexer_.PeekToken(); ParseInterfaceExternal() local 643 Token token = lexer_.PeekToken(); ParseInterfaceBody() local 686 Token token = lexer_.PeekToken(); ParseMethod() local 727 Token token = lexer_.PeekToken(); ParseMethodReturnType() local 824 Token token = lexer_.PeekToken(); ParseMethodParamList() local 876 Token token = lexer_.PeekToken(); ParseParam() local 903 Token token = lexer_.PeekToken(); ParseParamAttr() local 936 Token token = lexer_.PeekToken(); CheckParamAttr() local 950 SetParamAttrVal(Token token, AutoPtr<ASTParamAttr> attr) SetParamAttrVal() argument 973 Token token = lexer_.PeekToken(); ParseType() local 1009 CheckBasicType(Token token) CheckBasicType() argument 1037 Token token = lexer_.PeekToken(); ParseBasicType() local 1053 Token token = lexer_.PeekToken(); ParseUnsignedType() local 1074 Token token = lexer_.PeekToken(); ParseArrayType() local 1099 Token token = lexer_.PeekToken(); ParseListType() local 1133 Token token = lexer_.PeekToken(); ParseMapType() local 1183 Token token = lexer_.PeekToken(); ParseSmqType() local 1210 CheckUserDefType(Token token) CheckUserDefType() argument 1226 Token token = lexer_.GetToken(); ParseUserDefType() local 1249 Token token = lexer_.PeekToken(); ParseEnumDeclaration() local 1287 Token token = lexer_.PeekToken(); ParseEnumBaseType() local 1326 Token token = lexer_.GetToken(); ParserEnumMember() local 1358 Token token = lexer_.PeekToken(); ParseStructDeclaration() local 1399 Token token = lexer_.PeekToken(); ParseStructParentType() local 1422 Token token = lexer_.PeekToken(); ParseStructMember() local 1462 Token token = lexer_.PeekToken(); ParseUnionDeclaration() local 1499 Token token = lexer_.PeekToken(); ParseUnionMember() local 1593 Token token = lexer_.PeekToken(); ParseAndExpr() local 1610 Token token = lexer_.PeekToken(); ParseXorExpr() local 1627 Token token = lexer_.PeekToken(); ParseOrExpr() local 1644 Token token = lexer_.PeekToken(); ParseShiftExpr() local 1662 Token token = lexer_.PeekToken(); ParseAddExpr() local 1680 Token token = lexer_.PeekToken(); ParseMulExpr() local 1703 Token token = lexer_.PeekToken(); ParseUnaryExpr() local 1727 Token token = lexer_.PeekToken(); ParsePrimaryExpr() local 1759 Token token = lexer_.GetToken(); ParseNumExpr() local 1772 Token token = lexer_.GetToken(); ParseEnumExpr() local 1792 CheckType(const Token &token, const AutoPtr<ASTType> &type) CheckType() argument 1826 CheckTypeByMode(const Token &token, const AutoPtr<ASTType> &type) CheckTypeByMode() argument 1925 Token token = lexer_.PeekToken(); ParseInterfaceExtends() local 1942 Token token = lexer_.PeekToken(); ParseExtendsInfo() local [all...] |
/foundation/ability/idl_tool/idl_tool_2/lexer/ |
H A D | lexer.cpp | 177 Token token = PeekToken();
in SkipUntilToken() local 178 while (token.kind != tokenType) {
in SkipUntilToken() 180 token = PeekToken();
in SkipUntilToken() 190 bool Lexer::ReadCacheableTime(Token &token)
in ReadCacheableTime() argument 215 token.value = sb.ToString();
in ReadCacheableTime() 216 if (token.value.empty()) {
in ReadCacheableTime() 223 void Lexer::ReadToken(Token &token, bool skipComment)
in ReadToken() argument 226 InitCurToken(token);
in ReadToken() 234 token.location.row = file_->GetCharLineNumber();
in ReadToken() 235 token in ReadToken() 269 InitCurToken(Token &token) InitCurToken() argument 278 ReadId(Token &token) ReadId() argument 302 ReadNum(Token &token) ReadNum() argument 328 ReadBinaryNum(Token &token) ReadBinaryNum() argument 350 ReadOctNum(Token &token) ReadOctNum() argument 373 ReadHexNum(Token &token) ReadHexNum() argument 395 ReadDecNum(Token &token) ReadDecNum() argument 415 ReadNumSuffix(Token &token) ReadNumSuffix() argument 428 ReadShiftLeftOp(Token &token) ReadShiftLeftOp() argument 445 ReadShiftRightOp(Token &token) ReadShiftRightOp() argument 462 ReadPPlusOp(Token &token) ReadPPlusOp() argument 479 ReadMMinusOp(Token &token) ReadMMinusOp() argument 496 ReadComment(Token &token) ReadComment() argument 514 ReadLineComment(Token &token) ReadLineComment() argument 532 ReadBlockComment(Token &token) ReadBlockComment() argument 553 ReadSymbolToken(Token &token) ReadSymbolToken() argument [all...] |
H A D | lexer.h | 24 #include "lexer/token.h"
68 bool ReadCacheableTime(Token &token);
71 void ReadToken(Token &token, bool skipComment = true);
73 void InitCurToken(Token &token);
75 void ReadId(Token &token);
77 void ReadNum(Token &token);
79 void ReadBinaryNum(Token &token);
81 void ReadOctNum(Token &token);
83 void ReadHexNum(Token &token);
85 void ReadDecNum(Token &token);
[all...] |
/kernel/linux/linux-6.6/net/rxrpc/ |
H A D | key.c | 49 * parse an RxKAD type XDR format token 56 struct rxrpc_key_token *token, **pptoken; in rxrpc_preparse_xdr_rxkad() local 74 plen = sizeof(*token) + sizeof(*token->kad) + tktlen; in rxrpc_preparse_xdr_rxkad() 77 plen -= sizeof(*token); in rxrpc_preparse_xdr_rxkad() 78 token = kzalloc(sizeof(*token), GFP_KERNEL); in rxrpc_preparse_xdr_rxkad() 79 if (!token) in rxrpc_preparse_xdr_rxkad() 82 token->kad = kzalloc(plen, GFP_KERNEL); in rxrpc_preparse_xdr_rxkad() 83 if (!token in rxrpc_preparse_xdr_rxkad() 138 const __be32 *xdr = prep->data, *token, *p; rxrpc_preparse_xdr() local 280 struct rxrpc_key_token *token, **pp; rxrpc_preparse() local 383 rxrpc_free_token_list(struct rxrpc_key_token *token) rxrpc_free_token_list() argument 424 const struct rxrpc_key_token *token; rxrpc_describe() local 565 const struct rxrpc_key_token *token; rxrpc_read() local [all...] |
/foundation/multimedia/player_framework/services/services/screen_capture/ipc/ |
H A D | screen_capture_service_proxy.cpp | 45 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); in DestroyStub() local 46 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in DestroyStub() 61 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); in SetListenerObject() local 62 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in SetListenerObject() 78 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); in Release() local 79 CHECK_AND_RETURN_LOG(token, "Failed to write descriptor!"); in Release() 91 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); in SetCaptureMode() local 92 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATION, "Failed to write descriptor!"); in SetCaptureMode() 94 token = data.WriteInt32(captureMode); in SetCaptureMode() 95 CHECK_AND_RETURN_RET_LOG(token, MSERR_INVALID_OPERATIO in SetCaptureMode() 110 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SetDataType() local 129 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SetRecorderInfo() local 148 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SetOutputFile() local 166 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); InitAudioEncInfo() local 185 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); InitAudioCap() local 205 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); InitVideoEncInfo() local 225 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); InitVideoCap() local 256 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); StartScreenCapture() local 275 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); StartScreenCaptureWithSurface() local 306 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); StopScreenCapture() local 323 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); AcquireAudioBuffer() local 362 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); AcquireVideoBuffer() local 389 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); ReleaseAudioBuffer() local 407 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); ReleaseVideoBuffer() local 422 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); ExcludeContent() local 451 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SetMicrophoneEnabled() local 469 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SetCanvasRotation() local 487 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); ResizeCanvas() local 505 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SkipPrivacyMode() local 525 bool token = data.WriteInterfaceToken(ScreenCaptureServiceProxy::GetDescriptor()); SetMaxVideoFrameRate() local [all...] |
/kernel/linux/linux-5.10/arch/powerpc/platforms/powernv/ |
H A D | opal-async.c | 44 int i, token = -EBUSY; in __opal_async_get_token() local 51 token = i; in __opal_async_get_token() 57 return token; in __opal_async_get_token() 61 * Note: If the returned token is used in an opal call and opal returns 68 int token; in opal_async_get_token_interruptible() local 70 /* Wait until a token is available */ in opal_async_get_token_interruptible() 74 token = __opal_async_get_token(); in opal_async_get_token_interruptible() 75 if (token < 0) in opal_async_get_token_interruptible() 78 return token; in opal_async_get_token_interruptible() 82 static int __opal_async_release_token(int token) in __opal_async_release_token() argument 116 opal_async_release_token(int token) opal_async_release_token() argument 128 opal_async_wait_response(uint64_t token, struct opal_msg *msg) opal_async_wait_response() argument 157 opal_async_wait_response_interruptible(uint64_t token, struct opal_msg *msg) opal_async_wait_response_interruptible() argument 218 uint64_t token; opal_async_comp_event() local [all...] |
/kernel/linux/linux-6.6/arch/powerpc/platforms/powernv/ |
H A D | opal-async.c | 44 int i, token = -EBUSY; in __opal_async_get_token() local 51 token = i; in __opal_async_get_token() 57 return token; in __opal_async_get_token() 61 * Note: If the returned token is used in an opal call and opal returns 68 int token; in opal_async_get_token_interruptible() local 70 /* Wait until a token is available */ in opal_async_get_token_interruptible() 74 token = __opal_async_get_token(); in opal_async_get_token_interruptible() 75 if (token < 0) in opal_async_get_token_interruptible() 78 return token; in opal_async_get_token_interruptible() 82 static int __opal_async_release_token(int token) in __opal_async_release_token() argument 116 opal_async_release_token(int token) opal_async_release_token() argument 128 opal_async_wait_response(uint64_t token, struct opal_msg *msg) opal_async_wait_response() argument 157 opal_async_wait_response_interruptible(uint64_t token, struct opal_msg *msg) opal_async_wait_response_interruptible() argument 218 uint64_t token; opal_async_comp_event() local [all...] |
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | accessors.c | 27 void btrfs_init_map_token(struct btrfs_map_token *token, struct extent_buffer *eb) in btrfs_init_map_token() argument 29 token->eb = eb; in btrfs_init_map_token() 30 token->kaddr = page_address(eb->pages[0]); in btrfs_init_map_token() 31 token->offset = 0; in btrfs_init_map_token() 43 * Generic helpers with a token (cached address of the most recently accessed 59 u##bits btrfs_get_token_##bits(struct btrfs_map_token *token, \ 64 const unsigned long oip = get_eb_offset_in_page(token->eb, \ 70 ASSERT(token); \ 71 ASSERT(token->kaddr); \ 72 ASSERT(check_setget_bounds(token [all...] |
/test/xts/device_attest_lite/services/core/adapter/ |
H A D | attest_adapter_hal.c | 55 char token[TOKEN_ENCRYPT_LEN + 1];
in AttestWriteToken() local 57 (void)memset_s(token, sizeof(token), 0, sizeof(token));
in AttestWriteToken() 59 if (memcpy_s(token, sizeof(token), tokenInfo->tokenId, sizeof(tokenInfo->tokenId)) != 0) {
in AttestWriteToken() 63 token[offset - 1] = separator;
in AttestWriteToken() 64 if (memcpy_s(token + offset, sizeof(token), tokenInfo->tokenValue, sizeof(tokenInfo->tokenValue)) != 0) {
in AttestWriteToken() 68 token[offse in AttestWriteToken() 103 char token[TOKEN_ENCRYPT_LEN + 1] = {0}; AttestReadToken() local [all...] |
/kernel/linux/linux-6.6/scripts/genksyms/ |
H A D | parse.y | 63 %token ASM_KEYW 64 %token ATTRIBUTE_KEYW 65 %token AUTO_KEYW 66 %token BOOL_KEYW 67 %token BUILTIN_INT_KEYW 68 %token CHAR_KEYW 69 %token CONST_KEYW 70 %token DOUBLE_KEYW 71 %token ENUM_KEYW 72 %token EXTERN_KEY [all...] |
/kernel/linux/linux-6.6/net/mptcp/ |
H A D | token.c | 2 /* Multipath TCP token management 48 static struct token_bucket *token_bucket(u32 token) in token_bucket() argument 50 return &token_hash[token & token_mask]; in token_bucket() 55 __token_lookup_req(struct token_bucket *t, u32 token) in __token_lookup_req() argument 61 if (req->token == token) in __token_lookup_req() 68 __token_lookup_msk(struct token_bucket *t, u32 token) in __token_lookup_msk() argument 74 if (mptcp_sk(sk)->token == token) in __token_lookup_msk() 79 static bool __token_bucket_busy(struct token_bucket *t, u32 token) in __token_bucket_busy() argument 85 mptcp_crypto_key_gen_sha(u64 *key, u32 *token, u64 *idsn) mptcp_crypto_key_gen_sha() argument 112 u32 token; mptcp_token_new_request() local 210 mptcp_token_exists(u32 token) mptcp_token_exists() argument 246 mptcp_token_get_sock(struct net *net, u32 token) mptcp_token_get_sock() argument [all...] |
/kernel/linux/linux-5.10/net/rxrpc/ |
H A D | key.c | 85 * parse an RxKAD type XDR format token 92 struct rxrpc_key_token *token, **pptoken; in rxrpc_preparse_xdr_rxkad() local 110 plen = sizeof(*token) + sizeof(*token->kad) + tktlen; in rxrpc_preparse_xdr_rxkad() 113 plen -= sizeof(*token); in rxrpc_preparse_xdr_rxkad() 114 token = kzalloc(sizeof(*token), GFP_KERNEL); in rxrpc_preparse_xdr_rxkad() 115 if (!token) in rxrpc_preparse_xdr_rxkad() 118 token->kad = kzalloc(plen, GFP_KERNEL); in rxrpc_preparse_xdr_rxkad() 119 if (!token in rxrpc_preparse_xdr_rxkad() 433 struct rxrpc_key_token *token, **pptoken; rxrpc_preparse_xdr_rxk5() local 559 const __be32 *xdr = prep->data, *token; rxrpc_preparse_xdr() local 695 struct rxrpc_key_token *token, **pp; rxrpc_preparse() local 798 rxrpc_free_token_list(struct rxrpc_key_token *token) rxrpc_free_token_list() argument 1046 const struct rxrpc_key_token *token; rxrpc_read() local [all...] |
/kernel/linux/linux-5.10/net/mptcp/ |
H A D | token.c | 2 /* Multipath TCP token management 49 static struct token_bucket *token_bucket(u32 token) in token_bucket() argument 51 return &token_hash[token & token_mask]; in token_bucket() 56 __token_lookup_req(struct token_bucket *t, u32 token) in __token_lookup_req() argument 62 if (req->token == token) in __token_lookup_req() 69 __token_lookup_msk(struct token_bucket *t, u32 token) in __token_lookup_msk() argument 75 if (mptcp_sk(sk)->token == token) in __token_lookup_msk() 80 static bool __token_bucket_busy(struct token_bucket *t, u32 token) in __token_bucket_busy() argument 86 mptcp_crypto_key_gen_sha(u64 *key, u32 *token, u64 *idsn) mptcp_crypto_key_gen_sha() argument 113 u32 token; mptcp_token_new_request() local 207 mptcp_token_exists(u32 token) mptcp_token_exists() argument 243 mptcp_token_get_sock(struct net *net, u32 token) mptcp_token_get_sock() argument [all...] |
/kernel/linux/linux-5.10/scripts/genksyms/ |
H A D | parse.y | 63 %token ASM_KEYW 64 %token ATTRIBUTE_KEYW 65 %token AUTO_KEYW 66 %token BOOL_KEYW 67 %token BUILTIN_INT_KEYW 68 %token CHAR_KEYW 69 %token CONST_KEYW 70 %token DOUBLE_KEYW 71 %token ENUM_KEYW 72 %token EXTERN_KEY [all...] |
/test/xts/device_attest/services/core/adapter/ |
H A D | attest_adapter_hal.c | 55 char token[TOKEN_ENCRYPT_LEN + 1];
in AttestWriteToken() local 57 (void)memset_s(token, sizeof(token), 0, sizeof(token));
in AttestWriteToken() 59 if (memcpy_s(token, sizeof(token), tokenInfo->tokenId, sizeof(tokenInfo->tokenId)) != 0) {
in AttestWriteToken() 63 token[offset - 1] = separator;
in AttestWriteToken() 64 if (memcpy_s(token + offset, sizeof(token), tokenInfo->tokenValue, sizeof(tokenInfo->tokenValue)) != 0) {
in AttestWriteToken() 68 token[offse in AttestWriteToken() 97 char token[TOKEN_ENCRYPT_LEN + 1] = {0}; AttestReadToken() local [all...] |
/kernel/linux/linux-5.10/fs/btrfs/ |
H A D | struct-funcs.c | 40 * Generic helpers with a token (cached address of the most recently accessed 56 u##bits btrfs_get_token_##bits(struct btrfs_map_token *token, \ 66 ASSERT(token); \ 67 ASSERT(token->kaddr); \ 68 ASSERT(check_setget_bounds(token->eb, ptr, off, size)); \ 69 if (token->offset <= member_offset && \ 70 member_offset + size <= token->offset + PAGE_SIZE) { \ 71 return get_unaligned_le##bits(token->kaddr + oip); \ 73 token->kaddr = page_address(token [all...] |
/kernel/linux/linux-5.10/tools/perf/pmu-events/ |
H A D | jsmn.c | 29 * Allocates a fresh unused token from the token pool. 45 * Fills token type and boundaries. 47 static void jsmn_fill_token(jsmntok_t *token, jsmntype_t type, in jsmn_fill_token() argument 50 token->type = type; in jsmn_fill_token() 51 token->start = start; in jsmn_fill_token() 52 token->end = end; in jsmn_fill_token() 53 token->size = 0; in jsmn_fill_token() 57 * Fills next available token with JSON primitive. 63 jsmntok_t *token; in jsmn_parse_primitive() local 120 jsmntok_t *token; jsmn_parse_string() local 178 jsmntok_t *token; jsmn_parse() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/dpaa2/ |
H A D | dpni.h | 89 u16 *token); 93 u16 token); 124 u16 token, 129 u16 token); 133 u16 token); 137 u16 token, 142 u16 token); 156 u16 token, 162 u16 token, 168 u16 token, [all...] |
H A D | dpsw.h | 23 int dpsw_open(struct fsl_mc_io *mc_io, u32 cmd_flags, int dpsw_id, u16 *token); 25 int dpsw_close(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token); 85 int dpsw_enable(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token); 87 int dpsw_disable(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token); 89 int dpsw_reset(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token); 118 int dpsw_set_irq_enable(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token, 121 int dpsw_set_irq_mask(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token, 124 int dpsw_get_irq_status(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token, 127 int dpsw_clear_irq_status(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token, 169 int dpsw_get_attributes(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token, [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/dpaa2/ |
H A D | dpni.h | 86 u16 *token); 90 u16 token); 112 u16 token, 117 u16 token); 121 u16 token); 125 u16 token, 130 u16 token); 150 u16 token, 156 u16 token, 162 u16 token, [all...] |
/foundation/ability/ability_lite/frameworks/ability_lite/src/ |
H A D | ability_scheduler.cpp | 75 uint64_t token = 0; in AmsCallback() local 76 ReadUint64(data, &token); in AmsCallback() 84 scheduler->PerformTransactAbilityState(want, state, token, abilityType); in AmsCallback() 88 uint64_t token = 0; in AmsCallback() local 89 ReadUint64(data, &token); in AmsCallback() 95 scheduler->PerformConnectAbility(want, token); in AmsCallback() 99 uint64_t token = 0; in AmsCallback() local 100 ReadUint64(data, &token); in AmsCallback() 106 scheduler->PerformDisconnectAbility(want, token); in AmsCallback() 120 uint64_t token in AmsCallback() local 141 PerformTransactAbilityState(const Want &want, int state, uint64_t token, int abilityType) PerformTransactAbilityState() argument 150 PerformConnectAbility(const Want &want, uint64_t token) PerformConnectAbility() argument 159 PerformDisconnectAbility(const Want &want, uint64_t token) PerformDisconnectAbility() argument 176 PerformDumpAbility(const Want &want, uint64_t token) PerformDumpAbility() argument [all...] |
/kernel/linux/linux-5.10/drivers/staging/fsl-dpaa2/ethsw/ |
H A D | dpsw.h | 33 u16 *token); 37 u16 token); 80 u16 token); 84 u16 token); 88 u16 token); 116 u16 token, 122 u16 token, 128 u16 token, 134 u16 token, 175 u16 token, [all...] |
/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | ability_record_mgr.cpp | 21 * @brief Get the token witch is set to the AbilityRecordMgr. 23 * @return Returns the token which is set to the AbilityRecordMgr. 31 * @brief Set the token witch the app launched. 33 * @param token The token which the is launched by app. 35 void AbilityRecordMgr::SetToken(const sptr<IRemoteObject> &token) in SetToken() argument 37 if (token == nullptr) { in SetToken() 41 tokens_ = token; in SetToken() 45 * @brief Save the token and abilityRecord to the AbilityRecordMgr. 47 * @param token Th 51 AddAbilityRecord( const sptr<IRemoteObject> &token, const std::shared_ptr<AbilityLocalRecord> &abilityRecord) AddAbilityRecord() argument 72 RemoveAbilityRecord(const sptr<IRemoteObject> &token) RemoveAbilityRecord() argument 123 sptr<IRemoteObject> token = it->first; GetAllTokens() local [all...] |
/kernel/linux/linux-6.6/drivers/bus/fsl-mc/ |
H A D | fsl-mc-uapi.c | 25 bool token; member 84 .token = true, 90 .token = true, 96 .token = false, 102 .token = true, 109 .token = true, 116 .token = true, 123 .token = true, 130 .token = true, 136 .token [all...] |