HomeSort by relevance Sort by last modified time
    Searched full:interceptor (Results 1 - 25 of 63) 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.
  /external/chromium/net/url_request/
url_request_job_manager.h 21 // attempt is made to support ProtocolFactory or Interceptor instances being
36 // of a redirect. Returns NULL if no interceptor intervenes.
43 // Returns NULL if no interceptor intervenes.
57 // Register/unregister a request interceptor.
58 void RegisterRequestInterceptor(URLRequest::Interceptor* interceptor);
59 void UnregisterRequestInterceptor(URLRequest::Interceptor* interceptor);
63 typedef std::vector<URLRequest::Interceptor*> InterceptorList;
url_request_unittest.cc 1774 TestInterceptor interceptor; local
1810 TestInterceptor interceptor; local
1843 TestInterceptor interceptor; local
1874 TestInterceptor interceptor; local
1903 TestInterceptor interceptor; local
1934 TestInterceptor interceptor; local
1960 TestInterceptor interceptor; local
1992 TestInterceptor interceptor; local
2016 TestInterceptor interceptor; local
    [all...]
url_request_job_manager.cc 181 URLRequest::Interceptor* interceptor) {
188 DCHECK(std::find(interceptors_.begin(), interceptors_.end(), interceptor) ==
190 interceptors_.push_back(interceptor);
194 URLRequest::Interceptor* interceptor) {
202 std::find(interceptors_.begin(), interceptors_.end(), interceptor);
url_request.cc 74 void URLRequest::RegisterRequestInterceptor(Interceptor* interceptor) {
75 GetJobManager()->RegisterRequestInterceptor(interceptor);
79 void URLRequest::UnregisterRequestInterceptor(Interceptor* interceptor) {
80 GetJobManager()->UnregisterRequestInterceptor(interceptor);
  /external/chromium/net/base/
mock_host_resolver.cc 73 void MockHostResolverBase::Reset(HostResolverProc* interceptor) {
86 // Lastly add the provided interceptor to the front of the chain.
87 if (interceptor) {
88 interceptor->SetPreviousProc(proc);
89 proc = interceptor;
  /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/chromium/base/
iat_patch.h 28 // new_function Interceptor function
46 // intercept_function Interceptor function
  /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.

Completed in 446 milliseconds

1 2 3