HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 251 - 275 of 2079) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /external/chromium/base/test/
multiprocess_test.cc 52 ProcessHandle handle = static_cast<ProcessHandle>(NULL); local
54 false, true, &handle); local
55 return handle;
66 ProcessHandle handle = kNullProcessHandle; local
68 fds_to_map, false, &handle);
69 return handle;
  /external/chromium/chrome/browser/policy/
configuration_policy_loader_win.cc 21 if (!RegisterGPNotification(user_policy_changed_event_.handle(), false)) {
25 if (!RegisterGPNotification(machine_policy_changed_event_.handle(), true)) {
51 user_policy_changed_event_.handle(), this)) {
58 machine_policy_changed_event_.handle(), this)) {
73 void ConfigurationPolicyLoaderWin::OnObjectSignaled(HANDLE object) {
75 DCHECK(object == user_policy_changed_event_.handle() ||
76 object == machine_policy_changed_event_.handle())
  /external/libsepol/include/sepol/
port_record.h 5 #include <sepol/handle.h>
22 extern int sepol_port_key_create(sepol_handle_t * handle,
29 extern int sepol_port_key_extract(sepol_handle_t * handle,
54 extern int sepol_port_set_con(sepol_handle_t * handle,
58 extern int sepol_port_create(sepol_handle_t * handle, sepol_port_t ** port_ptr);
60 extern int sepol_port_clone(sepol_handle_t * handle,
  /external/qemu/distrib/sdl-1.2.15/src/thread/beos/
SDL_systhread.c 65 thread->handle=spawn_thread(RunThread, "SDL", B_NORMAL_PRIORITY, args);
66 if ( (thread->handle == B_NO_MORE_THREADS) ||
67 (thread->handle == B_NO_MEMORY) ) {
71 resume_thread(thread->handle);
90 wait_for_thread(thread->handle, &the_status);
95 kill_thread(thread->handle);
  /external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_sysmutex.cpp 51 TInt handle; member in struct:SDL_mutex
56 TInt handle; member in struct:_SDL_mutex
83 mutex->handle = rmutex.Handle();
94 rmutex.SetHandle(mutex->handle);
114 rmutex.SetHandle(mutex->handle);
127 rmutex.SetHandle(mutex->handle);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
ResourceManager.h 57 Buffer *getBuffer(GLuint handle);
58 Shader *getShader(GLuint handle);
59 Program *getProgram(GLuint handle);
60 Texture *getTexture(GLuint handle);
61 Renderbuffer *getRenderbuffer(GLuint handle);
63 void setRenderbuffer(GLuint handle, Renderbuffer *renderbuffer);
  /external/webkit/Source/WebKit2/Shared/gtk/
UpdateChunk.cpp 68 SharedMemory::Handle handle; local
69 if (m_sharedMemory->createHandle(handle, SharedMemory::ReadOnly)) {
71 encoder->encode(handle);
97 SharedMemory::Handle handle; local
98 if (!decoder->decode(handle))
101 chunk.m_sharedMemory = SharedMemory::create(handle, SharedMemory::ReadOnly);
  /frameworks/base/core/jni/
android_database_SQLiteCommon.cpp 23 /* throw a SQLiteException with a message appropriate for the error in handle */
24 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle) {
25 throw_sqlite3_exception(env, handle, NULL);
33 /* throw a SQLiteException with a message appropriate for the error in handle
36 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) {
37 if (handle) {
42 throw_sqlite3_exception(env, sqlite3_extended_errcode(handle),
43 sqlite3_errmsg(handle), message);
  /hardware/qcom/msm8960/original-kernel-headers/linux/
ion.h 183 * an opaque handle to it.
190 * ion_free - free a handle
192 * @handle: the handle to free
194 * Free the provided handle.
196 void ion_free(struct ion_client *client, struct ion_handle *handle);
199 * ion_phys - returns the physical address and len of a handle
201 * @handle: the handle
205 * This function queries the heap for a particular handle to get th
517 struct ion_handle *handle; member in struct:ion_allocation_data
531 struct ion_handle *handle; member in struct:ion_fd_data
540 struct ion_handle *handle; member in struct:ion_handle_data
    [all...]
  /hardware/samsung_slsi/exynos5/libsecurepath/
tlc_communication.cpp 49 bzero(&(comm_ctx->handle), sizeof(mcSessionHandle_t)); // Clear the session handle
51 comm_ctx->handle.deviceId = comm_ctx->device_id; // The device ID (default device is used)
53 mcRet = mcOpenSession(&(comm_ctx->handle), &(comm_ctx->uuid), (uint8_t *)(comm_ctx->tci_msg),
84 mcRet = mcCloseSession(&(comm_ctx->handle));
111 mcRet = mcNotify(&(comm_ctx->handle));
120 mcRet = mcWaitNotification(&(comm_ctx->handle), -1);
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Kernel/Platforms/Generic/
CMcKMod.h 111 mcResult_t free(uint32_t handle, addr_t buffer, uint32_t len);
120 mcResult_t unregisterWsmL2(uint32_t handle);
122 mcResult_t lockWsmL2(uint32_t handle);
124 mcResult_t unlockWsmL2(uint32_t handle);
128 addr_t findWsmL2(uint32_t handle);
130 mcResult_t findContiguousWsm(uint32_t handle, addr_t *phys, uint32_t *len);
  /sdk/emulator/opengl/tests/ut_renderer/
Renderer.h 32 unsigned int handle; member in class:Renderer::ClientHandle
33 ClientHandle(unsigned int _pid, unsigned int _handle) : pid(_pid), handle(_handle) {}
36 bool val = (pid == p.pid) ? handle < p.handle : pid < p.pid;
42 int createSurface(RenderingThread *thread, const ClientHandle & handle);
43 int destroySurface(RenderingThread *thread, const ClientHandle &handle);
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 46 handle = NULL;
59 handle = NULL;
75 handle = inHandle;
88 handle = buffer->handle;
93 if (handle) {
101 mBufferMapper.unregisterBuffer(handle);
102 native_handle_close(handle);
103 native_handle_delete(const_cast<native_handle*>(handle));
106 allocator.free(handle);
    [all...]
  /bionic/libthread_db/
libthread_db.c 80 _event_getmsg_helper(td_thrhandle_t const * handle, void * bkpt_addr)
88 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)48 /* eip */, NULL);
98 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)4 /* ecx */, NULL);
103 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)60 /* r15/pc */, NULL);
108 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)0 /* r0 */, NULL);
113 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(64*4) /* pc */, NULL);
117 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(4*4) /* a0 */, NULL);
161 td_thr_get_info(td_thrhandle_t const * handle, td_thrinfo_t * info)
163 info->ti_tid = handle->tid;
164 info->ti_lid = handle->tid
223 td_thrhandle_t handle; local
    [all...]
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 40 SharedMemory::Handle::Handle()
46 SharedMemory::Handle::~Handle()
52 bool SharedMemory::Handle::isNull() const
57 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
64 bool SharedMemory::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle)
66 ASSERT(!handle.m_port)
    [all...]
  /frameworks/native/services/sensorservice/
