Home
last modified time | relevance | path

Searched refs:hdrs (Results 1 – 15 of 15) sorted by relevance

/external/webp/src/dec/
Dwebp_dec.c295 WebPHeaderStructure hdrs; in ParseHeadersInternal() local
300 memset(&hdrs, 0, sizeof(hdrs)); in ParseHeadersInternal()
301 hdrs.data = data; in ParseHeadersInternal()
302 hdrs.data_size = data_size; in ParseHeadersInternal()
305 status = ParseRIFF(&data, &data_size, have_all_data, &hdrs.riff_size); in ParseHeadersInternal()
309 found_riff = (hdrs.riff_size > 0); in ParseHeadersInternal()
345 status = ParseOptionalChunks(&data, &data_size, hdrs.riff_size, in ParseHeadersInternal()
346 &hdrs.alpha_data, &hdrs.alpha_data_size); in ParseHeadersInternal()
353 status = ParseVP8Header(&data, &data_size, have_all_data, hdrs.riff_size, in ParseHeadersInternal()
354 &hdrs.compressed_size, &hdrs.is_lossless); in ParseHeadersInternal()
[all …]
/external/brotli/
DBUILD63 hdrs = [":public_headers"],
71 hdrs = [":common_headers"],
79 hdrs = [":dec_headers"],
87 hdrs = [":enc_headers"],
/external/llvm/cmake/modules/
DLLVMProcessSources.cmake58 find_all_header_files(hdrs "${ARG_ADDITIONAL_HEADER_DIRS}")
59 if (hdrs)
60 set_source_files_properties(${hdrs} PROPERTIES HEADER_FILE_ONLY ON)
63 list(APPEND sources ${ARG_ADDITIONAL_HEADERS} ${hdrs})
/external/autotest/client/bin/
Dos_dep.py67 def headers(*hdrs): argument
69 for hdr in hdrs:
/external/boringssl/src/util/
DBUILD.toplevel96 hdrs = crypto_headers + fips_fragments,
109 hdrs = ssl_headers,
119 hdrs = ssl_headers,
/external/python/cpython2/Lib/
Durllib2.py181 def __init__(self, url, code, msg, hdrs, fp): argument
184 self.hdrs = hdrs
192 self.__super_init(fp, hdrs, url, code)
204 return self.hdrs
332 hdrs = self.unredirected_hdrs.copy()
333 hdrs.update(self.headers)
334 return hdrs.items()
542 code, msg, hdrs = response.code, response.msg, response.info()
548 'http', request, response, code, msg, hdrs)
555 def http_error_default(self, req, fp, code, msg, hdrs): argument
[all …]
Durllib.py240 hdrs = fp.info()
242 return url2pathname(splithost(url1)[1]), hdrs
/external/protobuf/
Dgmock.BUILD7 hdrs = glob([
DBUILD98 hdrs = glob(["src/google/protobuf/**/*.h"]),
168 hdrs = glob(["src/**/*.h"]),
183 hdrs = ["objectivec/GPBProtocolBuffers.h"],
/external/protobuf/util/
Dgmock.BUILD7 hdrs = glob([
DBUILD98 hdrs = glob(["src/google/protobuf/**/*.h"]),
168 hdrs = glob(["src/**/*.h"]),
183 hdrs = ["objectivec/GPBProtocolBuffers.h"],
/external/python/cpython2/Doc/library/
Durllib2.rst601 .. method:: BaseHandler.http_error_default(req, fp, code, msg, hdrs)
610 will be the user-visible explanation of the code and *hdrs* will be a mapping
617 .. method:: BaseHandler.http_error_nnn(req, fp, code, msg, hdrs)
669 .. method:: HTTPRedirectHandler.redirect_request(req, fp, code, msg, hdrs, newurl)
688 .. method:: HTTPRedirectHandler.http_error_301(req, fp, code, msg, hdrs)
694 .. method:: HTTPRedirectHandler.http_error_302(req, fp, code, msg, hdrs)
699 .. method:: HTTPRedirectHandler.http_error_303(req, fp, code, msg, hdrs)
704 .. method:: HTTPRedirectHandler.http_error_307(req, fp, code, msg, hdrs)
795 .. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs)
806 .. method:: ProxyBasicAuthHandler.http_error_407(req, fp, code, msg, hdrs)
[all …]
/external/python/cpython2/Lib/test/
Dtest_urllib2.py791 hdrs = r.info()
792 hdrs.get; hdrs.has_key # r.info() gives dict from .getreply()
1402 code=None, hdrs='Content-Length:42', fp=None)
/external/autotest/client/common_lib/cros/
Ddev_server_unittest.py72 hdrs=None,
77 hdrs=None,
/external/python/cpython2/Doc/faq/
Dlibrary.rst675 reply, msg, hdrs = httpobj.getreply()