Searched refs:identifier (Results 1 - 25 of 162) sorted by relevance

1234567

/freebsd-current/contrib/wpa/src/eap_common/
H A Deap_pax_common.c21 * @identifier: Public identifier for the key (Y)
31 const char *identifier,
42 if (identifier == NULL || num_blocks >= 255)
49 addr[0] = (const u8 *) identifier;
50 len[0] = os_strlen(identifier);
30 eap_pax_kdf(u8 mac_id, const u8 *key, size_t key_len, const char *identifier, const u8 *entropy, size_t entropy_len, size_t output_len, u8 *output) argument
H A Deap_common.h26 size_t payload_len, u8 code, u8 identifier);
H A Deap_common.c118 * @identifier: Identifier
129 size_t payload_len, u8 code, u8 identifier)
143 hdr->identifier = identifier;
190 return eap->identifier;
128 eap_msg_alloc(int vendor, enum eap_type type, size_t payload_len, u8 code, u8 identifier) argument
H A Deap_defs.h20 u8 identifier; member in struct:eap_hdr
21 be16 length; /* including code and identifier; network byte order */
H A Deap_pax_common.h81 const char *identifier,
/freebsd-current/contrib/ntp/scripts/
H A Dplot_summary.in27 my ($identifier, $offset_limit, $gnuplot_terminal, $wait_after_plot,
38 $identifier = $opts->{'identifier'};
39 if (!$identifier) {
40 $identifier = "host".`hostname`;
41 chomp $identifier;
170 print "set title \"Loop Summary for $identifier: " .
216 print "set title \"Loop Summary for $identifier: " .
293 "\"Peer Summary for $peer on $identifier since $first_day\"\n";
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSL.cpp56 if (!Tok.is(tok::identifier)) {
57 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok
131 else if (Tok.is(tok::identifier))
152 if (!Tok.is(tok::identifier)) {
153 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok
168 if (!Tok.is(tok::identifier)) {
169 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; member in class:tok
H A DParseOpenACC.cpp40 if (!Tok.is(tok::identifier))
87 if (!Tok.is(tok::identifier))
136 if (!Tok.is(tok::identifier))
148 if (!Tok.is(tok::identifier))
169 if (!Tok.is(tok::identifier))
192 /// 'identifier-like' token, but don't want to give awkward error messages in
195 if (Tok.is(tok::identifier))
214 // If this is an identifier-like thing followed by ':', it is one of the
234 if (!Tok.is(tok::identifier))
310 case tok::identifier
331 P.Diag(P.getCurToken(), diag::err_expected) << tok::identifier; member in class:__anon672::tok
352 P.Diag(SecondTok, diag::err_expected) << tok::identifier; member in class:__anon672::tok
866 Diag(Tok, diag::err_expected) << tok::identifier; member in class:tok
[all...]
H A DParseInit.cpp34 case tok::period: // designator: '.' identifier
54 case tok::identifier:
68 case tok::identifier: // designation: identifier ':'
128 /// [GNU] identifier ':'
136 /// '.' identifier
152 /// '.' identifier
165 // designation ::= identifier ':'
168 if (Tok.is(tok::identifier)) {
175 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier
[all...]
H A DParseTentative.cpp38 /// 'namespace' identifier = qualified-namespace-specifier ';'
66 case tok::identifier: {
76 case tok::identifier: {
92 // token is also an identifier and assume a declaration.
95 if (NextToken().is(tok::identifier))
124 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
132 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
180 // or an identifier which doesn't resolve as anything. We need tentative
231 // nested-name-specifier[opt] identifier
233 // enum nested-name-specifier[opt] identifier
[all...]
/freebsd-current/contrib/wpa/src/common/
H A Ddpp_pkex.c43 /* Qi = H([MAC-Initiator |] [identifier |] code) * Pi */
45 pkex->identifier, &ec);
79 /* Initiator -> Responder: group, [identifier,] M */
85 if (pkex->identifier)
86 attr_len += 4 + os_strlen(pkex->identifier);
119 if (pkex->identifier) {
121 wpabuf_put_le16(msg, os_strlen(pkex->identifier));
122 wpabuf_put_str(msg, pkex->identifier);
173 const char *identifier, const char *code,
194 if (identifier) {
171 dpp_pkex_init(void *msg_ctx, struct dpp_bootstrap_info *bi, const u8 *own_mac, const char *identifier, const char *code, bool v2) argument
312 dpp_pkex_identifier_match(const u8 *attr_id, u16 attr_id_len, const char *identifier) argument
338 dpp_pkex_rx_exchange_req(void *msg_ctx, struct dpp_bootstrap_info *bi, const u8 *own_mac, const u8 *peer_mac, const char *identifier, const char *code, const u8 *buf, size_t len, bool v2) argument
[all...]
H A Dsae.h131 const struct wpabuf *token, const char *identifier);
143 const char *identifier);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.h42 llvm::StringRef &identifier);
/freebsd-current/contrib/llvm-project/clang/lib/Format/
H A DQualifierAlignmentFixer.cpp242 if (PreviousCheck->isOneOf(TT_PointerOrReference, tok::identifier,
322 if (TypeToken->isOneOf(tok::kw_auto, tok::identifier)) {
336 Next->startsSequence(tok::coloncolon, tok::identifier) ||
338 tok::identifier))) {
342 } else if (Next->startsSequence(tok::coloncolon, tok::identifier)) {
425 if (TypeToken->isOneOf(tok::kw_auto, tok::identifier, TT_TemplateCloser)) {
439 // An identifier preceeded by :: is not the start of a type.
441 if (Tok->is(tok::identifier) && Previous->is(tok::coloncolon))
445 // An identifier preceeded by ::template is not the start of a type.
447 if (Tok->is(tok::identifier)
[all...]
H A DObjCPropertyAttributeOrderFixer.cpp66 if (!Tok->isOneOf(tok::identifier, tok::kw_class)) {
81 if (Tok->Next->isNot(tok::identifier)) {
H A DMacroExpander.cpp58 if (Current->isNot(tok::identifier))
77 while (Current->is(tok::identifier)) {
194 if (Tok->isNot(tok::identifier) || ExpandedArgs.contains(Tok->TokenText))
/freebsd-current/contrib/wpa/src/eap_server/
H A Deap_tls_common.h77 u8 code, u8 identifier);
/freebsd-current/sys/dev/mlxfw/
H A Dmlxfw_mfa2_format.h92 __be16 identifier; member in struct:mlxfw_mfa2_tlv_component_descriptor
/freebsd-current/contrib/llvm-project/clang/lib/Sema/
H A DHLSLExternalSemaSource.cpp46 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier);
91 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier);
130 IdentifierInfo &II = AST.Idents.get(Name, tok::TokenKind::identifier);
250 IdentifierInfo &II = AST.Idents.get("Idx", tok::TokenKind::identifier);
330 &AST.Idents.get(Name, tok::TokenKind::identifier), /* Typename */ false,
387 IdentifierInfo &HLSL = AST.Idents.get("hlsl", tok::TokenKind::identifier);
425 &AST.Idents.get("element", tok::TokenKind::identifier), false, false);
432 &AST.Idents.get("element_count", tok::TokenKind::identifier), AST.IntTy,
444 IdentifierInfo &II = AST.Idents.get("vector", tok::TokenKind::identifier);
/freebsd-current/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in161 def __init__(self, pathname, identifier=None, outputdir=None,
164 self.identifier = identifier
185 ''' % (self.pathname, self.identifier, self.outputdir, self.timeout, self.user)
359 if self.identifier:
360 msga = 'Test (%s): %s%s ' % (self.identifier, self.pathname, user)
439 ''' % (self.pathname, self.identifier, self.outputdir, self.timeout, self.user,
472 pretest = Cmd(self.pre, identifier=self.identifier, outputdir=odir,
474 test = Cmd(self.pathname, identifier
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteMacros.cpp28 // If two tokens have the same kind and the same identifier info, they are
34 // Otherwise, if they are different but have the same identifier info, they
77 // If we have an identifier with no identifier info for our raw token, look
78 // up the identifier info. This is important for equality comparison of
79 // identifier tokens.
129 if (RawTokens[CurRawTok].is(tok::identifier)) {
135 RawTokens[CurRawTok+1].is(tok::identifier) &&
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp100 llvm::StringRef identifier((const char *)data.GetData(offset_ptr, 4), 4);
101 if (identifier != kIdentifierNameToDIE)
/freebsd-current/contrib/bsnmp/lib/
H A Dsnmpclient.h84 int32_t identifier; member in struct:snmp_client
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DHighlighter.h56 ColorStyle identifier; member in struct:lldb_private::HighlightStyle
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.h82 /// Return true if this is a raw identifier or an identifier kind.
84 return (K == tok::identifier) || (K == tok::raw_identifier);

Completed in 297 milliseconds

1234567