Home
last modified time | relevance | path

Searched refs:authorization (Results 1 - 13 of 13) sorted by relevance

/third_party/python/Lib/http/
H A Dserver.py1115 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 Durl.c39 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 Dutils.c358 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 Durl.h291 * @param authorization an optional authorization string, may be null.
300 const char *authorization, const char *hostname,
H A Davformat.h2713 * @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 Dtest-http-incoming-matchKnownFields.js26 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 Dtest-http-url.parse-auth-with-header-in-request.js29 // 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 Dtest-http-url.parse-auth.js29 // The correct authorization header is be passed
30 assert.strictEqual(request.headers.authorization, 'Basic dXNlcjpwYXNzOg==');
H A Dtest-http-client-headers-array.js23 expectHeaders.authorization =
/third_party/node/deps/npm/node_modules/http-cache-semantics/
H A Dindex.js48 'proxy-authorization': true,
141 this._noAuthorization = !req.headers.authorization;
/third_party/curl/lib/
H A Dhttp.c275 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 Dtest_urllib.py583 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 Dsqlite3.c3407 ** 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...]

Completed in 142 milliseconds