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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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 from
    [all...]
  /external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
TestSSLEnginePair.java 52 public static TestSSLEnginePair create(Hooks hooks) throws IOException {
53 return create(TestSSLContext.create(), hooks);
56 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks) throws IOException {
57 return create(c, hooks, null);
60 public static TestSSLEnginePair create(TestSSLContext c, Hooks hooks, boolean[] finished)
62 SSLEngine[] engines = connect(c, hooks, finished);
66 public static SSLEngine[] connect(TestSSLContext c, Hooks hooks) throws IOException
    [all...]
  /external/python/cpython2/Lib/
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...]
  /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...]
  /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...]
  /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...]
  /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...]
  /prebuilts/python/linux-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...]
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ConscryptSocketTest.java 238 abstract class Hooks implements HandshakeCompletedListener {
267 class ClientHooks extends Hooks {
294 class ServerHooks extends Hooks {
393 Future<AbstractConscryptSocket> handshake(final ServerSocket listener, final Hooks hooks) {
397 AbstractConscryptSocket socket = hooks.createSocket(listener);
398 socket.addHandshakeCompletedListener(hooks);
NativeCryptoTest.java 662 public static class Hooks {
728 private final Hooks hooks; field in class:NativeCryptoTest.TestSSLHandshakeCallbacks
730 TestSSLHandshakeCallbacks(Socket socket, long sslNativePointer, Hooks hooks) {
733 this.hooks = hooks;
774 if (hooks != null) {
775 hooks.clientCertificateRequested(sslNativePointer);
    [all...]

Completed in 462 milliseconds