HomeSort by relevance Sort by last modified time
    Searched full:interceptor (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/apache-http/src/org/apache/http/protocol/
HttpRequestInterceptorList.java 52 * Appends a request interceptor to this list.
54 * @param itcp the request interceptor to add
61 * Inserts a request interceptor at the specified index.
63 * @param itcp the request interceptor to add
64 * @param index the index to insert the interceptor at
79 * Obtains a request interceptor from this list.
81 * @param index the index of the interceptor to obtain,
84 * @return the interceptor at the given index, or
99 * Removes all request interceptor of the specified class
HttpResponseInterceptorList.java 54 * Appends a response interceptor to this list.
56 * @param itcp the response interceptor to add
62 * Inserts a response interceptor at the specified index.
64 * @param itcp the response interceptor to add
65 * @param index the index to insert the interceptor at
80 * Obtains a response interceptor from this list.
82 * @param index the index of the interceptor to obtain,
85 * @return the interceptor at the given index, or
100 * Removes all response interceptor of the specified class
BasicHttpProcessor.java 144 * @param interceptor the interceptor to add
147 void addInterceptor(final HttpRequestInterceptor interceptor) {
148 addRequestInterceptor(interceptor);
152 void addInterceptor(final HttpRequestInterceptor interceptor,
154 addRequestInterceptor(interceptor, index);
197 * @param interceptor the interceptor to add
200 void addInterceptor(final HttpResponseInterceptor interceptor) {
201 addResponseInterceptor(interceptor);
288 HttpRequestInterceptor interceptor = local
302 HttpResponseInterceptor interceptor = local
    [all...]
HttpProcessor.java 38 * Performs interceptor processing of requests and responses.
RequestConnControl.java 41 * A request interceptor that suggests connection keep-alive to the server.
RequestDate.java 42 * A request interceptor that adds a Date header.
RequestExpectContinue.java 46 * A request interceptor that enables the expect-continue handshake.
RequestTargetHost.java 48 * A request interceptor that sets the Host header for HTTP/1.1 requests.
RequestUserAgent.java 42 * A request interceptor that adds a User-Agent header.
ResponseDate.java 42 * A response interceptor that adds a Date header.
ResponseServer.java 42 * A response interceptor that adds a Server header.
RequestContent.java 46 * A request interceptor that decides about the transport encoding.
ResponseConnControl.java 47 * A response interceptor that suggests connection keep-alive to the client.
  /external/v8/src/
property.cc 71 case INTERCEPTOR:
72 PrintF(" -type = lookup interceptor\n");
handles.cc 522 // Compute the property keys from the interceptor.
525 Handle<InterceptorInfo> interceptor(object->GetNamedInterceptor());
526 CustomArguments args(interceptor->data(), *receiver, *object);
529 if (!interceptor->enumerator()->IsUndefined()) {
531 v8::ToCData<v8::NamedPropertyEnumerator>(interceptor->enumerator());
532 LOG(ApiObjectAccess("interceptor-named-enum", *object));
543 // Compute the element keys from the interceptor.
546 Handle<InterceptorInfo> interceptor(object->GetIndexedInterceptor());
547 CustomArguments args(interceptor->data(), *receiver, *object);
550 if (!interceptor->enumerator()->IsUndefined())
    [all...]
objects.cc 216 // Only deal with CALLBACKS and INTERCEPTOR
253 case INTERCEPTOR: {
254 // If the object has an interceptor, try real named properties.
313 case INTERCEPTOR: {
314 // If the object has an interceptor, try real named properties.
449 // callbacks or interceptor calls.
455 // holder will always be the interceptor holder and the search may
456 // only continue with a current object just after the interceptor
502 case INTERCEPTOR: {
6209 InterceptorInfo* interceptor = GetNamedInterceptor(); local
    [all...]
ic.cc 333 // an interceptor), bail out if lookup is not cacheable: we won't
336 || (lookup->type() != INTERCEPTOR)
348 ASSERT(lookup->type() != INTERCEPTOR);
444 if (lookup.type() == INTERCEPTOR) {
555 case INTERCEPTOR: {
683 if (lookup.IsProperty() && lookup.type() == INTERCEPTOR) {
763 case INTERCEPTOR: {
870 if (lookup.IsProperty() && lookup.type() == INTERCEPTOR) {
    [all...]
stub-cache.cc 155 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, INTERCEPTOR);
239 Code::ComputeMonomorphicFlags(Code::KEYED_LOAD_IC, INTERCEPTOR);
381 Code::ComputeMonomorphicFlags(Code::STORE_IC, INTERCEPTOR);
518 INTERCEPTOR,
794 * Attempts to load a property with an interceptor (which must be present),
797 * Returns |Heap::no_interceptor_result_sentinel()| if interceptor doesn't
813 // Use the interceptor getter.
    [all...]
  /external/v8/test/mjsunit/
mirror-object.js 65 assertFalse(mirror.hasNamedInterceptor(), 'No named interceptor expected');
66 assertFalse(mirror.hasIndexedInterceptor(), 'No indexed interceptor expected');
102 assertEquals(void 0, fromJSON.namedInterceptor, 'No named interceptor expected in JSON');
103 assertEquals(void 0, fromJSON.indexedInterceptor, 'No indexed interceptor expected in JSON');
mirror-array.js 82 assertEquals(void 0, fromJSON.namedInterceptor, 'No named interceptor expected in JSON');
83 assertEquals(void 0, fromJSON.indexedInterceptor, 'No indexed interceptor expected in JSON');
  /external/apache-http/src/org/apache/http/client/protocol/
RequestDefaultHeaders.java 45 * Request interceptor that adds default request headers.
RequestAddCookies.java 60 * Request interceptor that matches cookies available in the current
187 // so they could be obtained by the response interceptor
ResponseProcessCookies.java 53 * Response interceptor that populates the current {@link CookieStore} with data
  /external/v8/src/arm/
stub-cache-arm.cc 402 InterceptorInfo* interceptor = holder_obj->GetNamedInterceptor(); local
403 ASSERT(!Heap::InNewSpace(interceptor));
406 __ mov(scratch, Operand(Handle<Object>(interceptor)));
446 // So far the most popular follow ups for interceptor loads are FIELD
    [all...]
  /external/v8/test/cctest/
test-decls.cc 75 // Get the holder for the interceptor. Default to the instance template
202 // Test global declaration of a property the interceptor doesn't know
524 // Sanity check to make sure that the holder of the interceptor

Completed in 451 milliseconds

1 2 3