HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 51 - 75 of 3441) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
HandleAllocator.cpp 37 GLuint handle = mFreeValues.back(); local
39 return handle;
44 void HandleAllocator::release(GLuint handle)
46 if (handle == mNextValue - 1)
57 if (handle >= mBaseValue)
59 mFreeValues.push_back(handle);
  /external/chromium_org/webkit/child/
websocketstreamhandle_delegate.h 22 virtual void WillOpenStream(WebKit::WebSocketStreamHandle* handle,
24 virtual void WillSendData(WebKit::WebSocketStreamHandle* handle,
27 virtual void DidOpenStream(WebKit::WebSocketStreamHandle* handle,
29 virtual void DidSendData(WebKit::WebSocketStreamHandle* handle,
31 virtual void DidReceiveData(WebKit::WebSocketStreamHandle* handle,
34 virtual void DidFail(WebKit::WebSocketStreamHandle* handle,
  /external/flac/include/FLAC/
callback.h 56 * for the metadata interfaces to handle I/O.
85 /** This is the opaque handle type used by the callbacks. Typically
97 * \param handle The handle to the data source.
101 typedef size_t (*FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
110 * \param handle The handle to the data source.
114 typedef size_t (*FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
121 * \param handle The handle to the data source
    [all...]
  /external/libsepol/include/sepol/
interfaces.h 6 #include <sepol/handle.h>
9 extern int sepol_iface_count(sepol_handle_t * handle,
14 extern int sepol_iface_exists(sepol_handle_t * handle,
20 extern int sepol_iface_query(sepol_handle_t * handle,
27 extern int sepol_iface_modify(sepol_handle_t * handle,
38 extern int sepol_iface_iterate(sepol_handle_t * handle,
nodes.h 4 #include <sepol/handle.h>
9 extern int sepol_node_count(sepol_handle_t * handle,
13 extern int sepol_node_exists(sepol_handle_t * handle,
18 extern int sepol_node_query(sepol_handle_t * handle,
24 extern int sepol_node_modify(sepol_handle_t * handle,
35 extern int sepol_node_iterate(sepol_handle_t * handle,
ports.h 4 #include <sepol/handle.h>
9 extern int sepol_port_count(sepol_handle_t * handle,
13 extern int sepol_port_exists(sepol_handle_t * handle,
18 extern int sepol_port_query(sepol_handle_t * handle,
24 extern int sepol_port_modify(sepol_handle_t * handle,
35 extern int sepol_port_iterate(sepol_handle_t * handle,
context.h 6 #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/webrtc/src/modules/audio_processing/utility/
delay_estimator.h 48 // - handle : Pointer to the delay estimation instance.
50 int WebRtc_FreeBinaryDelayEstimator(BinaryDelayEstimator* handle);
53 int WebRtc_CreateBinaryDelayEstimator(BinaryDelayEstimator** handle,
60 // - handle : Pointer to the delay estimation instance.
63 // - handle : Initialized instance.
65 int WebRtc_InitBinaryDelayEstimator(BinaryDelayEstimator* handle);
71 // - handle : Pointer to the delay estimation instance.
76 // - handle : Updated instance.
83 int WebRtc_ProcessBinarySpectrum(BinaryDelayEstimator* handle,
91 // - handle : Pointer to the delay estimation instance
    [all...]
  /system/core/fastbootd/
protocol.h 47 void (*handle)(struct protocol_handle *handle, const char *arg));
53 void protocol_handle_command(struct protocol_handle *handle, char *buffer);
57 void fastboot_fail(struct protocol_handle *handle, const char *reason);
58 void fastboot_okay(struct protocol_handle *handle, const char *reason);
59 void fastboot_data(struct protocol_handle *handle, size_t len);
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
browserprocess.py 13 def __init__(self, handle):
14 self.handle = handle
15 print 'PID', self.handle.pid
18 return self.handle.returncode
21 return self.handle.poll() is None
37 self.handle.wait()
48 self.handle.terminate()
51 self.handle.kill()
59 os.killpg(self.handle.pid, signal.SIGTERM
    [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_ag_co.c 65 ** Parameters handle - handle of the AG instance
75 void bta_ag_co_audio_state(UINT16 handle, UINT8 app_id, UINT8 state)
77 BTIF_TRACE_DEBUG2("bta_ag_co_audio_state: handle %d, state %d", handle, state);
94 void bta_ag_co_data_open(UINT16 handle, tBTA_SERVICE_ID service)
96 BTIF_TRACE_DEBUG2("bta_ag_co_data_open handle:%d service:%d", handle, service);
110 void bta_ag_co_data_close(UINT16 handle)
112 BTIF_TRACE_DEBUG1("bta_ag_co_data_close handle:%d", handle)
    [all...]
  /external/chromium_org/content/public/browser/
child_process_data.h 28 // The handle to the process.
29 base::ProcessHandle handle; member in struct:content::ChildProcessData
32 : process_type(process_type), id(0), handle(base::kNullProcessHandle) {
  /external/chromium_org/ppapi/shared_impl/
platform_file.h 14 PPAPI_SHARED_EXPORT base::PlatformFile IntToPlatformFile(int32_t handle);
15 PPAPI_SHARED_EXPORT int32_t PlatformFileToInt(base::PlatformFile handle);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_loadso.h 57 * 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/
SDL_sysloadso.c 38 void *SDL_LoadFunction(void *handle, const char *name)
45 void SDL_UnloadObject(void *handle)
  /external/sqlite/android/
sqlite3_android.h 26 int register_android_functions(sqlite3 * handle, int uit16Storage);
28 int register_localized_collators(sqlite3* handle, const char* systemLocale, int utf16Storage);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_loadso.h 57 * 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);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_loadso.h 57 * 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);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_loadso.h 57 * 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/bluetooth/bluedroid/bta/include/
bta_ag_co.h 57 ** Parameters handle - handle of the AG instance
67 BTA_API extern void bta_ag_co_audio_state(UINT16 handle, UINT8 app_id, UINT8 state);
82 BTA_API extern void bta_ag_co_data_open(UINT16 handle, tBTA_SERVICE_ID service);
95 BTA_API extern void bta_ag_co_data_close(UINT16 handle);
109 BTA_API extern void bta_ag_co_tx_write(UINT16 handle, UINT8 *p_data, UINT16 len);
  /external/chromium_org/cc/output/
software_frame_data.cc 11 handle(base::SharedMemory::NULLHandle()) {}
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_handle_table.h 30 * 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/lzma/CPP/Windows/
Handle.h 1 // Windows/Handle.h
11 HANDLE _handle;
13 operator HANDLE() { return _handle; }
26 void Attach(HANDLE handle) { _handle = handle; }
27 HANDLE Detach()
29 HANDLE handle = _handle; local
31 return handle;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_handle_table.h 30 * 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/
SDL_systhread.c 34 thread->handle = thd_create(SDL_RunThread,args);
35 if (thread->handle == NULL) {
54 thd_wait(thread->handle);
59 thd_destroy(thread->handle);

Completed in 431 milliseconds

1 23 4 5 6 7 8 91011>>