/third_party/cups/ |
D | ohos-add-openssl.patch | 253 + DEBUG_puts("1cupsMakeServerCredentials: Successfully created credentials."); 266 + * 'cupsSetServerCredentials()' - Set the default server credentials. 268 + * Note: The server credentials are used by all threads in the running process. 329 + * 'httpCopyCredentials()' - Copy the credentials associated with the peer in 338 + cups_array_t **credentials) // O - Array of credentials 343 + DEBUG_printf(("httpCopyCredentials(http=%p, credentials=%p)", http, credentials)); 345 + if (credentials) 346 + *credentials = NULL; 348 + if (!http || !http->tls || !credentials) 351 + *credentials = cupsArrayNew(NULL, NULL); [all …]
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | rtsp.c | 692 GstRTSPAuthCredential **credentials; in GST_START_TEST() local 702 credentials = in GST_START_TEST() 705 fail_unless (credentials != NULL); in GST_START_TEST() 707 credential = credentials; in GST_START_TEST() 714 gst_rtsp_auth_credentials_free (credentials); in GST_START_TEST() 725 credentials = in GST_START_TEST() 728 fail_unless (credentials != NULL); in GST_START_TEST() 730 credential = credentials; in GST_START_TEST() 741 gst_rtsp_auth_credentials_free (credentials); in GST_START_TEST() 752 credentials = in GST_START_TEST() [all …]
|
/third_party/curl/lib/vauth/ |
D | spnego_sspi.c | 150 if(!nego->credentials) { in Curl_auth_decode_spnego_message() 166 nego->credentials = calloc(1, sizeof(CredHandle)); in Curl_auth_decode_spnego_message() 167 if(!nego->credentials) in Curl_auth_decode_spnego_message() 176 nego->credentials, &expiry); in Curl_auth_decode_spnego_message() 245 nego->status = s_pSecFn->InitializeSecurityContext(nego->credentials, in Curl_auth_decode_spnego_message() 341 if(nego->credentials) { in Curl_auth_cleanup_spnego() 342 s_pSecFn->FreeCredentialsHandle(nego->credentials); in Curl_auth_cleanup_spnego() 343 free(nego->credentials); in Curl_auth_cleanup_spnego() 344 nego->credentials = NULL; in Curl_auth_cleanup_spnego()
|
D | ntlm_sspi.c | 138 ntlm->credentials = calloc(1, sizeof(CredHandle)); in Curl_auth_create_ntlm_type1_message() 139 if(!ntlm->credentials) in Curl_auth_create_ntlm_type1_message() 147 ntlm->credentials, &expiry); in Curl_auth_create_ntlm_type1_message() 169 status = s_pSecFn->InitializeSecurityContext(ntlm->credentials, NULL, in Curl_auth_create_ntlm_type1_message() 308 status = s_pSecFn->InitializeSecurityContext(ntlm->credentials, in Curl_auth_create_ntlm_type3_message() 352 if(ntlm->credentials) { in Curl_auth_cleanup_ntlm() 353 s_pSecFn->FreeCredentialsHandle(ntlm->credentials); in Curl_auth_cleanup_ntlm() 354 free(ntlm->credentials); in Curl_auth_cleanup_ntlm() 355 ntlm->credentials = NULL; in Curl_auth_cleanup_ntlm()
|
D | digest_sspi.c | 102 CredHandle credentials; in Curl_auth_create_digest_md5_message() local 167 &credentials, &expiry); in Curl_auth_create_digest_md5_message() 193 status = s_pSecFn->InitializeSecurityContext(&credentials, NULL, spn, in Curl_auth_create_digest_md5_message() 200 s_pSecFn->CompleteAuthToken(&credentials, &resp_desc); in Curl_auth_create_digest_md5_message() 206 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_auth_create_digest_md5_message() 225 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_auth_create_digest_md5_message() 476 CredHandle credentials; in Curl_auth_create_digest_http_message() local 534 &credentials, &expiry); in Curl_auth_create_digest_http_message() 566 s_pSecFn->FreeCredentialsHandle(&credentials); in Curl_auth_create_digest_http_message() 580 status = s_pSecFn->InitializeSecurityContext(&credentials, NULL, in Curl_auth_create_digest_http_message() [all …]
|
D | krb5_sspi.c | 140 if(!krb5->credentials) { in Curl_auth_create_gssapi_user_message() 156 krb5->credentials = calloc(1, sizeof(CredHandle)); in Curl_auth_create_gssapi_user_message() 157 if(!krb5->credentials) in Curl_auth_create_gssapi_user_message() 166 krb5->credentials, &expiry); in Curl_auth_create_gssapi_user_message() 200 status = s_pSecFn->InitializeSecurityContext(krb5->credentials, in Curl_auth_create_gssapi_user_message() 456 if(krb5->credentials) { in Curl_auth_cleanup_gssapi() 457 s_pSecFn->FreeCredentialsHandle(krb5->credentials); in Curl_auth_cleanup_gssapi() 458 free(krb5->credentials); in Curl_auth_cleanup_gssapi() 459 krb5->credentials = NULL; in Curl_auth_cleanup_gssapi()
|
/third_party/node/lib/internal/bootstrap/switches/ |
D | does_own_process_state.js | 3 const credentials = internalBinding('credentials'); constant 11 if (credentials.implementsPosixCredentials) { 12 const wrapped = wrapPosixCredentialSetters(credentials); 31 function wrapPosixCredentialSetters(credentials) { argument 49 } = credentials;
|
D | does_not_own_process_state.js | 3 const credentials = internalBinding('credentials'); constant 13 if (credentials.implementsPosixCredentials) {
|
/third_party/node/lib/internal/bootstrap/ |
D | node.js | 216 const credentials = internalBinding('credentials'); constant 217 if (credentials.implementsPosixCredentials) { 218 process.getuid = credentials.getuid; 219 process.geteuid = credentials.geteuid; 220 process.getgid = credentials.getgid; 221 process.getegid = credentials.getegid; 222 process.getgroups = credentials.getgroups;
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-sigv4/ |
D | README.md | 16 ## credentials section in lws minimal secure streams sigv4 17 credentials are read from ~/.aws/credentials, make sure you have valid keyid and 18 key. One need to call lws_ss_sigv4_set_aws_key() to plug in aws credentials into
|
/third_party/node/deps/undici/src/lib/fetch/ |
D | request.js | 169 credentials: request.credentials, property 275 if (init.credentials !== undefined) { 276 request.credentials = init.credentials 611 get credentials () { getter in Request 613 return this[kState].credentials 771 credentials: 'same-origin', property 829 credentials: kEnumerableProperty, property
|
/third_party/ffmpeg/libavformat/ |
D | libamqp.c | 65 char hostname[STR_LEN], credentials[STR_LEN], path[STR_LEN]; in amqp_proto_open() local 78 av_url_split(NULL, 0, credentials, sizeof(credentials), in amqp_proto_open() 89 p = strchr(credentials, ':'); in amqp_proto_open() 102 user = credentials; in amqp_proto_open()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-deaddrop/ |
D | README.md | 6 The demo is protected by basic auth credentials defined in the file at 7 ./ba-passwords - by default the credentials are user: user1, password: password; 46 Give your browser "user1" and "password" as the credentials. For testing to
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
D | README-MULTI-AP | 115 BSS credentials; instead, it should respond with the (potentially different) 116 backhaul BSS credentials. 121 credentials when hostapd receives a WPS M1 message with the Multi-AP IE. Only 123 to specify authentication or encryption options. For the backhaul credentials, 127 specify the backhaul credentials, since the backhaul and fronthaul credentials 140 multi_ap_backhaul_wpa_passphrase are set to the credentials of a backhaul BSS 150 7. AP sends M8 with backhaul instead of fronthaul credentials.
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
D | README-MULTI-AP | 115 BSS credentials; instead, it should respond with the (potentially different) 116 backhaul BSS credentials. 121 credentials when hostapd receives a WPS M1 message with the Multi-AP IE. Only 123 to specify authentication or encryption options. For the backhaul credentials, 127 specify the backhaul credentials, since the backhaul and fronthaul credentials 140 multi_ap_backhaul_wpa_passphrase are set to the credentials of a backhaul BSS 150 7. AP sends M8 with backhaul instead of fronthaul credentials.
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
D | wpas-dbus-new-wps.py | 33 def credentials(cred): function 62 bus.add_signal_receiver(credentials,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/ |
D | wpas-dbus-new-wps.py | 33 def credentials(cred): function 62 bus.add_signal_receiver(credentials,
|
/third_party/curl/tests/data/ |
D | test899 | 39 URL with credentials redirects to URL with different credentials
|
/third_party/node/src/ |
D | node_credentials.cc | 48 namespace credentials { namespace 486 NODE_BINDING_CONTEXT_AWARE_INTERNAL(credentials, node::credentials::Initialize) 487 NODE_BINDING_EXTERNAL_REFERENCE(credentials, 488 node::credentials::RegisterExternalReferences)
|
/third_party/grpc/ |
D | BUILD.gn | 1214 "${GRPC_DIR}/src/core/lib/security/credentials/alts/alts_credentials.cc", 1215 "${GRPC_DIR}/src/core/lib/security/credentials/alts/alts_credentials.h", 1216 "${GRPC_DIR}/src/core/lib/security/credentials/alts/check_gcp_environment.cc", 1217 "${GRPC_DIR}/src/core/lib/security/credentials/alts/check_gcp_environment.h", 1218 "${GRPC_DIR}/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc", 1219 "${GRPC_DIR}/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc", 1220 "${GRPC_DIR}/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc", 1221 "${GRPC_DIR}/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc", 1222 "${GRPC_DIR}/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc", 1223 "${GRPC_DIR}/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h", [all …]
|
/third_party/node/deps/npm/docs/content/commands/ |
D | npm-logout.md | 22 authentication, this will clear the credentials in your user configuration. 25 If `--scope` is provided, this will find the credentials for the registry
|
/third_party/node/deps/undici/src/types/ |
D | fetch.d.ts | 112 credentials?: RequestCredentials 142 readonly credentials: RequestCredentials
|
/third_party/python/Lib/logging/ |
D | handlers.py | 1000 credentials=None, secure=None, timeout=5.0): argument 1022 if isinstance(credentials, (list, tuple)): 1023 self.username, self.password = credentials 1178 def __init__(self, host, url, method="GET", secure=False, credentials=None, argument 1195 self.credentials = credentials 1251 if self.credentials: 1253 s = ('%s:%s' % self.credentials).encode('utf-8')
|
/third_party/node/deps/npm/node_modules/sigstore/dist/ca/ |
D | format.js | 6 credentials: {
|
/third_party/node/deps/npm/node_modules/sigstore/dist/external/ |
D | fulcio.d.ts | 6 credentials: { property
|