Searched refs:handle (Results 51 - 75 of 2418) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_loadso.h57 * to the object handle (or NULL if there was an error).
63 * Given an object handle, this function looks up the address of the
67 extern DECLSPEC void * SDLCALL SDL_LoadFunction(void *handle, const char *name);
70 extern DECLSPEC void SDLCALL SDL_UnloadObject(void *handle);
/external/qemu/distrib/sdl-1.2.15/src/loadso/dummy/
H A DSDL_sysloadso.c38 void *SDL_LoadFunction(void *handle, const char *name) argument
45 void SDL_UnloadObject(void *handle) argument
/external/sqlite/android/
H A Dsqlite3_android.h26 int register_android_functions(sqlite3 * handle, int uit16Storage);
28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
/external/chromium_org/content/common/gpu/client/
H A Dgpu_memory_buffer_impl_ozone_native_buffer.cc24 const gfx::GpuMemoryBufferHandle& handle) {
25 DCHECK_EQ(gfx::OZONE_NATIVE_BUFFER, handle.type);
28 handle, size, internalformat, base::Bind(&Noop)));
33 const gfx::GpuMemoryBufferHandle& handle) {
34 DCHECK_EQ(gfx::OZONE_NATIVE_BUFFER, handle.type);
36 callback.Run(handle);
59 gfx::GpuMemoryBufferHandle handle; local
60 handle.global_id.primary_id = g_next_buffer_id.GetNext();
61 handle.global_id.secondary_id = client_id;
62 handle
20 GpuMemoryBufferCreated( const gfx::Size& size, unsigned internalformat, const GpuMemoryBufferImpl::CreationCallback& callback, const gfx::GpuMemoryBufferHandle& handle) argument
31 GpuMemoryBufferCreatedForChildProcess( const GpuMemoryBufferImpl::AllocationCallback& callback, const gfx::GpuMemoryBufferHandle& handle) argument
78 gfx::GpuMemoryBufferHandle handle; local
92 CreateFromHandle( const gfx::GpuMemoryBufferHandle& handle, const gfx::Size& size, unsigned internalformat, const DestructionCallback& callback) argument
149 gfx::GpuMemoryBufferHandle handle; local
[all...]
/external/chromium_org/mojo/public/js/bindings/
H A Dsupport.js13 * Waits on the given handle until the state indicated by |signals| is
16 * @param {MojoHandle} handle The handle to wait on.
24 function asyncWait(handle, signals, callback) { [native code] }
/external/chromium_org/remoting/base/
H A Dscoped_sc_handle_win.h18 // Closes the handle.
19 static bool CloseHandle(SC_HANDLE handle) { argument
20 return ::CloseServiceHandle(handle) != FALSE;
23 // Returns true if the handle value is valid.
24 static bool IsHandleValid(SC_HANDLE handle) { argument
25 return handle != NULL;
28 // Returns NULL handle value.
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_handle_table.h30 * Generic handle table.
70 * Returns a zero handle on failure (out of memory).
81 unsigned handle,
87 * Returns NULL for an invalid handle.
91 unsigned handle);
96 unsigned handle);
109 unsigned handle);
/external/libsepol/include/sepol/
H A Dcontext.h6 #include <sepol/handle.h>
14 extern int sepol_context_check(sepol_handle_t * handle,
18 extern int sepol_mls_contains(sepol_handle_t * handle,
23 extern int sepol_mls_check(sepol_handle_t * handle,
/external/lzma/CPP/Windows/
H A DHandle.h26 void Attach(HANDLE handle) { _handle = handle; } argument
29 HANDLE handle = _handle; local
31 return handle;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_handle_table.h30 * Generic handle table.
70 * Returns a zero handle on failure (out of memory).
81 unsigned handle,
87 * Returns NULL for an invalid handle.
91 unsigned handle);
96 unsigned handle);
109 unsigned handle);
/external/qemu/distrib/sdl-1.2.15/src/thread/dc/
H A DSDL_systhread.c34 thread->handle = thd_create(SDL_RunThread,args);
35 if (thread->handle == NULL) {
54 thd_wait(thread->handle);
59 thd_destroy(thread->handle);
/external/bluetooth/bluedroid/bta/include/
H A Dbta_ag_ci.h48 BTA_API extern void bta_ag_ci_rx_write(UINT16 handle, char *p_data, UINT16 len);
61 BTA_API extern void bta_ag_ci_slc_ready(UINT16 handle);
74 BTA_API extern void bta_ag_ci_wbs_command (UINT16 handle, char *p_data, UINT16 len);
H A Dbta_ag_co.h57 ** Parameters handle - handle of the AG instance
72 BTA_API extern void bta_ag_co_audio_state(UINT16 handle, UINT8 app_id, UINT8 state,
76 BTA_API extern void bta_ag_co_audio_state(UINT16 handle, UINT8 app_id, UINT8 state);
92 BTA_API extern void bta_ag_co_data_open(UINT16 handle, tBTA_SERVICE_ID service);
105 BTA_API extern void bta_ag_co_data_close(UINT16 handle);
119 BTA_API extern void bta_ag_co_tx_write(UINT16 handle, UINT8 *p_data, UINT16 len);
/external/chromium_org/content/common/gpu/
H A Dgpu_memory_buffer_factory_ozone.cc19 const gfx::GpuMemoryBufferHandle& handle,
23 switch (handle.type) {
26 handle.global_id, size, internalformat, usage)
27 ? handle
35 const gfx::GpuMemoryBufferHandle& handle) OVERRIDE {
36 switch (handle.type) {
38 ozone_buffer_factory_.DestroyGpuMemoryBuffer(handle.global_id);
46 const gfx::GpuMemoryBufferHandle& handle,
50 switch (handle.type) {
54 if (!image->Initialize(handle))
[all...]
H A Dgpu_memory_buffer_factory_mac.cc19 const gfx::GpuMemoryBufferHandle& handle,
23 switch (handle.type) {
26 handle.global_id, size, internalformat);
33 const gfx::GpuMemoryBufferHandle& handle) OVERRIDE {
34 switch (handle.type) {
36 io_surface_factory_.DestroyGpuMemoryBuffer(handle.global_id);
44 const gfx::GpuMemoryBufferHandle& handle,
48 switch (handle.type) {
52 if (!image->Initialize(handle))
59 if (handle
[all...]
/external/chromium_org/mojo/public/cpp/test_support/
H A Dtest_utils.h15 // Writes a message to |handle| with message data |text|. Returns true on
17 bool WriteTextMessage(const MessagePipeHandle& handle, const std::string& text);
19 // Reads a message from |handle|, putting its contents into |*text|. Returns
22 bool ReadTextMessage(const MessagePipeHandle& handle, std::string* text);
24 // Discards a message from |handle|. Returns true on success. (This does not
26 bool DiscardMessage(const MessagePipeHandle& handle);
/external/chromium_org/net/base/
H A Dcrypto_module_openssl.cc16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) { argument
21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) { argument
/external/libpcap/
H A Dpcap-can-linux.c144 can_activate(pcap_t* handle) argument
146 struct pcap_can *handlep = handle->priv;
151 handle->bufsize = 24;
152 handle->offset = 8;
153 handle->linktype = DLT_CAN_SOCKETCAN;
154 handle->read_op = can_read_linux;
155 handle->inject_op = can_inject_linux;
156 handle->setfilter_op = can_setfilter_linux;
157 handle->setdirection_op = can_setdirection_linux;
158 handle
220 can_read_linux(pcap_t *handle, int max_packets, pcap_handler callback, u_char *user) argument
274 can_inject_linux(pcap_t *handle, const void *buf, size_t size) argument
284 can_stats_linux(pcap_t *handle, struct pcap_stat *stats) argument
[all...]
H A Dpcap-dbus.c54 dbus_read(pcap_t *handle, int max_packets, pcap_handler callback, u_char *user) argument
56 struct pcap_dbus *handlep = handle->priv;
69 // XXX handle->opt.timeout = timeout_ms;
71 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "Connection closed");
75 if (handle->break_loop) {
76 handle->break_loop = 0;
84 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "Disconnected");
90 /* pkth.caplen = min (payload_len, handle->snapshot); */
93 if (handle->fcode.bf_insns == NULL ||
94 bpf_filter(handle
106 dbus_write(pcap_t *handle, const void *buf, size_t size) argument
128 dbus_stats(pcap_t *handle, struct pcap_stat *stats) argument
139 dbus_cleanup(pcap_t *handle) argument
149 dbus_activate(pcap_t *handle) argument
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHandler.java40 void handle(T x); method in interface:Handler
44 public void handle(Object x) {
54 public void handle(Throwable th) {
/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Dprocessing_component.h34 void* handle(int index) const;
39 virtual int InitializeHandle(void* handle) const = 0;
40 virtual int ConfigureHandle(void* handle) const = 0;
41 virtual void DestroyHandle(void* handle) const = 0;
43 virtual int GetHandleError(void* handle) const = 0;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dfunction-sections-are-bad.cc19 void *handle = dlopen(path, RTLD_LAZY); local
20 if (!handle) fprintf(stderr, "%s\n", dlerror());
21 assert(handle != 0);
24 F f = (F)dlsym(handle, "call_rtl_from_dso");
29 dlclose(handle);
/external/iptables/include/
H A Diptables.h11 struct xtc_handle **handle, bool restore);
13 struct xtc_handle *handle);
15 struct xtc_handle *handle);
17 int verbose, int builtinstoo, struct xtc_handle *handle);
19 struct xtc_handle *handle, const char *chain, int counters);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeIterator.java116 /** Return a handle to the filter used to screen nodes.
139 int handle=dtm_iter.getRoot();
140 return dtm_iter.getDTM(handle).getNode(handle);
163 int handle=dtm_iter.nextNode();
164 if (handle==DTM.NULL)
166 return dtm_iter.getDTM(handle).getNode(handle);
181 int handle=dtm_iter.previousNode();
182 if (handle
[all...]
/external/chromium_org/ui/surface/
H A Dtransport_dib.h43 : handle(NULL),
48 : handle(h),
53 return other.handle == handle && other.sequence_num == sequence_num;
57 // Use the lexicographic order on the tuple <handle, sequence_num>.
58 if (other.handle != handle)
59 return other.handle < handle;
63 HANDLE handle; member in struct:TransportDIB::HandleAndSequenceNum
[all...]

Completed in 1632 milliseconds

1234567891011>>