BatteryService.cpp 41 status_t BatteryService::noteStartSensor(int uid, int handle) {
45 data.writeInt32(handle);
52 status_t BatteryService::noteStopSensor(int uid, int handle) {
56 data.writeInt32(handle);
63 bool BatteryService::addSensor(uid_t uid, int handle) {
65 Info key(uid, handle);
75 bool BatteryService::removeSensor(uid_t uid, int handle) {
77 ssize_t index = mActivations.indexOf(Info(uid, handle));
85 void BatteryService::enableSensorImpl(uid_t uid, int handle) {
87 if (addSensor(uid, handle)) {
    [all...]
  /external/libsepol/src/
node_record.c 44 static int node_parse_addr(sepol_handle_t * handle,
55 ERR(handle, "could not parse IPv4 address "
68 ERR(handle, "could not parse IPv6 address "
81 ERR(handle, "unsupported protocol %u, could not "
92 static int node_alloc_addr(sepol_handle_t * handle,
116 ERR(handle, "unsupported protocol %u", proto);
125 ERR(handle, "out of memory");
129 ERR(handle, "could not allocate address of protocol %s",
138 static int node_expand_addr(sepol_handle_t * handle,
153 ERR(handle,
    [all...]
  /external/quake/quake/src/WinQuake/
sys_sun.cpp 133 void Sys_FileClose (int handle)
135 if (sys_handles[handle].pMap)
136 if (munmap( sys_handles[handle].pMap, sys_handles[handle].nLen ) != 0)
137 printf( "failed to unmap handle %d\n", handle );
139 fclose (sys_handles[handle].hFile);
140 sys_handles[handle].hFile = NULL;
143 void Sys_FileSeek (int handle, int position)
145 if (sys_handles[handle].pMap
    [all...]
  /external/webrtc/src/common_audio/vad/
vad_unittest.cc 82 VadInst* handle = NULL; local
113 EXPECT_EQ(-1, WebRtcVad_Assign(&handle, NULL));
114 EXPECT_EQ(0, WebRtcVad_Assign(&handle, tmp_handle));
115 EXPECT_EQ(handle, tmp_handle);
119 ASSERT_EQ(0, WebRtcVad_Create(&handle));
122 EXPECT_EQ(-1, WebRtcVad_Process(handle, kRates[0], speech, kFrameLengths[0]));
123 EXPECT_EQ(-1, WebRtcVad_set_mode(handle, kModes[0]));
126 ASSERT_EQ(0, WebRtcVad_Init(handle));
129 EXPECT_EQ(-1, WebRtcVad_set_mode(handle, kModes[0] - 1));
130 EXPECT_EQ(-1, WebRtcVad_set_mode(handle, kModes[kModesSize - 1] + 1))
187 VadInstT* handle = (VadInstT*) malloc(sizeof(VadInstT)); local
    [all...]
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceHandleSoup.cpp 116 void WebCoreSynchronousLoader::didFail(ResourceHandle* handle, const ResourceError& error)
119 didFinishLoading(handle, 0);
213 ResourceHandle* handle = static_cast<ResourceHandle*>(data); local
214 if (!handle)
216 ResourceHandleInternal* d = handle->getInternal();
222 KURL newURL = KURL(handle->firstRequest().url(), location);
224 ResourceRequest request = handle->firstRequest();
237 d->client()->willSendRequest(handle, request, response);
263 // For all the other responses, we handle each chunk ourselves,
268 RefPtr<ResourceHandle> handle = static_cast<ResourceHandle*>(data) local
299 RefPtr<ResourceHandle> handle = static_cast<ResourceHandle*>(data); local
406 RefPtr<ResourceHandle> handle = static_cast<ResourceHandle*>(g_object_get_data(source, "webkit-resource")); local
726 RefPtr<ResourceHandle> handle = create(context, request, &syncLoader, false \/*defersLoading*\/, false \/*shouldContentSniff*\/); local
739 RefPtr<ResourceHandle> handle = static_cast<ResourceHandle*>(g_object_get_data(source, "webkit-resource")); local
750 RefPtr<ResourceHandle> handle = static_cast<ResourceHandle*>(g_object_get_data(source, "webkit-resource")); local
    [all...]
  /external/bluetooth/bluedroid/stack/pan/
pan_int.h 54 UINT16 handle; member in struct:__anon3491
112 extern void pan_conn_ind_cb (UINT16 handle,
117 extern void pan_connect_state_cb (UINT16 handle, BD_ADDR rem_bda, tBNEP_RESULT result, BOOLEAN is_role_change);
118 extern void pan_data_ind_cb (UINT16 handle,
125 extern void pan_data_buf_ind_cb (UINT16 handle,
131 extern void pan_tx_data_flow_cb (UINT16 handle,
133 void pan_proto_filt_ind_cb (UINT16 handle,
138 void pan_mcast_filt_ind_cb (UINT16 handle,
144 extern tPAN_CONN *pan_allocate_pcb (BD_ADDR p_bda, UINT16 handle);
145 extern tPAN_CONN *pan_get_pcb_by_handle (UINT16 handle);
    [all...]
  /external/iproute2/tc/
f_basic.c 38 static int basic_parse_opt(struct filter_util *qu, char *handle,
48 if (handle) {
49 h = strtol(handle, NULL, 0);
51 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
52 handle);
72 unsigned handle; local
74 if (get_tc_classid(&handle, *argv)) {
78 addattr_l(n, MAX_MSG, TCA_BASIC_CLASSID, &handle, 4);
110 struct rtattr *opt, __u32 handle)
119 if (handle)
    [all...]
  /external/webrtc/src/modules/audio_processing/
level_estimator_impl.cc 98 Level* level = static_cast<Level*>(handle(0));
129 Level* level = static_cast<Level*>(handle(0));
144 int LevelEstimatorImpl::DestroyHandle(void* handle) const {
145 assert(handle != NULL);
146 Level* level = static_cast<Level*>(handle);
151 int LevelEstimatorImpl::InitializeHandle(void* handle) const {
152 assert(handle != NULL);
153 Level* level = static_cast<Level*>(handle);
159 int LevelEstimatorImpl::ConfigureHandle(void* /*handle*/) const {
167 int LevelEstimatorImpl::GetHandleError(void* handle) const
    [all...]

Completed in 2405 milliseconds

<<11121314151617181920>>