HomeSort by relevance Sort by last modified time
    Searched refs:Hooks (Results 1 - 15 of 15) sorted by null

  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
hooks.py 21 __all__ = ["Hooks"]
24 class Hooks(object):
27 control.start_map accepts an optional "hooks" argument that can be passed a
32 """Initializes a Hooks class.
model.py 56 from mapreduce import hooks namespace
471 hooks_class_name: The fully qualified name of the hooks class to use.
478 hooks_class_name: The fully qualified name of the hooks class to use.
489 """Returns a hooks.Hooks class or None if no hooks class has been set."""
495 if not issubclass(hooks_class, hooks.Hooks):
497 "hooks_class_name must refer to a hooks.Hooks subclass"
    [all...]
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 50 public static TestSSLEnginePair create(Hooks hooks) throws IOException {
51 return create(TestSSLContext.create(), hooks);
54 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks) throws IOException {
55 return create(c, hooks, null);
58 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks, boolean[] finished)
60 SSLEngine[] engines = connect(c, hooks, finished);
64 public static SSLEngine[] connect(TestSSLContext c, Hooks hooks) throws IOException
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java 644 public static class Hooks {
711 private final Hooks hooks; field in class:NativeCryptoTest.TestSSLHandshakeCallbacks
715 Hooks hooks) {
718 this.hooks = hooks;
758 if (hooks != null ) {
759 hooks.clientCertificateRequested(sslNativePointer);
837 public static class ClientHooks extends Hooks {
    [all...]
OpenSSLSocketImplTest.java 94 abstract class Hooks implements HandshakeCompletedListener {
123 class ClientHooks extends Hooks {
152 class ServerHooks extends Hooks {
220 Future<OpenSSLSocketImpl> handshake(final ServerSocket listener, final Hooks hooks) {
226 OpenSSLContextImpl context = hooks.createContext();
228 OpenSSLSocketImpl socket = hooks.createSocket(factory, listener);
229 socket.addHandshakeCompletedListener(hooks);
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLEngineTest.java 112 final TestSSLEnginePair engines = TestSSLEnginePair.create(null /* hooks */);
213 pair = TestSSLEnginePair.create(c, new TestSSLEnginePair.Hooks() {
252 cWithWrongPrivateKeys, new TestSSLEnginePair.Hooks() {
567 return TestSSLEnginePair.create(c, new TestSSLEnginePair.Hooks() {
603 new TestSSLEnginePair.Hooks() {
628 new TestSSLEnginePair.Hooks() {
653 new TestSSLEnginePair.Hooks() {
671 TestSSLEnginePair p = TestSSLEnginePair.create(c, new TestSSLEnginePair.Hooks() {
694 p = TestSSLEnginePair.create(new TestSSLEnginePair.Hooks() {
715 p = TestSSLEnginePair.create(new TestSSLEnginePair.Hooks() {
    [all...]
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/api/map_job/
map_job_config.py 3 from mapreduce import hooks namespace
93 _hooks_cls = _Option(hooks.Hooks, can_be_none=True)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
rexec.py 67 class RHooks(ihooks.Hooks):
83 ihooks.Hooks.__init__(self, verbose)
158 def __init__(self, hooks = None, verbose = 0):
161 The hooks parameter is an instance of the RHooks class or a subclass
191 self.hooks = hooks or RHooks(verbose)
192 self.hooks.set_rexec(self)
206 self.loader = RModuleLoader(self.hooks, verbose)
301 self.modules[mname] = m = self.hooks.new_module(mname)
  /prebuilts/gdb/linux-x86/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]
rexec.py 67 class RHooks(ihooks.Hooks):
83 ihooks.Hooks.__init__(self, verbose)
158 def __init__(self, hooks = None, verbose = 0):
161 The hooks parameter is an instance of the RHooks class or a subclass
191 self.hooks = hooks or RHooks(verbose)
192 self.hooks.set_rexec(self)
206 self.loader = RModuleLoader(self.hooks, verbose)
301 self.modules[mname] = m = self.hooks.new_module(mname)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 15 1) A "file system hooks" class provides an interface to a filesystem.
17 One hooks class is defined (Hooks), which uses the interface provided
19 class for other hooks classes.
30 uses a file system hooks class to interact with the file system. Both
61 __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader",
150 class Hooks(_Verbose):
152 """Hooks into the filesystem and interpreter.
208 """Default module loader; uses file system hooks.
210 By defining suitable hooks, you might be able to load modules fro
    [all...]