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

1 2

  /external/chromium_org/chrome/browser/devtools/
devtools_network_controller.cc 43 DevToolsNetworkInterceptor* interceptor = interceptors_.get(client_id);
44 DCHECK(interceptor);
45 if (!interceptor)
48 return interceptor->GetWeakPtr();
70 DevToolsNetworkInterceptor* interceptor = interceptors_.get(client_id); local
71 if (!interceptor) {
75 Interceptor new_interceptor = Interceptor(new DevToolsNetworkInterceptor());
82 interceptor->UpdateConditions(online_conditions.Pass());
85 interceptor->UpdateConditions(conditions.Pass())
    [all...]
  /external/chromium_org/components/component_updater/test/
component_updater_ping_manager_unittest.cc 59 URLRequestPostInterceptor* interceptor = local
61 EXPECT_TRUE(interceptor);
73 EXPECT_EQ(1, interceptor->GetCount()) << interceptor->GetRequestsAsString();
75 interceptor->GetRequests()[0].find(
78 << interceptor->GetRequestsAsString();
79 interceptor->Reset();
91 EXPECT_EQ(1, interceptor->GetCount()) << interceptor->GetRequestsAsString();
93 interceptor->GetRequests()[0].find
    [all...]
  /external/chromium_org/sandbox/win/src/
interception.h 82 // interceptor, so the provided InterceptorId is used to keep a table of
83 // intercepted functions so that the interceptor can index that table to get
138 InterceptorId id; // Interceptor id.
141 std::string interceptor; // Name of interceptor function. member in struct:sandbox::InterceptionManager::InterceptionData
142 const void* interceptor_address; // Interceptor's entry point.
196 // This method will insert additional interceptions to launch the interceptor
225 // the interceptor is called "TargetXXX", where XXX is the name of the service.
227 // the exported interceptor, following the calling convention of a service call
sidestep_resolver.cc 22 const void* interceptor; // Real interceptor. member in struct:__anon15259::SmartThunk
77 // the thunk to use a chained interceptor. It uses the fact that
97 thunk->interceptor = interceptor_entry_point;
100 &thunk->interceptor);
106 // to our internal smart interceptor.
114 // Fix the internal thunk to pass the whole buffer to the interceptor.
129 // This code must basically either call the intended interceptor or skip the
134 // to our SmartThunk. When we call the interceptor we have to replace this
136 // structure); on the other hand, when we skip the interceptor we have to remov
    [all...]
interception_agent.cc 166 const char* interceptor = function->function + local
169 if (!IsWithinRange(function, function->record_bytes, interceptor) ||
170 !IsWithinRange(dll_info, dll_info->record_bytes, interceptor)) {
178 interceptor,
  /external/chromium_org/gin/
object_template_builder.cc 7 #include "gin/interceptor.h"
53 NamedPropertyInterceptor* interceptor = local
55 if (!interceptor)
59 info.GetReturnValue().Set(interceptor->GetNamedProperty(isolate, name));
66 NamedPropertyInterceptor* interceptor = local
68 if (!interceptor)
72 if (interceptor->SetNamedProperty(isolate, name, value))
79 NamedPropertyInterceptor* interceptor = local
81 if (!interceptor)
85 if (interceptor->GetNamedProperty(isolate, name).IsEmpty()
92 NamedPropertyInterceptor* interceptor = local
103 IndexedPropertyInterceptor* interceptor = local
114 IndexedPropertyInterceptor* interceptor = local
125 IndexedPropertyInterceptor* interceptor = local
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpProcessor.java 149 * @param interceptor the interceptor to add
152 void addInterceptor(final HttpRequestInterceptor interceptor) {
153 addRequestInterceptor(interceptor);
157 void addInterceptor(final HttpRequestInterceptor interceptor,
159 addRequestInterceptor(interceptor, index);
202 * @param interceptor the interceptor to add
205 void addInterceptor(final HttpResponseInterceptor interceptor) {
206 addResponseInterceptor(interceptor);
293 HttpRequestInterceptor interceptor = local
307 HttpResponseInterceptor interceptor = local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
BroadcastInterceptingContext.java 89 final BroadcastInterceptor interceptor = new BroadcastInterceptor(null, filter); local
91 mInterceptors.add(interceptor);
93 return interceptor;
115 final BroadcastInterceptor interceptor = i.next(); local
116 if (receiver.equals(interceptor.mReceiver)) {
128 final BroadcastInterceptor interceptor = i.next(); local
129 if (interceptor.dispatchBroadcast(intent)) {
  /external/chromium_org/mojo/spy/
spy.cc 57 mojo::ScopedMessagePipeHandle interceptor,
61 pipes.push_back(interceptor.get());
112 mojo::ScopedMessagePipeHandle interceptor; local
113 CreateMessagePipe(NULL, &faux_client, &interceptor);
120 base::Passed(&interceptor),
225 class SpyInterceptor : public mojo::ApplicationManager::Interceptor {
246 mojo::ScopedMessagePipeHandle interceptor; variable
247 CreateMessagePipe(NULL, &faux_client, &interceptor);
256 base::Passed(&real_handle), base::Passed(&interceptor),
334 // TODO(cpu): Do not leak the interceptor. Lifetime between th
    [all...]
  /external/chromium_org/chrome/browser/
errorpage_browsertest.cc 151 // An interceptor that fails a configurable number of requests, then succeeds
193 // An interceptor that serves LinkDoctor responses. It also allows waiting
914 FailFirstNRequestsInterceptor* interceptor() { function in class:__anon8237::ErrorPageAutoReloadTest
    [all...]
  /external/chromium_org/content/browser/service_worker/
service_worker_browsertest.cc 189 // to do that. This interceptor injects headers that give the import
219 scoped_ptr<net::URLRequestInterceptor> interceptor; local
221 interceptor.reset(new LongLivedResourceInterceptor(
224 worker_url, interceptor.Pass());
226 interceptor.reset(new LongLivedResourceInterceptor(
229 import_url, interceptor.Pass());
    [all...]
  /external/chromium_org/mojo/application_manager/
application_manager_unittest.cc 383 class TestServiceInterceptor : public ApplicationManager::Interceptor {
669 TEST_F(ApplicationManagerTest, Interceptor) {
670 TestServiceInterceptor interceptor; local
674 application_manager_->SetInterceptor(&interceptor);
680 EXPECT_EQ(1, interceptor.call_count());
681 EXPECT_EQ(url, interceptor.url_spec());
  /external/smack/src/com/kenai/jbosh/
BOSHClient.java 644 * @param interceptor exchange interceptor
646 void setExchangeInterceptor(final ExchangeInterceptor interceptor) {
647 exchInterceptor.set(interceptor);
957 ExchangeInterceptor interceptor = exchInterceptor.get(); local
958 if (interceptor != null) {
959 HTTPExchange newExch = interceptor.interceptExchange(exch);
    [all...]
  /external/chromium_org/net/url_request/
url_request_unittest.cc 1304 TestInterceptor interceptor; local
1341 TestInterceptor interceptor; local
1375 TestInterceptor interceptor; local
1407 TestInterceptor interceptor; local
1437 TestInterceptor interceptor; local
1469 TestInterceptor interceptor; local
1496 TestInterceptor interceptor; local
1529 TestInterceptor interceptor; local
1554 TestInterceptor interceptor; local
1582 TestInterceptor interceptor; local
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpcore-4.1.jar 
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 
  /prebuilts/tools/common/easymock-tools/
easymock-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/easymock/easymock/3.1/
easymock-3.1.jar 

Completed in 767 milliseconds

1 2