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

1 2 3 4

  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 57 INTERCEPTOR(void, free, void *ptr) {
62 INTERCEPTOR(void, cfree, void *ptr) {
67 INTERCEPTOR(void*, malloc, size_t size) {
72 INTERCEPTOR(void*, calloc, size_t nmemb, size_t size) {
88 INTERCEPTOR(void*, realloc, void *ptr, size_t size) {
93 INTERCEPTOR(void*, memalign, size_t boundary, size_t size) {
98 INTERCEPTOR(void*, __libc_memalign, size_t align, size_t s)
101 INTERCEPTOR(size_t, malloc_usable_size, void *ptr) {
106 INTERCEPTOR(struct mallinfo, mallinfo) {
112 INTERCEPTOR(int, mallopt, int cmd, int value)
    [all...]
asan_interceptors.cc 331 INTERCEPTOR(int, pthread_create, void *thread,
342 INTERCEPTOR(void*, signal, int signum, void *handler) {
349 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act,
362 INTERCEPTOR(void, longjmp, void *env, int val) {
368 INTERCEPTOR(void, _longjmp, void *env, int val) {
373 INTERCEPTOR(void, siglongjmp, void *env, int val) {
384 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
437 INTERCEPTOR(int, memcmp, const void *a1, const void *a2, size_t size) {
453 INTERCEPTOR(void*, memcpy, void *to, const void *from, size_t size) {
472 INTERCEPTOR(void*, memmove, void *to, const void *from, size_t size)
    [all...]
  /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...]
  /external/chromium/chrome/browser/net/
connect_interceptor.h 14 // An interceptor to monitor URLRequests so that we can do speculative DNS
16 class ConnectInterceptor : public net::URLRequest::Interceptor {
24 // Overridden from net::URLRequest::Interceptor:
  /frameworks/base/services/tests/servicestests/src/com/android/server/
BroadcastInterceptingContext.java 88 final BroadcastInterceptor interceptor = new BroadcastInterceptor(null, filter); local
90 mInterceptors.add(interceptor);
92 return interceptor;
114 final BroadcastInterceptor interceptor = i.next(); local
115 if (receiver.equals(interceptor.mReceiver)) {
127 final BroadcastInterceptor interceptor = i.next(); local
128 if (interceptor.dispatchBroadcast(intent)) {
  /external/chromium/net/url_request/
url_request_job_manager.h 27 // so no attempt is made to support ProtocolFactory or Interceptor instances
43 // of a redirect. Returns NULL if no interceptor intervenes.
50 // Returns NULL if no interceptor intervenes.
64 // Register/unregister a request interceptor.
65 void RegisterRequestInterceptor(URLRequest::Interceptor* interceptor);
66 void UnregisterRequestInterceptor(URLRequest::Interceptor* interceptor);
73 typedef std::vector<URLRequest::Interceptor*> InterceptorList;
url_request_job_manager.cc 185 URLRequest::Interceptor* interceptor) {
192 DCHECK(std::find(interceptors_.begin(), interceptors_.end(), interceptor) ==
194 interceptors_.push_back(interceptor);
198 URLRequest::Interceptor* interceptor) {
206 std::find(interceptors_.begin(), interceptors_.end(), interceptor);
url_request_unittest.cc 2148 TestInterceptor interceptor; local
2184 TestInterceptor interceptor; local
2217 TestInterceptor interceptor; local
2248 TestInterceptor interceptor; local
2277 TestInterceptor interceptor; local
2308 TestInterceptor interceptor; local
2334 TestInterceptor interceptor; local
2366 TestInterceptor interceptor; local
2390 TestInterceptor interceptor; local
    [all...]
url_request.cc 63 // URLRequest::Interceptor
65 URLRequestJob* URLRequest::Interceptor::MaybeInterceptRedirect(
71 URLRequestJob* URLRequest::Interceptor::MaybeInterceptResponse(
155 void URLRequest::RegisterRequestInterceptor(Interceptor* interceptor) {
156 URLRequestJobManager::GetInstance()->RegisterRequestInterceptor(interceptor);
160 void URLRequest::UnregisterRequestInterceptor(Interceptor* interceptor) {
162 interceptor);
  /external/chromium/chrome/browser/extensions/
autoupdate_interceptor.h 15 // This url request interceptor lets us respond to localhost http request urls
18 : public net::URLRequest::Interceptor,
extension_management_browsertest.cc 263 // Note: This interceptor gets requests on the IO thread.
264 scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
267 interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
269 interceptor->SetResponseOnIOThread("http://localhost/autoupdate/v2.crx",
306 interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
308 interceptor->SetResponseOnIOThread("http://localhost/autoupdate/v3.crx",
334 // Note: This interceptor gets requests on the IO thread.
335 scoped_refptr<AutoUpdateInterceptor> interceptor(new AutoUpdateInterceptor());
338 interceptor->SetResponseOnIOThread("http://localhost/autoupdate/manifest",
340 interceptor->SetResponseOnIOThread("http://localhost/autoupdate/v2.crx"
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
AlphaTouchInterceptorOverlay.java 27 * A View that other Views can use to create a touch-interceptor layer above
32 * alpha layer is the same View as the touch-interceptor layer. However, for
63 * the touch-interceptor.
83 /** Delegate to interceptor-layer. */
88 /** Delegate to interceptor-layer. */
  /external/compiler-rt/lib/asan/interception/
interception.h 34 // How to add an interceptor:
38 // 1) define INTERCEPTOR(int, foo, const char *bar, double baz) { ... } in
44 // By default, REAL(foo) will be visible only inside your interceptor, and if
49 // INTERCEPTOR(..., foo, ...) are in different files, you'll instead need to:
58 // INTERCEPTOR(int, foo, const char *bar, double baz);
117 // Generally, you don't need to use DEFINE_REAL by itself, as INTERCEPTOR
119 // without defining INTERCEPTOR(..., foo, ...). For example, if you override
120 // foo with an interceptor for other function.
132 #define INTERCEPTOR(ret_type, func, ...) \
  /development/samples/ApiDemos/src/com/example/android/apis/view/
HoverInterceptorView.java 30 * The Interceptor view is a simple subclass of LinearLayout whose sole purpose
32 * hover activity is checked, the interceptor view will intercept hover events.
38 * interesting and complex than our little Interceptor example here.
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/chrome/browser/policy/
device_management_service_browsertest.cc 44 // Interceptor implementation that returns test data back to the service.
45 class CannedResponseInterceptor : public net::URLRequest::Interceptor {
59 // net::URLRequest::Interceptor overrides.
98 CannedResponseInterceptor interceptor(
111 CannedResponseInterceptor interceptor(
127 CannedResponseInterceptor interceptor(
  /external/v8/src/
property.cc 89 case INTERCEPTOR:
90 PrintF(out, " -type = lookup interceptor\n");
132 case INTERCEPTOR:
handles.cc 546 // Compute the property keys from the interceptor.
550 Handle<InterceptorInfo> interceptor(object->GetNamedInterceptor());
551 CustomArguments args(isolate, interceptor->data(), *receiver, *object);
554 if (!interceptor->enumerator()->IsUndefined()) {
556 v8::ToCData<v8::NamedPropertyEnumerator>(interceptor->enumerator());
557 LOG(isolate, ApiObjectAccess("interceptor-named-enum", *object));
568 // Compute the element keys from the interceptor.
572 Handle<InterceptorInfo> interceptor(object->GetIndexedInterceptor());
573 CustomArguments args(isolate, interceptor->data(), *receiver, *object);
576 if (!interceptor->enumerator()->IsUndefined())
    [all...]
  /external/chromium/chrome/browser/chromeos/
gview_request_interceptor.h 23 class GViewRequestInterceptor : public net::URLRequest::Interceptor {
  /external/chromium/chrome/browser/ui/webui/
mediaplayer_ui.h 29 public net::URLRequest::Interceptor {
90 // Implementation of net::URLRequest::Interceptor.
96 // Implementation of net::URLRequest::Interceptor.
  /external/chromium/net/base/
mock_host_resolver.cc 60 void MockHostResolverBase::Reset(HostResolverProc* interceptor) {
73 // Lastly add the provided interceptor to the front of the chain.
74 if (interceptor) {
75 interceptor->SetPreviousProc(proc);
76 proc = interceptor;
  /development/samples/ApiDemos/res/layout/
hover.xml 45 android:id="@+id/interceptor"
  /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');

Completed in 875 milliseconds

1 2 3 4