| /linux/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 81 return !token || t->chain_len >= TOKEN_MAX_CHAIN_LEN || in __token_bucket_busy() 82 __token_lookup_req(t, token) || __token_lookup_msk(t, token); in __token_bucket_busy() [all …]
|
| /linux/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...] |
| /linux/rust/syn/ |
| H A D | token.rs | 6 //! prefer to use the [`Token!`] macro instead. This is a type-macro that 7 //! expands to the token type of the given token. 9 //! [`Token!`]: crate::Token 18 //! # use syn::{Attribute, Expr, Ident, Token, Type, Visibility}; 23 //! pub static_token: Token![static], 24 //! pub mutability: Option<Token![mut]>, 26 //! pub colon_token: Token![:], 28 //! pub eq_token: Token![=], 30 //! pub semi_token: Token![;], 76 //! Every keyword and punctuation token supports the following operations. [all …]
|
| H A D | op.rs | 9 Add(Token![+]), 11 Sub(Token![-]), 13 Mul(Token![*]), 15 Div(Token![/]), 17 Rem(Token![%]), 19 And(Token![&&]), 21 Or(Token![||]), 23 BitXor(Token![^]), 25 BitAnd(Token![&]), 27 BitOr(Token![|]), [all …]
|
| H A D | stmt.rs | 8 use crate::token; 14 pub brace_token: token::Brace, 31 Expr(Expr, Option<Token![;]>), 47 pub let_token: Token![let], 50 pub semi_token: Token![;], 62 pub eq_token: Token![=], 64 pub diverge: Option<(Token![else], Box<Expr>)>, 78 pub semi_token: Option<Token![;]>, 96 use crate::token; 109 /// use syn::{braced, token, Attribute, Block, Ident, Result, Stmt, Token}; [all …]
|
| H A D | item.rs | 16 use crate::token; 109 pub const_token: Token![const], 112 pub colon_token: Token![:], 114 pub eq_token: Token![=], 116 pub semi_token: Token![;], 126 pub enum_token: Token![enum], 129 pub brace_token: token::Brace, 130 pub variants: Punctuated<Variant, Token![,]>, 140 pub extern_token: Token![extern], 141 pub crate_token: Token![crate], [all …]
|
| H A D | ty.rs | 12 use crate::token; 98 pub bracket_token: token::Bracket, 100 pub semi_token: Token![;], 110 pub unsafety: Option<Token![unsafe]>, 112 pub fn_token: Token![fn], 113 pub paren_token: token::Paren, 114 pub inputs: Punctuated<BareFnArg, Token![,]>, 124 pub group_token: token::Group, 134 pub impl_token: Token![impl], 135 pub bounds: Punctuated<TypeParamBound, Token![+]>, [all …]
|
| H A D | group.rs | 5 use crate::token; 13 pub token: token::Paren, field 22 pub token: token::Brace, field 31 pub token: token::Bracket, field 41 pub token: token::Group, field 50 token: token::Paren(span), in parse_parens() 59 token: token::Brace(span), in parse_braces() 68 token: token::Bracket(span), in parse_brackets() 76 token: token::Group(span.join()), in parse_group() 111 /// use syn::{parenthesized, token, Ident, Result, Token, Type}; [all …]
|
| H A D | pat.rs | 8 use crate::token; 114 pub by_ref: Option<Token![ref]>, 115 pub mutability: Option<Token![mut]>, 117 pub subpat: Option<(Token![@], Box<Pat>)>, 126 pub leading_vert: Option<Token![|]>, 127 pub cases: Punctuated<Pat, Token![|]>, 136 pub paren_token: token::Paren, 146 pub and_token: Token![&], 147 pub mutability: Option<Token![mut]>, 157 pub dot2_token: Token![..], [all …]
|
| H A D | generics.rs | 9 use crate::token; 29 pub lt_token: Option<Token![<]>, 30 pub params: Punctuated<GenericParam, Token![,]>, 31 pub gt_token: Option<Token![>]>, 64 pub colon_token: Option<Token![:]>, 65 pub bounds: Punctuated<Lifetime, Token![+]>, 75 pub colon_token: Option<Token![:]>, 76 pub bounds: Punctuated<TypeParamBound, Token![+]>, 77 pub eq_token: Option<Token![=]>, 87 pub const_token: Token![const], [all …]
|
| /linux/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 [all …]
|
| /linux/drivers/net/ethernet/freescale/dpaa2/ |
| H A D | dpsw.c | 27 * @token: Returned token; use in subsequent API calls 32 * This function returns a unique authentication token, 34 * portal; this token must be used in all subsequent commands for 39 int dpsw_open(struct fsl_mc_io *mc_io, u32 cmd_flags, int dpsw_id, u16 *token) in dpsw_open() argument 58 *token = mc_cmd_hdr_read_token(&cmd); in dpsw_open() 67 * @token: Token of DPSW object 74 int dpsw_close(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token) in dpsw_close() argument 81 token); in dpsw_close() 91 * @token: Token of DPSW object 95 int dpsw_enable(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token) in dpsw_enable() argument [all …]
|
| H A D | dpni.c | 83 * @token: Returned token; use in subsequent API calls 88 * This function returns a unique authentication token, 90 * portal; this token must be used in all subsequent commands for 98 u16 *token) in dpni_open() argument 118 *token = mc_cmd_hdr_read_token(&cmd); in dpni_open() 127 * @token: Token of DPNI object 136 u16 token) in dpni_close() argument 143 token); in dpni_close() 153 * @token: Token of DPNI object 163 u16 token, in dpni_set_pools() argument [all …]
|
| H A D | dprtc.c | 17 * @token: Returned token; use in subsequent API calls 22 * This function returns a unique authentication token, 24 * portal; this token must be used in all subsequent commands for 32 u16 *token) in dprtc_open() argument 48 *token = mc_cmd_hdr_read_token(&cmd); in dprtc_open() 57 * @token: Token of DPRTC object 66 u16 token) in dprtc_close() argument 71 token); in dprtc_close() 80 * @token: Token of DPRTC object 93 u16 token, in dprtc_set_irq_enable() argument [all …]
|
| H A D | dpmac.c | 14 * @token: Returned token; use in subsequent API calls 19 * This function returns a unique authentication token, 21 * portal; this token must be used in all subsequent commands for 29 u16 *token) in dpmac_open() argument 48 *token = mc_cmd_hdr_read_token(&cmd); in dpmac_open() 57 * @token: Token of DPMAC object 66 u16 token) in dpmac_close() argument 72 token); in dpmac_close() 83 * @token: Token of DPMAC object 90 u16 token, in dpmac_get_attributes() argument [all …]
|
| /linux/scripts/genksyms/ |
| H A D | parse.y | 64 %token ASM_KEYW 65 %token ATTRIBUTE_KEYW 66 %token AUTO_KEYW 67 %token BOOL_KEYW 68 %token BUILTIN_INT_KEYW 69 %token CHAR_KEYW 70 %token CONST_KEYW 71 %token DOUBLE_KEYW 72 %token ENUM_KEYW 73 %token EXTERN_KEYW [all …]
|
| /linux/drivers/crypto/caam/ |
| H A D | dpseci.c | 16 * @token: Returned token; use in subsequent API calls 21 * This function returns a unique authentication token, associated with the 22 * specific object ID and the specific MC portal; this token must be used in all 28 u16 *token) in dpseci_open() argument 43 *token = mc_cmd_hdr_read_token(&cmd); in dpseci_open() 52 * @token: Token of DPSECI object 59 int dpseci_close(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token) in dpseci_close() argument 65 token); in dpseci_close() 73 * @token: Token of DPSECI object 77 int dpseci_enable(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token) in dpseci_enable() argument [all …]
|
| /linux/drivers/bus/fsl-mc/ |
| H A D | dpcon.c | 16 * @token: Returned token; use in subsequent API calls 21 * This function returns a unique authentication token, 23 * portal; this token must be used in all subsequent commands for 31 u16 *token) in dpcon_open() argument 50 *token = mc_cmd_hdr_read_token(&cmd); in dpcon_open() 60 * @token: Token of DPCON object 69 u16 token) in dpcon_close() argument 76 token); in dpcon_close() 87 * @token: Token of DPCON object 93 u16 token) in dpcon_enable() argument [all …]
|
| H A D | fsl-mc-uapi.c | 25 bool token; member 85 .token = true, 91 .token = true, 97 .token = false, 103 .token = true, 110 .token = true, 117 .token = true, 124 .token = true, 131 .token = true, 137 .token = true, [all …]
|
| H A D | dpbp.c | 16 * @token: Returned token; use in subsequent API calls 21 * This function returns a unique authentication token, 23 * portal; this token must be used in all subsequent commands for 31 u16 *token) in dpbp_open() argument 49 *token = mc_cmd_hdr_read_token(&cmd); in dpbp_open() 59 * @token: Token of DPBP object 68 u16 token) in dpbp_close() argument 74 token); in dpbp_close() 85 * @token: Token of DPBP object 91 u16 token) in dpbp_enable() argument [all …]
|
| H A D | dprc.c | 24 * @token: Returned token of DPRC object 33 u16 *token) in dprc_open() argument 51 *token = mc_cmd_hdr_read_token(&cmd); in dprc_open() 61 * @token: Token of DPRC object 70 u16 token) in dprc_close() argument 76 token); in dprc_close() 87 * @token: Token of DPRC object 114 u16 token, in dprc_reset_container() argument 144 cmd.header = mc_encode_cmd_header(cmdid, cmd_flags, token); in dprc_reset_container() 158 * @token: Token of DPRC object [all …]
|
| /linux/drivers/dma/fsl-dpaa2-qdma/ |
| H A D | dpdmai.c | 56 * @token: Returned token; use in subsequent API calls 61 * This function returns a unique authentication token, 63 * portal; this token must be used in all subsequent commands for 69 int dpdmai_id, u16 *token) in dpdmai_open() argument 88 *token = mc_cmd_hdr_read_token(&cmd); in dpdmai_open() 98 * @token: Token of DPDMAI object 105 int dpdmai_close(struct fsl_mc_io *mc_io, u32 cmd_flags, u16 token) in dpdmai_close() argument 111 cmd_flags, token); in dpdmai_close() 123 * @token: Token of DPDMAI object 127 int dpdmai_destroy(struct fsl_mc_io *mc_io, u32 cmd_flags, u32 dpdmai_id, u16 token) in dpdmai_destroy() argument [all …]
|
| /linux/drivers/soc/fsl/dpio/ |
| H A D | dpio.c | 23 * @token: Returned token; use in subsequent API calls 28 * This function returns a unique authentication token, 30 * portal; this token must be used in all subsequent commands for 38 u16 *token) in dpio_open() argument 56 *token = mc_cmd_hdr_read_token(&cmd); in dpio_open() 65 * @token: Token of DPIO object 71 u16 token) in dpio_close() argument 78 token); in dpio_close() 87 * @token: Token of DPIO object 93 u16 token) in dpio_enable() argument [all …]
|
| /linux/tools/tracing/rtla/src/ |
| H A D | actions.c | 133 const char *token; in actions_parse() local 143 token = strtok(trigger_c, ","); in actions_parse() 145 if (strcmp(token, "trace") == 0) in actions_parse() 147 else if (strcmp(token, "signal") == 0) in actions_parse() 149 else if (strcmp(token, "shell") == 0) in actions_parse() 151 else if (strcmp(token, "continue") == 0) in actions_parse() 157 token = strtok(NULL, ","); in actions_parse() 162 if (token == NULL) in actions_parse() 165 if (strlen(token) > 5 && strncmp(token, "file=", 5) == 0) { in actions_parse() 166 trace_output = token + 5; in actions_parse() [all …]
|
| /linux/tools/perf/pmu-events/arch/x86/amdzen3/ |
| H A D | other.json | 22 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 28 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 34 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 40 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 46 …cles where a dispatch group is valid but does not get dispatched due to a token stall. Integer Sch… 52 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 58 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 64 …patched due to a Token Stall. Also counts cycles when the thread is not selected to dispatch but w… 70 …cles where a dispatch group is valid but does not get dispatched due to a token stall. Insufficien… 76 …cles where a dispatch group is valid but does not get dispatched due to a token stall. AGSQ Tokens… [all …]
|