Home
last modified time | relevance | path

Searched refs:identifier (Results 1 – 25 of 408) sorted by relevance

12345678910>>...17

/freebsd-12-stable/contrib/googletest/googletest/scripts/
Dpump.py396 def __init__(self, identifier=None, atomic_code=None): argument
397 self.identifier = identifier
402 def __init__(self, identifier=None, exp1=None, exp2=None): argument
403 self.identifier = identifier
409 def __init__(self, identifier=None, sep=None, code=None): argument
410 self.identifier = identifier
614 def GetValue(self, identifier): argument
616 if identifier == var:
619 print 'ERROR: meta variable %s is undefined.' % (identifier,)
632 def GetRange(self, identifier): argument
[all …]
/freebsd-12-stable/contrib/wpa/src/common/
Ddpp_pkex.c45 pkex->identifier, &ec); in dpp_pkex_build_exchange_req()
85 if (pkex->identifier) in dpp_pkex_build_exchange_req()
86 attr_len += 4 + os_strlen(pkex->identifier); in dpp_pkex_build_exchange_req()
119 if (pkex->identifier) { in dpp_pkex_build_exchange_req()
121 wpabuf_put_le16(msg, os_strlen(pkex->identifier)); in dpp_pkex_build_exchange_req()
122 wpabuf_put_str(msg, pkex->identifier); in dpp_pkex_build_exchange_req()
173 const char *identifier, const char *code, in dpp_pkex_init() argument
194 if (identifier) { in dpp_pkex_init()
195 pkex->identifier = os_strdup(identifier); in dpp_pkex_init()
196 if (!pkex->identifier) in dpp_pkex_init()
[all …]
/freebsd-12-stable/contrib/ntp/scripts/
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";
Dinvoke-plot_summary.texi21 * plot_summary identifier:: identifier option
48 --identifier=str Origin of the data
71 @node plot_summary identifier
72 @subsection identifier option
73 @cindex plot_summary-identifier
Dplot_summary-opts33 'identifier' => '',
43 'directory=s', 'identifier=s', 'offset-limit=f',
53 --identifier=str Origin of the data
/freebsd-12-stable/contrib/llvm-project/lld/
D.clang-tidy3 - key: readability-identifier-naming.MemberCase
5 - key: readability-identifier-naming.ParameterCase
7 - key: readability-identifier-naming.VariableCase
/freebsd-12-stable/contrib/wpa/src/eap_common/
Deap_pax_common.c31 const char *identifier, in eap_pax_kdf() argument
42 if (identifier == NULL || num_blocks >= 255) in eap_pax_kdf()
49 addr[0] = (const u8 *) identifier; in eap_pax_kdf()
50 len[0] = os_strlen(identifier); in eap_pax_kdf()
Deap_common.c129 size_t payload_len, u8 code, u8 identifier) in eap_msg_alloc() argument
143 hdr->identifier = identifier; in eap_msg_alloc()
190 return eap->identifier; in eap_get_id()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
DParseTentative.cpp196 if (Tok.is(tok::identifier)) in TryConsumeDeclarationSpecifier()
922 if (Tok.is(tok::identifier)) in TryParseOperatorId()
1015 if ((Tok.isOneOf(tok::identifier, tok::kw_operator) || in TryParseDeclarator()
1016 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) || in TryParseDeclarator()
1027 } else if (Tok.is(tok::identifier)) { in TryParseDeclarator()
1116 tok::identifier, tok::comma); in TentativeParseCCC()
1260 tok::identifier); in isCXXDeclarationSpecifier()
1263 case tok::identifier: { in isCXXDeclarationSpecifier()
1271 if (!getLangOpts().ObjC && Next.is(tok::identifier)) in isCXXDeclarationSpecifier()
1293 if (Tok.isNot(tok::identifier)) in isCXXDeclarationSpecifier()
[all …]
DParseInit.cpp53 case tok::identifier: in MayBeDesignationStart()
67 case tok::identifier: // designation: identifier ':' in MayBeDesignationStart()
167 if (Tok.is(tok::identifier)) { in ParseInitializerWithPotentialDesignator()
208 if (Tok.isNot(tok::identifier)) { in ParseInitializerWithPotentialDesignator()
253 if (Tok.is(tok::identifier) && Tok.getIdentifierInfo() == Ident_super && in ParseInitializerWithPotentialDesignator()
284 } else if (getLangOpts().ObjC && Tok.is(tok::identifier)) { in ParseInitializerWithPotentialDesignator()
DParseDecl.cpp318 assert(Tok.is(tok::identifier) && "expected an identifier"); in ParseIdentifierLoc()
367 Tok.setKind(tok::identifier); in ParseAttributeArgsCommon()
370 if (Tok.is(tok::identifier)) { in ParseAttributeArgsCommon()
399 Tok.setKind(tok::identifier); in ParseAttributeArgsCommon()
411 } else if (Tok.is(tok::identifier) && in ParseAttributeArgsCommon()
585 if (!Tok.is(tok::identifier)) { in ParseMicrosoftDeclSpecArgs()
642 if (!Tok.is(tok::identifier)) { in ParseMicrosoftDeclSpecArgs()
720 if (!IsString && Tok.getKind() != tok::identifier && in ParseMicrosoftDeclSpecs()
1044 if (Tok.isNot(tok::identifier)) { in ParseAvailabilityAttribute()
1085 if (Tok.isNot(tok::identifier)) { in ParseAvailabilityAttribute()
[all …]
/freebsd-12-stable/contrib/gcc/cp/
Dmangle.c1161 write_source_name (tree identifier) in write_source_name() argument
1163 MANGLE_TRACE_TREE ("source-name", identifier); in write_source_name()
1167 if (IDENTIFIER_TEMPLATE (identifier)) in write_source_name()
1168 identifier = IDENTIFIER_TEMPLATE (identifier); in write_source_name()
1170 write_unsigned_number (IDENTIFIER_LENGTH (identifier)); in write_source_name()
1171 write_identifier (IDENTIFIER_POINTER (identifier)); in write_source_name()
1367 write_identifier (const char *identifier) in write_identifier() argument
1369 MANGLE_TRACE ("identifier", identifier); in write_identifier()
1370 write_string (identifier); in write_identifier()
2130 if (operator_name_info[i].identifier == member) in write_expression()
[all …]
Dlex.c106 tree identifier; in init_operators() local
112 identifier = get_identifier (buffer); \ in init_operators()
113 IDENTIFIER_OPNAME_P (identifier) = 1; \ in init_operators()
118 oni->identifier = identifier; \ in init_operators()
126 operator_name_info[(int) ERROR_MARK].identifier in init_operators()
Dparser.c4974 tree identifier = NULL_TREE; in cp_parser_parenthesized_expression_list() local
4999 identifier = token->u.value; in cp_parser_parenthesized_expression_list()
5061 if (identifier) in cp_parser_parenthesized_expression_list()
5062 expression_list = tree_cons (NULL_TREE, identifier, expression_list); in cp_parser_parenthesized_expression_list()
5286 tree identifier; in cp_parser_unary_expression() local
5291 identifier = cp_parser_identifier (parser); in cp_parser_unary_expression()
5293 return finish_label_address_expr (identifier); in cp_parser_unary_expression()
9074 tree identifier; in cp_parser_type_parameter() local
9080 identifier = cp_parser_identifier (parser); in cp_parser_type_parameter()
9082 identifier = NULL_TREE; in cp_parser_type_parameter()
[all …]
/freebsd-12-stable/crypto/openssh/
DPROTOCOL.agent9 particular SSH session identifier as derived from the initial key
19 string session identifier
24 identifier' is the exchange hash derived from the initial key
26 identifier using the private hostkey, as sent in the final
33 a duplicate session identifier, or any attempt to bind a connection
/freebsd-12-stable/contrib/wpa/src/eap_peer/
Deap_ttls.c467 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1); in eap_ttls_phase2_request_eap()
1084 hdr->identifier = 0; in eap_ttls_fake_identity_request()
1094 struct wpabuf *resp, u8 identifier, in eap_ttls_encrypt_response() argument
1103 data->ttls_version, identifier, in eap_ttls_encrypt_response()
1153 hdr->code, hdr->identifier, (unsigned long) len); in eap_ttls_process_phase2_eap()
1268 u8 identifier, in eap_ttls_process_decrypted() argument
1323 if (eap_ttls_encrypt_response(sm, data, resp, identifier, in eap_ttls_process_decrypted()
1342 u8 identifier, in eap_ttls_implicit_identity_request() argument
1378 retval = eap_ttls_encrypt_response(sm, data, resp, identifier, in eap_ttls_implicit_identity_request()
1394 struct eap_method_ret *ret, u8 identifier, in eap_ttls_phase2_start() argument
[all …]
Deap_gpsk.c41 u8 identifier,
45 u8 identifier);
274 u8 identifier, in eap_gpsk_process_gpsk_1() argument
301 resp = eap_gpsk_send_gpsk_2(data, identifier, in eap_gpsk_process_gpsk_1()
313 u8 identifier, in eap_gpsk_send_gpsk_2() argument
330 EAP_CODE_RESPONSE, identifier); in eap_gpsk_send_gpsk_2()
583 u8 identifier, in eap_gpsk_process_gpsk_3() argument
615 resp = eap_gpsk_send_gpsk_4(data, identifier); in eap_gpsk_process_gpsk_3()
628 u8 identifier) in eap_gpsk_send_gpsk_4() argument
639 EAP_CODE_RESPONSE, identifier); in eap_gpsk_send_gpsk_4()
Deap_peap.c618 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1); in eap_peap_phase2_request()
655 hdr->identifier); in eap_peap_phase2_request()
800 req->identifier, NULL, out_data); in eap_peap_decrypt()
839 nhdr->identifier = req->identifier; in eap_peap_decrypt()
872 "identifier=%d length=%lu", hdr->code, hdr->identifier, in eap_peap_decrypt()
919 rhdr->identifier = hdr->identifier; in eap_peap_decrypt()
944 rhdr->identifier = hdr->identifier; in eap_peap_decrypt()
976 data->peap_version, req->identifier, in eap_peap_decrypt()
1006 id = req->identifier; in eap_peap_process()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
DTokenAnnotator.cpp246 (Line.startsWith(Keywords.kw_type, tok::identifier) || in parseParens()
248 tok::identifier))) { in parseParens()
261 (Left->Previous->endsSequence(tok::identifier, in parseParens()
273 (!Left->Previous || !Left->Previous->is(tok::identifier))) { in parseParens()
336 if (PrevPrev && PrevPrev->is(tok::identifier) && in parseParens()
338 CurrentToken->is(tok::identifier) && Next->isNot(tok::equal)) { in parseParens()
451 if (Tok.Previous && Tok.Previous->is(tok::identifier)) in isCSharpAttributeSpecifier()
491 AttrTok->Next->startsSequence(tok::identifier, tok::l_paren)) in isCSharpAttributeSpecifier()
509 if (AttrTok->startsSequence(tok::kw_using, tok::identifier, tok::colon)) in isCpp11AttributeSpecifier()
511 if (AttrTok->isNot(tok::identifier)) in isCpp11AttributeSpecifier()
[all …]
DMacroExpander.cpp59 if (!Current->is(tok::identifier)) in parse()
78 while (Current->is(tok::identifier)) { in parseParams()
178 if (!Tok->is(tok::identifier) || ExpandedArgs.contains(Tok->TokenText)) in expand()
/freebsd-12-stable/contrib/ntp/scripts/stats/
DREADME.stats23 140.173.96.1 peer identifier (IP address or receiver identifier)
59 127.127.4.1 receiver identifier (Spectracom 8170/Netclock-2)
172 M station identifier; data follows
180 W AQ 0 0 3387.80 -31.0 station identifier and data
181 X OK 0 0 1740.27 -11.2 2.20E-07 .294 station identifier and data
182 Y OK 0 0 2180.71 -4.6 2.68E-07 .198 station identifier and data
183 Z CV 0 0 3392.94 -30.0 station identifier and data
/freebsd-12-stable/usr.bin/mkimg/
Dvhdx.c485 struct vhdx_filetype_identifier identifier; in vhdx_write() local
490 memset(&identifier, 0, sizeof(identifier)); in vhdx_write()
491 le64enc(&identifier.signature, VHDX_FILETYPE_ID_SIGNATURE); in vhdx_write()
492 error = vhdx_write_and_pad(fd, &identifier, sizeof(identifier), SIZE_64KB); in vhdx_write()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DDiagnosticLexKinds.td64 def ext_dollar_in_identifier : Extension<"'$' in identifier">,
65 InGroup<DiagGroup<"dollar-in-identifier-extension">>;
122 "treating Unicode character <U+%0> as identifier character rather than "
125 "identifier contains Unicode character <U+%0> that is invisible in "
132 "treating as '\\' followed by identifier">, InGroup<Unicode>;
137 "treating as '\\' followed by identifier">, InGroup<Unicode>;
150 "%select{using this character in an identifier|starting an identifier with "
154 "using this character in an identifier is incompatible with C++98">,
165 "treating as '\\' followed by identifier">, InGroup<Unicode>;
230 "identifier after literal will be treated as a user-defined literal suffix "
[all …]
/freebsd-12-stable/contrib/wpa/src/ap/
Diapp.c56 be16 identifier; member
167 u16 identifier; /* next IAPP identifier */ member
187 hdr->identifier = host_to_be16(iapp->identifier++); in iapp_send_add()
341 be_to_host16(hdr->identifier), hlen); in iapp_receive_udp()
/freebsd-12-stable/crypto/openssl/doc/man3/
DCMS_add1_recipient_cert.pod27 wrapping algorithm B<nid>, identifier B<id> of length B<idlen> and optional
44 identifier value instead. An error occurs if all recipient certificates do not
45 have a subject key identifier extension.

12345678910>>...17