Searched defs:fetch (Results 1 - 25 of 28) sorted by relevance

12

/external/jetty/src/java/org/eclipse/jetty/security/
H A DCrossContextPsuedoSession.java30 T fetch(HttpServletRequest request); method in interface:CrossContextPsuedoSession
H A DHashCrossContextPsuedoSession.java49 public T fetch(HttpServletRequest request) method in class:HashCrossContextPsuedoSession
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
H A Dtestserver.py75 def fetch(path): function
82 # build a uri, fetch and return
85 assert "PATH_INFO: /foo" in fetch("/foo")
86 assert "PATH_INFO: /womble" in fetch("/womble")
92 # and then... fetch it...
/external/deqp/external/
H A Dfetch_sources.py38 def fetch (pkg): function
106 help='Clean only, do not fetch/extract')
120 fetch(pkg)
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
H A DCrawler.java75 fetch(url);
82 public void fetch(URL url) throws IOException { method in class:Crawler
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch.c50 * Perform the fetch from API vertex elements & vertex buffers, to a
60 draw_pt_fetch_prepare(struct pt_fetch *fetch, argument
65 struct draw_context *draw = fetch->draw;
72 fetch->vertex_size = vertex_size;
140 if (!fetch->translate ||
141 translate_key_compare(&fetch->translate->key, &key) != 0)
144 fetch->translate = translate_cache_find(fetch->cache, &key);
150 draw_pt_fetch_run(struct pt_fetch *fetch, argument
155 struct draw_context *draw = fetch
177 draw_pt_fetch_run_linear(struct pt_fetch *fetch, unsigned start, unsigned count, char *verts) argument
206 struct pt_fetch *fetch = CALLOC_STRUCT(pt_fetch); local
222 draw_pt_fetch_destroy(struct pt_fetch *fetch) argument
[all...]
H A Ddraw_pt_vsplit.c54 /* map a fetch element to a draw element */
83 * Add a fetch element and add it to the draw elements.
86 vsplit_add_cache(struct vsplit_frontend *vsplit, unsigned fetch) argument
91 fetch = MIN2(fetch, draw->pt.max_index);
93 hash = fetch % MAP_SIZE;
95 if (vsplit->cache.fetches[hash] != fetch) {
97 vsplit->cache.fetches[hash] = fetch;
100 /* add fetch */
102 vsplit->fetch_elts[vsplit->cache.num_fetch_elts++] = fetch;
114 vsplit_add_cache_uint(struct vsplit_frontend *vsplit, unsigned fetch) argument
[all...]
H A Ddraw_vs_variant.c42 /* A first pass at incorporating vertex fetch/emit functionality into
56 struct translate *fetch; member in struct:draw_vs_variant_generic
74 vsvg->fetch->set_buffer(vsvg->fetch,
143 vsvg->fetch->run_elts( vsvg->fetch,
209 vsvg->fetch->run( vsvg->fetch,
273 struct translate_key fetch, emit; local
291 /* Build free-standing fetch an
[all...]
H A Ddraw_pt_fetch_shade_pipeline.c45 struct pt_fetch *fetch; member in struct:fetch_pipeline_middle_end
95 draw_pt_fetch_prepare( fpme->fetch,
131 static void fetch( struct pt_fetch *fetch, argument
136 draw_pt_fetch_run_linear( fetch,
142 draw_pt_fetch_run( fetch,
228 fetch( fpme->fetch, fetch_info, (char *)fetched_vert_info.verts );
230 /* Finished with fetch:
392 if (fpme->fetch)
[all...]
H A Ddraw_pt_fetch_shade_pipeline_llvm.c46 struct pt_fetch *fetch; member in struct:llvm_middle_end
258 /* Finished with fetch and vs:
405 if (fpme->fetch)
406 draw_pt_fetch_destroy( fpme->fetch );
442 fpme->fetch = draw_pt_fetch_create( draw );
443 if (!fpme->fetch)
H A Ddraw_private.h259 struct translate *fetch; member in struct:draw_context::__anon11965
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2qos.c19 #define fetch __atmlib_fetch macro
89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=",
135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL);
160 switch (fetch(&text,"tx","rx",NULL)) {
162 if (!fetch(&text,":none",NULL)) {
176 if (fetch(&text,"rx",NULL)) return -1;
177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBufferedTokenStream.java127 if ( n > 0 ) fetch(n);
131 protected void fetch(int n) { method in class:BufferedTokenStream
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtemplate.rb39 templates = @templates || options.fetch( :templates ) do
53 @templates.fetch( name, values )
95 namespace = options.fetch( :namespace, ::Object )
108 namespace = options.fetch( :namespace, ::Object )
131 def fetch( name, values = {} ) method in class:ANTLR3.Template
132 self::TEMPLATES.fetch( name.to_s ).new( values )
156 context = self::TEMPLATES.fetch( old_name.to_s ) do
317 param.splat = options.fetch( :splat, false )
318 param.block = options.fetch( :block, false )
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_format.c134 LLVMValueRef fetch = NULL; local
143 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_float32_vec4_type());
147 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
202 gallivm_free_function(gallivm, fetch, fetch_ptr);
219 LLVMValueRef fetch = NULL; local
228 fetch = add_fetch_rgba_test(gallivm, verbose, desc, lp_unorm8_vec4_type());
232 fetch_ptr = (fetch_ptr_t) gallivm_jit_function(gallivm, fetch);
287 gallivm_free_function(gallivm, fetch, fetch_ptr);
/external/valgrind/coregrind/m_gdbserver/
H A Dregcache.c46 int fetch)
55 /* FIXME - fetch registers for INF */
56 if (fetch && regcache->registers_valid == 0) {
203 unsigned char *register_data (int n, int fetch) argument
206 = get_regcache (current_inferior, fetch)->registers;
211 unsigned char *register_data_for_supply (int n, int fetch, Bool *mod) argument
214 = get_regcache (current_inferior, fetch);
45 get_regcache(struct thread_info *inf, int fetch) argument
/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate_generic.c56 fetch_func fetch; member in struct:translate_generic::__anon12006
646 tg->attrib[attr].fetch( data, src, 0, 0 );
823 tg->attrib[i].fetch = (fetch_func)format_desc->fetch_rgba_sint;
825 tg->attrib[i].fetch = (fetch_func)format_desc->fetch_rgba_uint;
828 tg->attrib[i].fetch = (fetch_func)format_desc->fetch_rgba_float;
/external/skia/src/effects/
H A DSkMatrixConvolutionImageFilter.cpp122 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:UncheckedPixelFetcher
129 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:ClampPixelFetcher
138 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:RepeatPixelFetcher
153 static inline SkPMColor fetch(const SkBitmap& src, int x, int y, const SkIRect& bounds) { function in class:ClampToBlackPixelFetcher
177 SkPMColor s = PixelFetcher::fetch(src,
197 a = SkGetPackedA32(PixelFetcher::fetch(src, x, y, bounds));
/external/lldb/source/Target/
H A DPlatform.cpp336 // We have a remote platform. We can only fetch the remote
342 bool fetch = false; local
347 // to connecting, then lets fetch the actual OS version info
350 fetch = true;
354 // We don't have valid OS version info, fetch it if we are connected
355 fetch = is_connected;
358 if (fetch)
559 // We have a remote platform. We can only fetch the remote
565 bool fetch = false; local
570 // to connecting, then lets fetch th
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_s3tc.c167 * Pixel fetch.
247 util_format_dxtn_fetch_t fetch,
258 fetch(0, src, i, j, dst);
315 util_format_dxtn_fetch_t fetch,
326 fetch(0, src, i, j, tmp);
244 util_format_dxtn_rgb_unpack_rgba_8unorm(uint8_t *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height, util_format_dxtn_fetch_t fetch, unsigned block_size) argument
312 util_format_dxtn_rgb_unpack_rgba_float(float *dst_row, unsigned dst_stride, const uint8_t *src_row, unsigned src_stride, unsigned width, unsigned height, util_format_dxtn_fetch_t fetch, unsigned block_size) argument
/external/libpcap/
H A Dpcap-usb-linux.c104 int32_t nfetch; /* Number of events to fetch (out: fetched) */
841 struct mon_bin_mfetch fetch; local
859 /* try to fetch as many events as possible*/
860 fetch.offvec = vec;
861 fetch.nfetch = limit;
862 fetch.nflush = nflush;
865 ret = ioctl(handle->fd, MON_IOCX_MFETCH, &fetch);
883 nflush = fetch.nfetch;
884 for (i=0; i<fetch.nfetch; ++i) {
/external/ltrace/sysdeps/linux-gnu/
H A Dtrace.c49 #include "fetch.h"
1386 struct fetch_context *fetch = fetch_arg_init(LT_TOF_FUNCTION, proc, local
1388 if (fetch == NULL)
1404 if (fetch_retval(fetch, LT_TOF_FUNCTIONR, proc,
1477 fetch_arg_done(fetch);
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/beautifulsoup/
H A DBeautifulSoup.py851 fetch = findAll variable in class:Tag
1477 always fetch it and parse it explicitly.
/external/skia/tests/
H A DSkpSkGrTest.cpp493 while (fetch(reader, &fResults.push_back()))
498 bool fetch(SkFILEStream& reader, TestResult* result) { function in class:PreParser
/external/wpa_supplicant_8/hs20/server/
H A Dspp_server.c1748 char *fetch; local
1751 fetch = db_get_val(ctx, user, realm, "fetch_pps", dmacc);
1752 fetch_pps = fetch ? atoi(fetch) : 0;
1753 free(fetch);

Completed in 7282 milliseconds

12