Home
last modified time | relevance | path

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

12345678910>>...20

/src/crypto/krb5/src/ccapi/lib/
H A Dccapi_context.c44 cci_identifier_t identifier; member
175 context->identifier = cci_identifier_uninitialized; in cc_initialize()
218 cci_identifier_release (context->identifier); in ccapi_context_release()
244 context->identifier, in ccapi_context_get_change_time()
255 err = cci_context_change_time_update (context->identifier, in ccapi_context_get_change_time()
294 context->identifier, in ccapi_context_wait_for_change()
329 context->identifier, in ccapi_context_get_default_ccache_name()
367 cci_identifier_t identifier = NULL; in ccapi_context_open_ccache() local
387 context->identifier, in ccapi_context_open_ccache()
397 err = cci_identifier_read (&identifier, reply); in ccapi_context_open_ccache()
[all …]
H A Dccapi_ccache_iterator.c37 cci_identifier_t identifier; member
86 err = cci_identifier_copy (&ccache_iterator->identifier, in_identifier); in cci_ccache_iterator_new()
111 err = cci_identifier_write (ccache_iterator->identifier, in_stream); in cci_ccache_iterator_write()
129 err = cci_identifier_is_initialized (ccache_iterator->identifier, in ccapi_ccache_iterator_release()
134 ccache_iterator->identifier, in ccapi_ccache_iterator_release()
147 cci_identifier_release (ccache_iterator->identifier); in ccapi_ccache_iterator_release()
163 cci_identifier_t identifier = NULL; in ccapi_ccache_iterator_next() local
171 err = cci_identifier_is_initialized (ccache_iterator->identifier, in ccapi_ccache_iterator_next()
182 ccache_iterator->identifier, in ccapi_ccache_iterator_next()
188 err = cci_identifier_read (&identifier, reply); in ccapi_ccache_iterator_next()
[all …]
H A Dccapi_ccache.c40 cci_identifier_t identifier; member
107 err = cci_identifier_copy (&ccache->identifier, in_identifier); in cci_ccache_new()
132 err = cci_identifier_write (ccache->identifier, in_stream); in cci_ccache_write()
152 cci_identifier_release (ccache->identifier); in ccapi_ccache_release()
172 ccache->identifier, in ccapi_ccache_destroy()
195 ccache->identifier, in ccapi_ccache_set_default()
217 ccache->identifier, in ccapi_ccache_get_credentials_version()
246 ccache->identifier, in ccapi_ccache_get_name()
290 ccache->identifier, in ccapi_ccache_get_principal()
337 ccache->identifier, in ccapi_ccache_set_principal()
[all …]
H A Dccapi_credentials_iterator.c37 cci_identifier_t identifier; member
86 err = cci_identifier_copy (&credentials_iterator->identifier, in_identifier); in cci_credentials_iterator_new()
111 err = cci_identifier_write (credentials_iterator->identifier, in_stream); in cci_credentials_iterator_write()
128 credentials_iterator->identifier, in ccapi_credentials_iterator_release()
140 cci_identifier_release (credentials_iterator->identifier); in ccapi_credentials_iterator_release()
161 credentials_iterator->identifier, in ccapi_credentials_iterator_next()
183 cci_identifier_t identifier = NULL; in ccapi_credentials_iterator_clone() local
190 credentials_iterator->identifier, in ccapi_credentials_iterator_clone()
196 err = cci_identifier_read (&identifier, reply); in ccapi_credentials_iterator_clone()
200 err = cci_credentials_iterator_new (out_credentials_iterator, identifier); in ccapi_credentials_iterator_clone()
[all …]
H A Dccapi_credentials.c38 cci_identifier_t identifier; member
90 err = cci_identifier_read (&credentials->identifier, in_stream); in cci_credentials_read()
119 err = cci_identifier_write (credentials->identifier, in_stream); in cci_credentials_write()
140 err = cci_identifier_compare (credentials->identifier, in ccapi_credentials_compare()
141 compare_to_credentials->identifier, in ccapi_credentials_compare()
160 cci_identifier_release (credentials->identifier); in ccapi_credentials_release()
/src/sys/contrib/device-tree/Bindings/dma/
H A Datmel-xdma.txt13 - bit 13: SIF, source interface identifier, used to get the memory
14 interface identifier,
15 - bit 14: DIF, destination interface identifier, used to get the peripheral
16 interface identifier,
17 - bit 30-24: PERID, peripheral identifier.
35 - bit 13: SIF, source interface identifier, used to get the memory
36 interface identifier,
37 - bit 14: DIF, destination interface identifier, used to get the peripheral
38 interface identifier,
39 - bit 30-24: PERID, peripheral identifier.
/src/crypto/krb5/src/ccapi/common/
H A Dcci_identifier.c59 cci_identifier_t identifier = NULL; in cci_identifier_alloc() local
66 identifier = malloc (sizeof (*identifier)); in cci_identifier_alloc()
67 if (identifier) { in cci_identifier_alloc()
68 *identifier = cci_identifier_initializer; in cci_identifier_alloc()
75 identifier->server_id = strdup (in_server_id); in cci_identifier_alloc()
76 if (!identifier->server_id) { err = cci_check_error (ccErrNoMem); } in cci_identifier_alloc()
80 identifier->object_id = strdup (in_object_id); in cci_identifier_alloc()
81 if (!identifier->object_id) { err = cci_check_error (ccErrNoMem); } in cci_identifier_alloc()
85 *out_identifier = identifier; in cci_identifier_alloc()
86 identifier = NULL; /* take ownership */ in cci_identifier_alloc()
[all …]
H A Dcci_message.c98 cci_identifier_t identifier = NULL; in cci_message_read_request_header() local
109 err = cci_identifier_read (&identifier, in_request); in cci_message_read_request_header()
114 *out_identifier = identifier; in cci_message_read_request_header()
115 identifier = NULL; /* take ownership */ in cci_message_read_request_header()
118 cci_identifier_release (identifier); in cci_message_read_request_header()
/src/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSL.cpp57 if (!Tok.is(tok::identifier)) { in ParseHLSLBuffer()
58 Diag(Tok, diag::err_expected) << tok::identifier; in ParseHLSLBuffer()
132 else if (Tok.is(tok::identifier)) in ParseHLSLAnnotations()
157 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
158 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLAnnotations()
173 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
174 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLAnnotations()
200 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
201 Diag(Tok.getLocation(), diag::err_expected) << tok::identifier; in ParseHLSLAnnotations()
229 if (!Tok.is(tok::identifier)) { in ParseHLSLAnnotations()
[all …]
H A DParseTentative.cpp66 case tok::identifier: { in isCXXDeclarationStatement()
76 case tok::identifier: { in isCXXDeclarationStatement()
95 if (NextToken().is(tok::identifier)) in isCXXDeclarationStatement()
246 if (Tok.is(tok::identifier)) in TryConsumeDeclarationSpecifier()
1007 if (Tok.is(tok::identifier)) in TryParseOperatorId()
1101 if ((Tok.isOneOf(tok::identifier, tok::kw_operator) || in TryParseDeclarator()
1102 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) || in TryParseDeclarator()
1113 } else if (Tok.is(tok::identifier)) { in TryParseDeclarator()
1201 tok::identifier, tok::comma); in TentativeParseCCC()
1347 tok::identifier, in isCXXDeclarationSpecifier()
[all …]
/src/contrib/wpa/src/common/
H A Ddpp_pkex.c44 pkex->code_len, pkex->identifier, &ec); in dpp_pkex_build_exchange_req()
84 if (pkex->identifier) in dpp_pkex_build_exchange_req()
85 attr_len += 4 + os_strlen(pkex->identifier); in dpp_pkex_build_exchange_req()
118 if (pkex->identifier) { in dpp_pkex_build_exchange_req()
120 wpabuf_put_le16(msg, os_strlen(pkex->identifier)); in dpp_pkex_build_exchange_req()
121 wpabuf_put_str(msg, pkex->identifier); in dpp_pkex_build_exchange_req()
175 const char *identifier, const char *code, in dpp_pkex_init() argument
196 if (identifier) { in dpp_pkex_init()
197 pkex->identifier = os_strdup(identifier); in dpp_pkex_init()
198 if (!pkex->identifier) in dpp_pkex_init()
[all …]
/src/contrib/ntp/scripts/
H A Dplot_summary.in28 my ($identifier, $offset_limit, $gnuplot_terminal, $wait_after_plot,
39 $identifier = $opts->{'identifier'};
40 if (!$identifier) {
41 $identifier = "host".`hostname`;
42 chomp $identifier;
171 print "set title \"Loop Summary for $identifier: " .
217 print "set title \"Loop Summary for $identifier: " .
294 "\"Peer Summary for $peer on $identifier since $first_day\"\n";
H A 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
/src/crypto/krb5/src/ccapi/server/
H A Dccs_credentials.c30 cci_identifier_t identifier; member
67 err = ccs_server_new_identifier (&credentials->identifier); in ccs_credentials_new()
92 cci_identifier_release (io_credentials->identifier); in ccs_credentials_release()
110 err = cci_identifier_write (in_credentials->identifier, io_stream); in ccs_credentials_write()
133 err = cci_identifier_compare (in_credentials->identifier, in ccs_credentials_compare_identifier()
/src/contrib/llvm-project/clang/lib/Format/
H A DQualifierAlignmentFixer.cpp242 if (PreviousCheck->isOneOf(TT_PointerOrReference, tok::identifier, in analyzeRight()
324 if (TypeToken->isOneOf(tok::kw_auto, tok::identifier)) { in analyzeRight()
338 Next->startsSequence(tok::coloncolon, tok::identifier) || in analyzeRight()
340 tok::identifier))) { in analyzeRight()
344 } else if (Next->startsSequence(tok::coloncolon, tok::identifier)) { in analyzeRight()
427 if (TypeToken->isOneOf(tok::kw_auto, tok::identifier, TT_TemplateCloser)) { in analyzeLeft()
443 if (Tok->is(tok::identifier) && Previous->is(tok::coloncolon)) in analyzeLeft()
449 if (Tok->is(tok::identifier) && Previous->is(tok::kw_template) && in analyzeLeft()
454 if (Tok->endsSequence(tok::kw_auto, tok::identifier)) in analyzeLeft()
481 PreColonColon->isOneOf(TT_TemplateCloser, tok::identifier)) { in analyzeLeft()
[all …]
/src/contrib/llvm-project/lld/
H A D.clang-tidy3 - key: readability-identifier-naming.MemberCase
5 - key: readability-identifier-naming.ParameterCase
7 - key: readability-identifier-naming.VariableCase
/src/contrib/wpa/src/eap_common/
H A 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()
H A 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()
/src/sys/contrib/device-tree/Bindings/clock/
H A Dhi3620-clock.txt17 Each clock is assigned an identifier and client nodes use this identifier
20 All these identifier could be found in <dt-bindings/clock/hi3620-clock.h>.
H A Dhix5hd2-clock.txt12 Each clock is assigned an identifier and client nodes use this identifier
15 All these identifier could be found in <dt-bindings/clock/hix5hd2-clock.h>.
H A Dmarvell,pxa910.txt18 Each clock is assigned an identifier and client nodes use this identifier
21 All these identifier could be found in <dt-bindings/clock/marvell-pxa910.h>.
H A Dmarvell,pxa168.txt18 Each clock is assigned an identifier and client nodes use this identifier
21 All these identifier could be found in <dt-bindings/clock/marvell,pxa168.h>.
H A Dhi3670-clock.txt24 Each clock is assigned an identifier and client nodes use this identifier
27 All these identifier could be found in <dt-bindings/clock/hi3670-clock.h>.
H A Dhi3660-clock.txt28 Each clock is assigned an identifier and client nodes use this identifier
31 All these identifier could be found in <dt-bindings/clock/hi3660-clock.h>.
H A Dhisi-crg.txt24 Each clock is assigned an identifier and client nodes use this identifier
27 All these identifier could be found in <dt-bindings/clock/hi3519-clock.h>.

12345678910>>...20