Home
last modified time | relevance | path

Searched refs:get_header (Results 1 – 20 of 20) sorted by relevance

/third_party/mesa3d/src/util/
Dralloc.c75 get_header(const void *ptr) in get_header() function
133 parent = ctx != NULL ? get_header(ctx) : NULL; in ralloc_size()
161 old = get_header(ptr); in resize()
257 info = get_header(ptr); in ralloc_free()
307 info = get_header(ptr); in ralloc_steal()
308 parent = new_ctx ? get_header(new_ctx) : NULL; in ralloc_steal()
323 old_info = get_header(old_ctx); in ralloc_adopt()
324 new_info = get_header(new_ctx); in ralloc_adopt()
352 info = get_header(ptr); in ralloc_parent()
359 ralloc_header *info = get_header(ptr); in ralloc_set_destructor()
/third_party/python/Lib/test/
Dtest_http_cookiejar.py322 cookie_hdr = req.get_header("Cookie", "")
1391 self.assertEqual(req.get_header("Cookie"), "CUSTOMER=WILE_E_COYOTE")
1392 self.assertEqual(req.get_header("Cookie2"), '$Version="1"')
1401 h = req.get_header("Cookie")
1412 h = req.get_header("Cookie")
1420 h = req.get_header("Cookie")
1461 self.assertEqual(req.get_header("Cookie"),
1472 self.assertRegex(req.get_header("Cookie"),
1820 self.assertIn("PART_NUMBER=3,4", req.get_header("Cookie"))
1821 self.assertIn("Customer=WILE_E_COYOTE",req.get_header("Cookie"))
[all …]
Dtest_urllib2.py132 self.assertIsNone(req.get_header("Not-there"))
133 self.assertEqual(req.get_header("Not-there", "default"), "default")
938 te = newreq.get_header('Transfer-encoding')
945 self.assertEqual(int(newreq.get_header('Content-length')), 30)
960 self.assertEqual(newreq.get_header('Transfer-encoding'), 'chunked')
966 self.assertEqual(int(newreq.get_header('Content-length')), 30)
986 self.assertEqual(newreq.get_header('Content-length'), None)
987 self.assertEqual(newreq.get_header('Transfer-encoding'),
990 self.assertEqual(int(newreq.get_header('Content-length')),
1007 self.assertEqual(newreq.get_header('Content-length'), None)
[all …]
Dtest_urllib2net.py223 self.assertEqual(request.get_header('User-agent'),'Test-Agent')
/third_party/python/Lib/test/test_tools/
Dtest_i18n.py21 def get_header(self, data): member in Test_pygettext
75 header = self.get_header(data)
102 header = self.get_header(data)
/third_party/skia/third_party/externals/freetype/include/freetype/internal/services/
Dsvwinfnt.h38 FT_WinFnt_GetHeaderFunc get_header; in FT_DEFINE_SERVICE() local
/third_party/nghttp2/src/
Dhttp2.h130 const Headers::value_type *get_header(const Headers &nva, const char *name);
355 const Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token,
358 Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token,
Dhttp2_test.cc114 rv = http2::get_header(nva, "delta"); in test_http2_get_header()
118 rv = http2::get_header(nva, "bravo"); in test_http2_get_header()
122 rv = http2::get_header(nva, "foxtrot"); in test_http2_get_header()
128 rv = http2::get_header(hdidx, http2::HD_CONTENT_LENGTH, nva); in test_http2_get_header()
Dhttp2.cc304 const Headers::value_type *get_header(const Headers &nva, const char *name) { in get_header() function
988 const Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token, in get_header() function
997 Headers::value_type *get_header(const HeaderIndex &hdidx, int32_t token, in get_header() function
Dnghttp.cc506 auto method = http2::get_header(build_headers, ":method"); in submit_request()
1641 auto content_type_ptr = http2::get_header(req->res_nva, "content-type"); in output_har()
/third_party/skia/third_party/externals/freetype/src/base/
Dftwinfnt.c44 error = service->get_header( face, header ); in FT_Get_WinFNT_Header()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-color-cbdt-table.hh287 auto *header_prime = subtable_prime->get_header (); in copy_glyph_at_idx()
333 const IndexSubtableHeader* get_header () const { return &u.header; } in get_header() function
390 auto *old_header = old_subtable->get_header (); in add_new_subtable()
404 auto *next_header = next_subtable->get_header (); in add_new_subtable()
/third_party/skia/tools/skpbench/
Dskpbench.py183 def get_header(cls, outfile=sys.stdout): member in SKPBench
308 emit_result(SKPBench.get_header(), resultsfile)
/third_party/python/Lib/urllib/
Drequest.py311 host = request.get_header("Host", "")
413 def get_header(self, header_name, default=None): member in Request
1017 if req.get_header(self.auth_header, None) == auth:
/third_party/mesa3d/docs/relnotes/
D17.0.0.rst186 [swrast] ralloc.c:84: get_header: Assertion \`info->canary == CANARY'
D7.11.rst145 [glsl] ralloc.c:78: get_header: Assertion \`info->canary == 0x5A1106'
/third_party/python/Lib/http/
Dcookiejar.py631 host = request.get_header("Host", "")
/third_party/python/Doc/library/
Dhttp.cookiejar.rst165 :meth:`get_header`, :meth:`header_items`, :meth:`add_unredirected_header`
Durllib.request.rst587 .. method:: Request.get_header(header_name, default=None)
Dtyping.rst2016 def get_header(self, name: str) -> str: ...