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

123456

/freebsd-13-stable/contrib/wpa/src/eap_common/
H A Deap_common.h26 u8 code, u8 identifier);
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.c118 * @identifier: Identifier
129 u8 code, u8 identifier)
143 hdr->identifier = identifier;
190 return eap->identifier;
128 eap_msg_alloc(int vendor, EapType 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-13-stable/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-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.h42 llvm::StringRef &identifier);
H A DCPlusPlusLanguage.h106 // Extract C++ context and identifier from a string using heuristic matching
110 // If the name is a lone C identifier (e.g. C) or a qualified C identifier
112 // and identifier will be the identifier (C and C respectively) and the
115 // C/C++ identifier, then it will return false
116 // and identifier and context will be unchanged.
120 llvm::StringRef &identifier);
/freebsd-13-stable/contrib/googletest/googletest/scripts/
H A Dpump.py396 def __init__(self, identifier=None, atomic_code=None):
397 self.identifier = identifier
402 def __init__(self, identifier=None, exp1=None, exp2=None):
403 self.identifier = identifier
409 def __init__(self, identifier=None, sep=None, code=None):
410 self.identifier = identifier
614 def GetValue(self, identifier)
[all...]
/freebsd-13-stable/contrib/wpa/src/common/
H A Dsae.h70 const char *identifier, struct sae_data *sae);
73 const struct wpabuf *token, const char *identifier);
H A Dsae.c278 size_t password_len, const char *identifier)
322 if (identifier)
323 wpa_printf(MSG_DEBUG, "SAE: password identifier: %s",
324 identifier);
328 * base = password [|| identifier]
337 if (identifier) {
338 addr[num_elem] = (const u8 *) identifier;
339 len[num_elem] = os_strlen(identifier);
436 size_t password_len, const char *identifier)
466 * password [|| identifier] || counte
276 sae_derive_pwe_ecc(struct sae_data *sae, const u8 *addr1, const u8 *addr2, const u8 *password, size_t password_len, const char *identifier) argument
434 sae_derive_pwe_ffc(struct sae_data *sae, const u8 *addr1, const u8 *addr2, const u8 *password, size_t password_len, const char *identifier) argument
597 sae_prepare_commit(const u8 *addr1, const u8 *addr2, const u8 *password, size_t password_len, const char *identifier, struct sae_data *sae) argument
752 sae_write_commit(struct sae_data *sae, struct wpabuf *buf, const struct wpabuf *token, const char *identifier) argument
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/test-runner/bin/
H A Dtest-runner.py.in158 def __init__(self, pathname, identifier=None, outputdir=None,
161 self.identifier = identifier
182 ''' % (self.pathname, self.identifier, self.outputdir, self.timeout, self.user)
324 if self.identifier:
325 msga = 'Test (%s): %s%s ' % (self.identifier, self.pathname, user)
401 ''' % (self.pathname, self.identifier, self.outputdir, self.timeout, self.user,
434 pretest = Cmd(self.pre, identifier=self.identifier, outputdir=odir,
436 test = Cmd(self.pathname, identifier
[all...]
/freebsd-13-stable/contrib/wpa/src/tls/
H A Dasn1.c68 hdr->identifier = *pos++;
69 hdr->class = hdr->identifier >> 6;
70 hdr->constructed = !!(hdr->identifier & (1 << 5));
72 if ((hdr->identifier & 0x1f) == 0x1f) {
86 hdr->tag = hdr->identifier & 0x1f;
157 * identifier components in (X*40) + Y formula.
H A Dasn1.h50 u8 identifier, class, constructed; member in struct:asn1_hdr
/freebsd-13-stable/contrib/wpa/src/eap_server/
H A Deap_tls_common.h77 u8 code, u8 identifier);
/freebsd-13-stable/sys/dev/mlxfw/
H A Dmlxfw_mfa2_format.h94 __be16 identifier; member in struct:mlxfw_mfa2_tlv_component_descriptor
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseTentative.cpp38 /// 'namespace' identifier = qualified-namespace-specifier ';'
76 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
84 /// decl-specifier-seq ref-qualifier[opt] '[' identifier-list ']'
132 // or an identifier which doesn't resolve as anything. We need tentative
181 // nested-name-specifier[opt] identifier
183 // enum nested-name-specifier[opt] identifier
196 if (Tok.is(tok::identifier))
447 // identifier.
655 /// identifier
656 /// identifier '
[all...]
H A DParseInit.cpp33 case tok::period: // designator: '.' identifier
53 case tok::identifier:
67 case tok::identifier: // designation: identifier ':'
127 /// [GNU] identifier ':'
135 /// '.' identifier
151 /// '.' identifier
165 // designation ::= identifier ':'
168 if (Tok.is(tok::identifier)) {
175 SourceLocation NameLoc = ConsumeToken(); // Eat the identifier
[all...]
/freebsd-13-stable/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-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DHighlighter.h55 ColorStyle identifier; member in struct:lldb_private::HighlightStyle
/freebsd-13-stable/contrib/bsnmp/lib/
H A Dsnmpclient.h84 int32_t identifier; member in struct:snmp_client
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.h71 /// Return true if this is a raw identifier or an identifier kind.
73 return (K == tok::identifier) || (K == tok::raw_identifier);
/freebsd-13-stable/contrib/wpa/src/eap_peer/
H A Deap_ttls.c452 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1);
1055 hdr->identifier = 0;
1065 struct wpabuf *resp, u8 identifier,
1074 data->ttls_version, identifier,
1123 "identifier=%d length=%lu",
1124 hdr->code, hdr->identifier, (unsigned long) len);
1239 u8 identifier,
1294 if (eap_ttls_encrypt_response(sm, data, resp, identifier,
1313 u8 identifier,
1349 retval = eap_ttls_encrypt_response(sm, data, resp, identifier,
1063 eap_ttls_encrypt_response(struct eap_sm *sm, struct eap_ttls_data *data, struct wpabuf *resp, u8 identifier, struct wpabuf **out_data) argument
1236 eap_ttls_process_decrypted(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct ttls_parse_avp *parse, struct wpabuf *in_decrypted, struct wpabuf **out_data) argument
1310 eap_ttls_implicit_identity_request(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1364 eap_ttls_phase2_start(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, struct wpabuf **out_data) argument
1394 eap_ttls_decrypt(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const struct wpabuf *in_data, struct wpabuf **out_data) argument
1466 eap_ttls_process_handshake(struct eap_sm *sm, struct eap_ttls_data *data, struct eap_method_ret *ret, u8 identifier, const struct wpabuf *in_data, struct wpabuf **out_data) argument
[all...]
/freebsd-13-stable/contrib/wpa/src/ap/
H A Diapp.c56 be16 identifier; member in struct:iapp_hdr
167 u16 identifier; /* next IAPP identifier */ member in struct:iapp_data
187 hdr->identifier = host_to_be16(iapp->identifier++);
224 msg.xid_info[0] = 0x81; /* XID format identifier */
341 be_to_host16(hdr->identifier), hlen);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp29 /// Returns \c true if the token can be used as an identifier in
34 /// lexed as tok::kw_*, not tok::identifier, even for Objective-C.
38 /// invokes @selector(...)). So, we allow treat any identifier or
225 (Line.startsWith(Keywords.kw_type, tok::identifier) ||
227 tok::identifier))) {
241 (Left->Previous->endsSequence(tok::identifier,
253 (!Left->Previous || !Left->Previous->is(tok::identifier))) {
295 // 'identifier' '*' 'identifier' followed by not '=' -- this
303 if (PrevPrev && PrevPrev->is(tok::identifier)
[all...]

Completed in 214 milliseconds

123456