HomeSort by relevance Sort by last modified time
    Searched refs:interceptor (Results 26 - 50 of 65) sorted by null

12 3

  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_unittest.cc 36 net::URLRequestJobFactory* interceptor) {
42 interceptor->MaybeCreateJobWithProtocolHandler(
49 net::URLRequestJobFactory* interceptor) {
55 base::Unretained(interceptor)));
86 ProtocolHandlerRegistry::JobInterceptorFactory* interceptor) {
88 interceptor->Chain(scoped_ptr<net::URLRequestJobFactory>(
90 ASSERT_EQ(expected, interceptor->IsHandledProtocol(scheme));
91 interceptor->Chain(scoped_ptr<net::URLRequestJobFactory>());
97 ProtocolHandlerRegistry::JobInterceptorFactory* interceptor) {
104 base::Unretained(interceptor)));
    [all...]
  /external/chromium_org/sandbox/win/src/
interception.cc 97 function.interceptor = replacement_function_name;
164 size_t strings_chars = it->function.size() + it->interceptor.size() + 2;
281 size_t interceptor_bytes = data.interceptor.size();
304 // interceptor follows the function_name
305 data.interceptor._Copy_s(names, interceptor_bytes, interceptor_bytes);
506 it->interceptor.c_str(),
520 it->interceptor.c_str(),
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
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Hover.java 54 * A checkbox is used to control whether a special view, the Interceptor, will intercept
55 * events before they are sent to its child (a button). When the Interceptor
57 * over it because the interceptor itself will grab the events.
72 mInterceptor = (HoverInterceptorView) findViewById(R.id.interceptor);
  /external/chromium_org/net/url_request/
url_request.h 124 class NET_EXPORT Interceptor {
126 virtual ~Interceptor() {}
168 static void RegisterRequestInterceptor(Interceptor* interceptor);
169 static void UnregisterRequestInterceptor(Interceptor* interceptor);
700 // Allow an interceptor's URLRequestJob to restart this request.
    [all...]
url_request.cc 144 Interceptor* interceptor) {
145 URLRequest::RegisterRequestInterceptor(interceptor);
149 Interceptor* interceptor) {
150 URLRequest::UnregisterRequestInterceptor(interceptor);
154 // URLRequest::Interceptor
156 URLRequestJob* URLRequest::Interceptor::MaybeInterceptRedirect(
163 URLRequestJob* URLRequest::Interceptor::MaybeInterceptResponse(
626 void URLRequest::RegisterRequestInterceptor(Interceptor* interceptor)
    [all...]
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/mojo/application_manager/
application_manager.h 49 class Interceptor {
51 virtual ~Interceptor() {}
100 void SetInterceptor(Interceptor* interceptor);
147 Interceptor* interceptor_;
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());
application_manager.cc 280 void ApplicationManager::SetInterceptor(Interceptor* interceptor) {
281 interceptor_ = interceptor;
  /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/v8/test/mjsunit/
mirror-object.js 65 assertFalse(mirror.hasNamedInterceptor(), 'No named interceptor expected');
66 assertFalse(mirror.hasIndexedInterceptor(), 'No indexed interceptor expected');
109 assertEquals(void 0, fromJSON.namedInterceptor, 'No named interceptor expected in JSON');
110 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/chromium_org/gin/
gin.target.darwin-arm.mk 34 gin/interceptor.cc \
gin.target.darwin-arm64.mk 34 gin/interceptor.cc \
gin.target.darwin-mips.mk 34 gin/interceptor.cc \
gin.target.darwin-mips64.mk 34 gin/interceptor.cc \
gin.target.darwin-x86.mk 34 gin/interceptor.cc \
gin.target.darwin-x86_64.mk 34 gin/interceptor.cc \
gin.target.linux-arm.mk 34 gin/interceptor.cc \
gin.target.linux-arm64.mk 34 gin/interceptor.cc \
gin.target.linux-mips.mk 34 gin/interceptor.cc \
gin.target.linux-mips64.mk 34 gin/interceptor.cc \
gin.target.linux-x86.mk 34 gin/interceptor.cc \
gin.target.linux-x86_64.mk 34 gin/interceptor.cc \

Completed in 320 milliseconds

12 3