/third_party/python/Lib/http/ |
H A D | server.py | 1115 authorization = self.headers.get("authorization") 1116 if authorization: 1117 authorization = authorization.split() 1118 if len(authorization) == 2: 1120 env['AUTH_TYPE'] = authorization[0] 1121 if authorization[0].lower() == "basic": 1123 authorization = authorization[ [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | url.c | 39 const char *authorization, const char *hostname, in ff_url_join() 49 if (authorization && authorization[0]) in ff_url_join() 50 av_strlcatf(str, size, "%s@", authorization); in ff_url_join() 38 ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt, ...) ff_url_join() argument
|
H A D | utils.c | 358 char *authorization, int authorization_size, in av_url_split() 369 authorization[0] = 0; in av_url_split() 395 /* authorization (user[:pass]@hostname) */ in av_url_split() 398 av_strlcpy(authorization, at2, in av_url_split() 357 av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url) av_url_split() argument
|
H A D | url.h | 291 * @param authorization an optional authorization string, may be null. 300 const char *authorization, const char *hostname,
|
H A D | avformat.h | 2713 * @param authorization the buffer for the authorization 2714 * @param authorization_size the size of the authorization buffer 2723 char *authorization, int authorization_size,
|
/third_party/node/test/parallel/ |
H A D | test-http-incoming-matchKnownFields.js | 26 checkDest('Authorization', { authorization: undefined }, undefined); 27 checkDest('authorization', { authorization: 'test' }, 'value'); 28 checkDest('Proxy-Authorization', { 'proxy-authorization': undefined }); 29 checkDest('proxy-authorization', { 'proxy-authorization': 'test' }, 'value');
|
H A D | test-http-url.parse-auth-with-header-in-request.js | 29 // The correct authorization header is be passed 30 assert.strictEqual(request.headers.authorization, 'NoAuthForYOU'); 44 // The test here is if you set a specific authorization header in the
|
H A D | test-http-url.parse-auth.js | 29 // The correct authorization header is be passed 30 assert.strictEqual(request.headers.authorization, 'Basic dXNlcjpwYXNzOg==');
|
H A D | test-http-client-headers-array.js | 23 expectHeaders.authorization =
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/ |
H A D | index.js | 48 'proxy-authorization': true, 141 this._noAuthorization = !req.headers.authorization;
|
/third_party/curl/lib/ |
H A D | http.c | 275 char *authorization = NULL; in http_output_basic() local 303 result = Curl_base64_encode(out, strlen(out), &authorization, &size); in http_output_basic() 307 if(!authorization) { in http_output_basic() 315 authorization); in http_output_basic() 316 free(authorization); in http_output_basic() 718 !Curl_checkProxyheaders(data, conn, STRCONST("Proxy-authorization"))) || in output_auth_headers()
|
/third_party/python/Lib/test/ |
H A D | test_urllib.py | 583 authorization = ("Authorization: Basic %s\r\n" % 586 # The authorization header must be in place 587 self.assertIn(authorization, fakehttp_wrapper.buf.decode("UTF-8"))
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 3407 ** of the third through the sixth parameters of the authorization callback. 3492 ** authorized. The 3rd and 4th parameters to the authorization 16968 /* Functions used only by user authorization logic */ 16977 ** typedef for the authorization callback function. 17103 sqlite3_xauth xAuth; /* Access authorization function */ [all...] |