/external/chromium/net/proxy/ |
proxy_resolver_v8.h | 22 // constraint, ProxyResolverV8 holds a v8::Locker during execution. Therefore 23 // it is OK to run multiple instances of ProxyResolverV8 on different threads, 28 // instances and the locked V8 instances used by ProxyResolverV8 (assuming they 34 class ProxyResolverV8 : public ProxyResolver { 36 // Constructs a ProxyResolverV8 with custom bindings. ProxyResolverV8 takes 37 // ownership of |custom_js_bindings| and deletes it when ProxyResolverV8 39 explicit ProxyResolverV8(ProxyResolverJSBindings* custom_js_bindings); 41 virtual ~ProxyResolverV8(); 68 DISALLOW_COPY_AND_ASSIGN(ProxyResolverV8); [all...] |
proxy_resolver_v8.cc | 329 // ProxyResolverV8::Context --------------------------------------------------- 331 class ProxyResolverV8::Context { 678 // ProxyResolverV8 ------------------------------------------------------------ 680 ProxyResolverV8::ProxyResolverV8( 686 ProxyResolverV8::~ProxyResolverV8() {} 688 int ProxyResolverV8::GetProxyForURL(const GURL& query_url, 719 void ProxyResolverV8::CancelRequest(RequestHandle request) { 724 void ProxyResolverV8::CancelSetPacScript() [all...] |
proxy_resolver_perftest.cc | 193 TEST(ProxyResolverPerfTest, ProxyResolverV8) { 198 net::ProxyResolverV8 resolver(js_bindings); 199 PacPerfSuiteRunner runner(&resolver, "ProxyResolverV8");
|
proxy_resolver_v8_unittest.cc | 21 // Javascript bindings for ProxyResolverV8, which returns mock values. 84 // This is the same as ProxyResolverV8, but it uses mock bindings in place of 87 class ProxyResolverV8WithMockBindings : public ProxyResolverV8 { 89 ProxyResolverV8WithMockBindings() : ProxyResolverV8(new MockJSBindings()) {}
|
proxy_service.cc | 190 // ProxyResolverV8 takes ownership of |js_bindings|. 191 return new ProxyResolverV8(js_bindings); [all...] |
/external/chromium-libpac/src/ |
proxy_resolver_v8.h | 35 // constraint, ProxyResolverV8 holds a v8::Locker during execution. Therefore 36 // it is OK to run multiple instances of ProxyResolverV8 on different threads, 41 // instances and the locked V8 instances used by ProxyResolverV8 (assuming they 47 class ProxyResolverV8 { 49 // Constructs a ProxyResolverV8 with custom bindings. ProxyResolverV8 takes 50 // ownership of |custom_js_bindings| and deletes it when ProxyResolverV8 52 explicit ProxyResolverV8(ProxyResolverJSBindings* custom_js_bindings, 55 virtual ~ProxyResolverV8();
|
proxy_resolver_v8.cc | 348 // ProxyResolverV8::Context --------------------------------------------------- 350 class ProxyResolverV8::Context { 684 // ProxyResolverV8 ------------------------------------------------------------ 686 ProxyResolverV8::ProxyResolverV8( 694 ProxyResolverV8::~ProxyResolverV8() { 704 int ProxyResolverV8::GetProxyForURL(const android::String16 spec, const android::String16 host, 717 void ProxyResolverV8::PurgeMemory() { 721 int ProxyResolverV8::SetPacScript(const android::String16& script_data) [all...] |
/external/chromium_org/net/proxy/ |
proxy_resolver_v8.h | 26 // constraint, ProxyResolverV8 holds a v8::Locker during execution. Therefore 27 // it is OK to run multiple instances of ProxyResolverV8 on different threads, 32 // instances and the locked V8 instances used by ProxyResolverV8 (assuming they 38 class NET_EXPORT_PRIVATE ProxyResolverV8 : public ProxyResolver { 72 // Constructs a ProxyResolverV8. 73 ProxyResolverV8(); 75 virtual ~ProxyResolverV8(); 126 DISALLOW_COPY_AND_ASSIGN(ProxyResolverV8);
|
proxy_resolver_v8_tracing.h | 25 class ProxyResolverV8; 28 // ProxyResolverV8 on a single helper thread, and does some magic to avoid 64 // The worker thread on which the ProxyResolverV8 will be run. 66 scoped_ptr<ProxyResolverV8> v8_resolver_;
|
proxy_resolver_perftest.cc | 198 class MockJSBindings : public net::ProxyResolverV8::JSBindings { 220 TEST(ProxyResolverPerfTest, ProxyResolverV8) { 222 net::ProxyResolverV8::RememberDefaultIsolate(); 225 net::ProxyResolverV8 resolver; 227 PacPerfSuiteRunner runner(&resolver, "ProxyResolverV8");
|
proxy_resolver_v8.cc | 341 // ProxyResolverV8::Context --------------------------------------------------- 343 class ProxyResolverV8::Context { 345 Context(ProxyResolverV8* parent, v8::Isolate* isolate) 706 ProxyResolverV8* parent_; 712 // ProxyResolverV8 ------------------------------------------------------------ 714 ProxyResolverV8::ProxyResolverV8() 719 ProxyResolverV8::~ProxyResolverV8() {} 721 int ProxyResolverV8::GetProxyForURL [all...] |
proxy_resolver_v8_tracing.cc | 90 public ProxyResolverV8::JSBindings { 136 ProxyResolverV8* v8_resolver(); 155 // Implementation of ProxyResolverv8::JSBindings 470 ProxyResolverV8* ProxyResolverV8Tracing::Job::v8_resolver() { [all...] |
proxy_resolver_v8_unittest.cc | 21 // Javascript bindings for ProxyResolverV8, which returns mock values. 24 class MockJSBindings : public ProxyResolverV8::JSBindings { 96 // This is the same as ProxyResolverV8, but it uses mock bindings in place of 99 class ProxyResolverV8WithMockBindings : public ProxyResolverV8 {
|
/external/chromium_org/chrome/app/android/ |
chrome_android_initializer.cc | 29 // http://crbug.com/173648 . V8's default isolate is used by ProxyResolverV8 33 net::ProxyResolverV8::RememberDefaultIsolate();
|
/external/chromium_org/net/test/ |
run_all_unittests.cc | 52 net::ProxyResolverV8::RememberDefaultIsolate();
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 6 // This used to cause problems, because internally ProxyResolverV8
|
/external/chromium-libpac/test/js-unittest/ |
ends_with_comment.js | 6 // This used to cause problems, because internally ProxyResolverV8
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 6 // This used to cause problems, because internally ProxyResolverV8
|
/external/chromium_org/chrome/browser/task_manager/ |
browser_process_resource_provider.cc | 124 return net::ProxyResolverV8::GetTotalHeapSize(); 128 return net::ProxyResolverV8::GetUsedHeapSize();
|
/frameworks/base/packages/services/PacProcessor/jni/ |
com_android_pacprocessor_PacNative.cpp | 45 net::ProxyResolverV8* proxyResolver = NULL; 67 proxyResolver = new net::ProxyResolverV8(net::ProxyResolverJSBindings::CreateDefault(),
|
/external/chromium-libpac/test/ |
proxy_resolver_v8_unittest.cc | 19 // Javascript bindings for ProxyResolverV8, which returns mock values. 84 // This is the same as ProxyResolverV8, but it uses mock bindings in place of 87 class ProxyResolverV8WithMockBindings : public ProxyResolverV8 { 90 ProxyResolverV8(mock_js_bindings, mock_js_bindings), mock_js_bindings_(mock_js_bindings) {
|
/external/chromium_org/chrome/browser/ |
io_thread.cc | 413 net::ProxyResolverV8::RememberDefaultIsolate(); 415 net::ProxyResolverV8::CreateIsolate(); 417 net::ProxyResolverV8::RememberDefaultIsolate(); [all...] |