HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 226 - 250 of 1268) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
CwdCommandHandler.java 39 protected void handle(Command command, Session session) { method in class:CwdCommandHandler
MkdCommandHandler.java 40 protected void handle(Command command, Session session) { method in class:MkdCommandHandler
PassCommandHandler.java 39 protected void handle(Command command, Session session) { method in class:PassCommandHandler
RnfrCommandHandler.java 39 protected void handle(Command command, Session session) { method in class:RnfrCommandHandler
RntoCommandHandler.java 41 protected void handle(Command command, Session session) { method in class:RntoCommandHandler
UserCommandHandler.java 39 protected void handle(Command command, Session session) { method in class:UserCommandHandler
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodDispatcher.java 28 public abstract Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable; method in class:MockMethodDispatcher
  /external/mockito/src/main/java/org/mockito/internal/handler/
NullResultGuardian.java 28 public Object handle(Invocation invocation) throws Throwable { method in class:NullResultGuardian
29 Object result = delegate.handle(invocation);
  /external/perfetto/src/tracing/api_impl/
consumer_api_test.cc 84 void OnStateChanged(Handle handle, State state, void* ptr) {
85 PERFETTO_LOG("Callback: handle=%" PRId64 " state=%d", handle,
92 auto handle = Create(cfg.data(), cfg.size(), &OnStateChanged, &g_pointer); local
93 PERFETTO_ILOG("Starting, handle=%" PRId64 " state=%d", handle,
94 static_cast<int>(PollState(handle)));
96 StartTracing(handle);
98 while (static_cast<int>(PollState(handle)) > 0 &
119 auto handle = Create(cfg.data(), cfg.size(), &OnStateChanged, &g_pointer); local
    [all...]
  /external/python/cpython2/Python/
dynload_shlib.c 64 void *handle; member in struct:__anon36876
73 void *handle; local
94 p = (dl_funcptr) dlsym(handles[i].handle,
130 handle = dlopen(pathname, dlopenflags);
132 if (handle == NULL) {
140 handles[nhandles++].handle = handle;
141 p = (dl_funcptr) dlsym(handle, funcname);
  /external/python/cpython3/Lib/asyncio/
windows_utils.py 78 # Wrapper for a pipe handle
82 """Wrapper for an overlapped pipe handle which is vaguely file-object like.
86 def __init__(self, handle):
87 self._handle = handle
91 handle = f'handle={self._handle!r}'
93 handle = 'closed'
94 return f'<{self.__class__.__name__} {handle}>'
97 def handle(self): member in class:PipeHandle
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/
AndroidInterceptors.java 51 public Function<Object, Object> handle(MethodSignature methodSignature) { method in class:AndroidInterceptors.LinkedHashMapEldestInterceptor
73 public Function<Object, Object> handle(MethodSignature methodSignature) {
109 public Function<Object, Object> handle(final MethodSignature methodSignature) {
144 public Function<Object, Object> handle(MethodSignature methodSignature) {
183 public Function<Object, Object> handle(MethodSignature methodSignature) {
213 public Function<Object, Object> handle(MethodSignature methodSignature) {
242 @Override public Function<Object, Object> handle(MethodSignature methodSignature) {
  /external/skia/include/atlastext/
SkAtlasTextTarget.h 28 * Creates a text drawing target. ?handle? is used to identify this rendering surface when
34 void* handle);
50 void* handle() const { return fHandle; } function in class:SkAtlasTextTarget
78 SkAtlasTextTarget(sk_sp<SkAtlasTextContext>, int width, int height, void* handle);
  /external/skia/src/gpu/gl/iOS/
GrGLMakeNativeInterface_iOS.cpp 26 void* handle() const { function in class:GLLoader
39 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skia/src/gpu/gl/mac/
GrGLMakeNativeInterface_mac.cpp 30 void* handle() const { function in class:GLLoader
43 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skia/tools/skiaserve/urlhandlers/
BreakHandler.cpp 22 int BreakHandler::handle(Request* request, MHD_Connection* connection, function in class:BreakHandler
  /external/skqp/include/atlastext/
SkAtlasTextTarget.h 28 * Creates a text drawing target. ?handle? is used to identify this rendering surface when
34 void* handle);
50 void* handle() const { return fHandle; } function in class:SkAtlasTextTarget
78 SkAtlasTextTarget(sk_sp<SkAtlasTextContext>, int width, int height, void* handle);
  /external/skqp/src/gpu/gl/iOS/
GrGLMakeNativeInterface_iOS.cpp 26 void* handle() const { function in class:GLLoader
39 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skqp/src/gpu/gl/mac/
GrGLMakeNativeInterface_mac.cpp 30 void* handle() const { function in class:GLLoader
43 return (GrGLFuncPtr) dlsym(fLoader.handle(), name);
  /external/skqp/tools/skiaserve/urlhandlers/
BreakHandler.cpp 22 int BreakHandler::handle(Request* request, MHD_Connection* connection, function in class:BreakHandler
  /external/tensorflow/tensorflow/compiler/xla/service/
execution_tracker.cc 54 int64 handle = next_handle_++; local
56 handle, absl::make_unique<AsyncExecution>(backend, std::move(streams),
61 execution_handle.set_handle(handle);
65 Status ExecutionTracker::Unregister(const ExecutionHandle& handle) {
67 auto it = handle_to_execution_.find(handle.handle());
69 return NotFound("no execution record for execution handle: %d",
70 handle.handle());
72 handle_to_execution_.erase(handle.handle())
    [all...]
  /external/tensorflow/tensorflow/core/framework/
load_library.cc 30 void* handle = nullptr; member in struct:tensorflow::__anon44971::Library
37 // On success, returns the handle to library in result, copies the serialized
42 // If `library_filename` has already been loaded, we return a cached handle
79 s = env->LoadLibrary(library_filename, &library.handle);
100 *result = library.handle;
  /external/tensorflow/tensorflow/core/kernels/
session_ops.cc 49 Tensor* handle = nullptr; variable
50 OP_REQUIRES_OK(ctx, ctx->allocate_output(0, TensorShape({}), &handle));
57 handle->scalar<ResourceHandle>()() = resource_handle;
60 handle->flat<string>().setConstant(tk.GetHandle(name()));
75 .HostMemory("handle") \
80 .HostMemory("handle") \
92 .HostMemory("handle") \
97 .HostMemory("handle") \
112 const Tensor& handle = ctx->input(0); variable
113 const string& name = handle.scalar<string>()()
155 const Tensor& handle = ctx->input(0); variable
    [all...]
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
Server.java 86 long handle = 0; local
88 handle = nativeHandle;
89 if (handle != 0) {
94 join(handle);
97 if (handle != 0) {
  /external/tensorflow/tensorflow/python/util/
dispatch.py 21 registered dispatchers can handle the arguments, then its result is returned.
47 that it can handle the operation's arguments (by returning any value other
55 def handle(self, args, kwargs): # pylint: disable=unused-argument member in class:OpDispatcher
56 """Handle this dispatcher's operation with the specified arguments.
58 If this operation dispatcher can handle the given arguments, then
67 dispatcher can not handle the given arguments.
88 Calls the `handle` method of each `OpDispatcher` that has been registered
89 to handle `op`, and returns the value from the first successful handler.
98 dispatcher can handle the given arguments.
101 result = dispatcher.handle(args, kwargs
127 def handle(self, args, kwargs): member in class:_TypeBasedDispatcher
    [all...]

Completed in 951 milliseconds

1 2 3 4 5 6 7 8 91011>>