/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_org/sandbox/win/src/ |
resolver_32.cc | 21 // ret // Jump to interceptor 61 const void* interceptor) { 70 thunk->interceptor_function = reinterpret_cast<ULONG>(interceptor);
|
resolver.h | 71 // and the interceptor into the member variables. 91 // interceptor is the function to be called instead of original_function. 93 const void* original_function, const void* interceptor); 97 // Holds the resolved interception interceptor.
|
interception_internal.h | 35 // char interceptor[] // followed by the interceptor function
|
sidestep_resolver.h | 38 // This means basically a sidestep interception that skips the interceptor when 60 // Performs the actual call to the interceptor if the conditions are correct
|
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
|
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/chrome/browser/component_updater/test/ |
url_request_post_interceptor.h | 57 // Returns how many requests in total have been captured by the interceptor. 66 // Resets the state of the interceptor so that new expectations can be set. 95 // Creates an interceptor object for the specified url path. Returns NULL 96 // in case of errors or a valid interceptor object otherwise. The caller
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/ |
interception_readdir_r_test.cc | 19 // Ensure the readdir_r interceptor doesn't erroneously mark the entire dirent 29 // Stamp the entry struct to try to trick the interceptor. 40 // Ensure the readdir64_r interceptor doesn't have the bug either. 47 // Stamp the entry struct to try to trick the interceptor.
|
interception_malloc_test.cc | 1 // ASan interceptor can be accessed with __interceptor_ prefix.
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
readv.cc | 4 // Test the readv() interceptor.
|
/external/smack/src/org/jivesoftware/smack/ |
PacketInterceptor.java | 28 * certain packets are intercepted and processed by the interceptor.<p>
40 * packet can be modified by the interceptor.<p>
|
/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/chromium_org/chrome/browser/extensions/api/management/ |
management_browsertest.cc | 252 // Note: This interceptor gets requests on the IO thread. 253 content::URLLocalHostRequestPrepackagedInterceptor interceptor; local 256 interceptor.SetResponseIgnoreQuery( 259 interceptor.SetResponseIgnoreQuery(GURL("http://localhost/autoupdate/v2.crx"), 299 interceptor.SetResponseIgnoreQuery( 302 interceptor.SetResponseIgnoreQuery(GURL("http://localhost/autoupdate/v3.crx"), 336 // Note: This interceptor gets requests on the IO thread. 337 content::URLLocalHostRequestPrepackagedInterceptor interceptor; local 340 interceptor.SetResponseIgnoreQuery( 343 interceptor.SetResponseIgnoreQuery(GURL("http://localhost/autoupdate/v2.crx") 402 content::URLLocalHostRequestPrepackagedInterceptor interceptor; local 485 content::URLLocalHostRequestPrepackagedInterceptor interceptor; local 559 content::URLLocalHostRequestPrepackagedInterceptor interceptor; local [all...] |
/external/chromium/chrome/browser/extensions/ |
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...] |
/external/chromium_org/net/url_request/ |
url_request_job_manager.cc | 228 URLRequest::Interceptor* interceptor) { 233 DCHECK(std::find(interceptors_.begin(), interceptors_.end(), interceptor) == 235 interceptors_.push_back(interceptor); 239 URLRequest::Interceptor* interceptor) { 245 std::find(interceptors_.begin(), interceptors_.end(), interceptor);
|
/external/chromium/net/url_request/ |
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...] |
/external/chromium_org/chrome/browser/custom_handlers/ |
protocol_handler_registry_unittest.cc | 35 net::URLRequestJobFactory* interceptor) { 40 interceptor->MaybeCreateJobWithProtocolHandler( 47 net::URLRequestJobFactory* interceptor) { 53 base::Unretained(interceptor))); 84 ProtocolHandlerRegistry::JobInterceptorFactory* interceptor) { 86 interceptor->Chain(scoped_ptr<net::URLRequestJobFactory>( 88 ASSERT_EQ(expected, interceptor->IsHandledProtocol(scheme)); 89 interceptor->Chain(scoped_ptr<net::URLRequestJobFactory>()); 95 ProtocolHandlerRegistry::JobInterceptorFactory* interceptor) { 102 base::Unretained(interceptor))); [all...] |
/external/v8/src/ |
property.cc | 89 case INTERCEPTOR: 90 PrintF(out, " -type = lookup interceptor\n"); 132 case INTERCEPTOR:
|
/external/chromium_org/android_webview/browser/ |
aw_request_interceptor.cc | 64 // as it is possible for the Interceptor chain to be invoked more than once 66 // Note: The Interceptor chain is not invoked more than once if we create a
|
/external/chromium_org/chrome/renderer/extensions/ |
activity_log_converter_strategy.cc | 29 // accessor, interceptor/handler, or access check callback set on the 35 // also have getter methods, accessor, interceptor/handler, and access check
|
/external/smack/src/org/jivesoftware/smackx/muc/ |
DeafOccupantInterceptor.java | 29 * Packet interceptor that will intercept presence packets sent to the MUC service to indicate 38 * pass this interceptor as the parameter.<p>
|
/external/chromium/chrome/browser/chromeos/ |
gview_request_interceptor.h | 23 class GViewRequestInterceptor : public net::URLRequest::Interceptor {
|
/external/chromium_org/chrome/browser/net/ |
connect_interceptor.h | 23 // An interceptor to monitor URLRequests so that we can do speculative DNS
|