Searched refs:handle (Results 226 - 250 of 2418) sorted by relevance

1234567891011>>

/external/chromium_org/ui/gfx/
H A Dgpu_memory_buffer.cc11 handle(base::SharedMemory::NULLHandle())
/external/compiler-rt/test/msan/
H A Ddtls_test.c42 void *handle = dlopen(path, RTLD_LAZY); local
43 if (!handle) fprintf(stderr, "%s\n", dlerror());
44 assert(handle != 0);
45 GetTls = (get_t)dlsym(handle, "GetTls");
/external/iptables/iptables/
H A Dip6tables-standalone.c45 struct xtc_handle *handle = NULL; local
61 ret = do_command6(argc, argv, &table, &handle, false);
63 ret = ip6tc_commit(handle);
64 ip6tc_free(handle);
H A Diptables-standalone.c47 struct xtc_handle *handle = NULL; local
64 ret = do_command4(argc, argv, &table, &handle, false);
66 ret = iptc_commit(handle);
67 iptc_free(handle);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DDepHandler.java27 void handle(PathClass from, PathClass to) throws IOException; method in interface:DepHandler
/external/javasqlite/src/main/java/SQLite/
H A DFunctionContext.java12 * Internal handle for the native SQLite API.
15 private long handle = 0; field in class:FunctionContext
H A DVm.java10 * Internal handle for the compiled SQLite VM.
13 private long handle = 0; field in class:Vm
/external/libnfc-nci/src/nfa/p2p/
H A Dnfa_p2p_api.c44 ** NFA_P2P_REG_SERVER_EVT will be returned with status and handle.
110 ** NFA_P2P_REG_CLIENT_EVT will be returned with status and handle.
159 ** NFA_STATUS_BAD_HANDLE if handle is not valid
163 tNFA_STATUS NFA_P2pDeregister (tNFA_HANDLE handle) argument
168 P2P_TRACE_API1 ("NFA_P2pDeregister (): handle:0x%02X", handle);
170 xx = handle & NFA_HANDLE_MASK;
183 p_msg->handle = handle;
202 ** NFA_STATUS_BAD_HANDLE if handle i
206 NFA_P2pAcceptConn(tNFA_HANDLE handle, UINT16 miu, UINT8 rw) argument
268 NFA_P2pRejectConn(tNFA_HANDLE handle) argument
324 NFA_P2pDisconnect(tNFA_HANDLE handle, BOOLEAN flush) argument
500 NFA_P2pSendUI(tNFA_HANDLE handle, UINT8 dsap, UINT16 length, UINT8 *p_data) argument
595 NFA_P2pReadUI(tNFA_HANDLE handle, UINT32 max_data_len, UINT8 *p_remote_sap, UINT32 *p_data_len, UINT8 *p_data, BOOLEAN *p_more) argument
643 NFA_P2pFlushUI(tNFA_HANDLE handle, UINT32 *p_length) argument
687 NFA_P2pSendData(tNFA_HANDLE handle, UINT16 length, UINT8 *p_data) argument
786 NFA_P2pReadData(tNFA_HANDLE handle, UINT32 max_data_len, UINT32 *p_data_len, UINT8 *p_data, BOOLEAN *p_more) argument
835 NFA_P2pFlushData(tNFA_HANDLE handle, UINT32 *p_length) argument
934 NFA_P2pGetLinkInfo(tNFA_HANDLE handle) argument
983 NFA_P2pGetRemoteSap(tNFA_HANDLE handle, char *p_service_name) argument
[all...]
/external/mesa3d/src/gallium/winsys/sw/android/
H A Dandroid_sw_winsys.h40 buffer_handle_t handle; member in struct:android_winsys_handle
/external/mockito/src/org/mockito/invocation/
H A DMockHandler.java27 * @param invocation The invocation to handle
32 Object handle(Invocation invocation) throws Throwable; method in interface:MockHandler
/external/qemu/android/base/files/
H A DScopedHandle.h32 // Default destructor is used to wrap an invalid handle value.
35 // Constructor takes ownership of |handle|.
36 explicit ScopedHandle(HANDLE handle) : handle_(handle) {} argument
54 // Close handle if it is not invalid.
64 HANDLE handle = handle_; local
66 other->handle_ = handle;
/external/smack/src/org/apache/harmony/javax/security/auth/callback/
H A DCallbackHandler.java23 * Needs to be implemented by classes that want to handle authentication
24 * {@link Callback}s. A single method {@link #handle(Callback[])} must be
36 * Callback}s it actually wants to handle and in which way. For example, a
40 * values. If a {@code CallbackHandler} is not able to handle a specific
49 * if the {@code CallbackHandler} is not able to handle a
52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException; method in interface:CallbackHandler
/external/webrtc/src/common_audio/vad/
H A Dvad_sp.h46 // - handle : State information of the VAD.
50 int16_t WebRtcVad_FindMinimum(VadInstT* handle,
/external/webrtc/src/modules/audio_processing/
H A Dnoise_suppression_impl.h43 virtual int InitializeHandle(void* handle) const;
44 virtual int ConfigureHandle(void* handle) const;
45 virtual int DestroyHandle(void* handle) const;
47 virtual int GetHandleError(void* handle) const;
H A Dvoice_detection_impl.h48 virtual int InitializeHandle(void* handle) const;
49 virtual int ConfigureHandle(void* handle) const;
50 virtual int DestroyHandle(void* handle) const;
52 virtual int GetHandleError(void* handle) const;
/external/chromium_org/mojo/common/
H A Dhandle_watcher.cc34 const char kWatcherThreadName[] = "handle-watcher-thread";
49 Handle handle; member in struct:mojo::common::__anon8728::WatchData
74 // Invoked when a handle needs to be removed and notified.
75 void RemoveAndNotify(const Handle& handle, MojoResult result);
78 // and sets |handle| to the Handle. Returns false if not a known id.
79 bool GetMojoHandleByWatcherID(WatcherID watcher_id, Handle* handle) const;
82 virtual void OnHandleReady(const Handle& handle) OVERRIDE;
83 virtual void OnHandleError(const Handle& handle, MojoResult result) OVERRIDE;
98 RemoveAndNotify(data.handle, MOJO_RESULT_CANCELLED);
100 DCHECK_EQ(0u, handle_to_data_.count(data.handle));
111 Handle handle; local
118 RemoveAndNotify(const Handle& handle, MojoResult result) argument
141 OnHandleReady(const Handle& handle) argument
145 OnHandleError(const Handle& handle, MojoResult result) argument
228 StartWatching( const Handle& handle, MojoHandleSignals handle_signals, base::TimeTicks deadline, const base::Callback<void(MojoResult)>& callback) argument
368 SameThreadWatchingState(HandleWatcher* watcher, const Handle& handle, MojoHandleSignals handle_signals, MojoDeadline deadline, const base::Callback<void(MojoResult)>& callback) argument
396 StopWatchingAndNotifyReady(const Handle& handle, MojoResult result) argument
412 SecondaryThreadWatchingState(HandleWatcher* watcher, const Handle& handle, MojoHandleSignals handle_signals, MojoDeadline deadline, const base::Callback<void(MojoResult)>& callback) argument
454 Start(const Handle& handle, MojoHandleSignals handle_signals, MojoDeadline deadline, const base::Callback<void(MojoResult)>& callback) argument
[all...]
/external/libsepol/tests/
H A Dtest-downgrade.c26 #include <sepol/handle.h>
213 sepol_handle_destroy(f.handle);
223 sepol_handle_destroy(f.handle);
244 sepol_handle_t *handle; local
248 handle = sepol_handle_create();
249 if (handle == NULL) {
253 sepol_msg_set_callback(handle, NULL, NULL);
259 sepol_handle_destroy(f.handle);
267 f.handle = handle;
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sm.c72 ** Returns Returns a pointer to the initialized state machine handle.
105 void btif_sm_shutdown(btif_sm_handle_t handle) argument
107 btif_sm_cb_t *p_cb = (btif_sm_cb_t*)handle;
111 BTIF_TRACE_ERROR("%s : Invalid handle", __FUNCTION__);
126 btif_sm_state_t btif_sm_get_state(btif_sm_handle_t handle) argument
128 btif_sm_cb_t *p_cb = (btif_sm_cb_t*)handle;
132 BTIF_TRACE_ERROR("%s : Invalid handle", __FUNCTION__);
150 bt_status_t btif_sm_dispatch(btif_sm_handle_t handle, btif_sm_event_t event, argument
155 btif_sm_cb_t *p_cb = (btif_sm_cb_t*)handle;
159 BTIF_TRACE_ERROR("%s : Invalid handle", __FUNCTION_
182 btif_sm_change_state(btif_sm_handle_t handle, btif_sm_state_t state) argument
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Davct_api.h38 #define AVCT_BAD_HANDLE 2 /* Bad handle */
102 typedef void (tAVCT_CTRL_CBACK)(UINT8 handle, UINT8 event, UINT16 result,
107 typedef void (tAVCT_MSG_CBACK)(UINT8 handle, UINT8 label, UINT8 cr,
191 AVCT_API extern UINT16 AVCT_RemoveConn(UINT8 handle);
209 AVCT_API extern UINT16 AVCT_CreateBrowse(UINT8 handle, UINT8 role);
224 AVCT_API extern UINT16 AVCT_RemoveBrowse(UINT8 handle);
236 AVCT_API extern UINT16 AVCT_GetBrowseMtu (UINT8 handle);
248 AVCT_API extern UINT16 AVCT_GetPeerMtu (UINT8 handle);
271 AVCT_API extern UINT16 AVCT_MsgReq(UINT8 handle, UINT8 label, UINT8 cr, BT_HDR *p_msg);
/external/chromium_org/content/common/gpu/client/
H A Dgpu_memory_buffer_impl_surface_texture.cc33 const gfx::GpuMemoryBufferHandle& handle,
41 handle.surface_texture_id.primary_id,
42 handle.surface_texture_id.secondary_id);
53 handle.surface_texture_id,
126 gfx::GpuMemoryBufferHandle handle; local
127 handle.type = gfx::SURFACE_TEXTURE_BUFFER;
128 handle.surface_texture_id = surface_texture_id_;
129 return handle;
32 CreateFromHandle( const gfx::GpuMemoryBufferHandle& handle, const gfx::Size& size, unsigned internalformat, const DestructionCallback& callback) argument
/external/chromium_org/content/renderer/pepper/
H A Dpepper_proxy_channel_delegate_impl.cc27 base::PlatformFile handle,
30 return BrokerGetFileHandleForProcess(handle, remote_pid, should_close_source);
26 ShareHandleWithRemote( base::PlatformFile handle, base::ProcessId remote_pid, bool should_close_source) argument
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DInterfaceWithClient.java55 * @param <I> the type of the interface the manager can handle.
56 * @param <P> the type of the proxy the manager can handle. To be noted, P always extends I.
66 public final void bind(I impl, MessagePipeHandle handle) { argument
67 Router router = new RouterImpl(handle);
68 super.bind(handle.getCore(), impl, router);
70 CI client = (CI) getClientManager().attachProxy(handle.getCore(), router);
76 * Returns a Proxy that will send messages to the given |handle|. This implies that the
77 * other end of the handle must be connected to an implementation of the interface. |client|
80 public P attachProxy(MessagePipeHandle handle, CI client) { argument
81 Router router = new RouterImpl(handle);
[all...]
/external/chromium_org/ppapi/api/private/
H A Dppb_file_io_private.idl18 * Returns a file handle corresponding to the given FileIO
21 * of the returned file handle and must close it.
24 [out] PP_FileHandle handle,
/external/chromium_org/ppapi/thunk/
H A Dppb_file_io_private_thunk.cc23 PP_FileHandle* handle,
29 handle,
22 RequestOSFileHandle(PP_Resource file_io, PP_FileHandle* handle, struct PP_CompletionCallback callback) argument
/external/chromium_org/sandbox/win/src/
H A Dsync_dispatcher.cc53 HANDLE handle = NULL; local
56 result, *ipc->client_info, *name, event_type, initial_state, &handle);
57 ipc->return_info.handle = handle;
71 HANDLE handle = NULL; local
74 result, *ipc->client_info, *name, desired_access, &handle);
75 ipc->return_info.handle = handle;

Completed in 538 milliseconds

1234567891011>>