HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 176 - 200 of 1597) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
dlfcn.h 47 extern int dlclose(void* handle);
49 extern void* dlsym(void* handle, const char* symbol);
  /development/tools/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);
  /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/qemu/distrib/sdl-1.2.12/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/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);
  /external/webkit/Source/WebKit/android/jni/
WebCoreResourceLoader.cpp 65 #define SET_NATIVE_HANDLE(env, obj, handle) (env->SetIntField(obj, gResourceLoader.mObject, handle))
184 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj); local
185 LOG_ASSERT(handle, "nativeReceivedResponse must take a valid handle!");
186 // ResourceLoader::didFail() can set handle to be NULL, we need to check
187 if (!handle)
192 handle->client()->didReceiveResponse(handle, *response);
204 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj) local
226 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj); local
243 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj); local
282 WebCore::ResourceHandle* handle = GET_NATIVE_HANDLE(env, obj); 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...]
  /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...]
  /frameworks/base/libs/ui/
GraphicBuffer.cpp 48 handle = NULL;
61 handle = NULL;
77 handle = inHandle;
90 handle = buffer->handle;
95 if (handle) {
103 mBufferMapper.unregisterBuffer(handle);
104 native_handle_close(handle);
105 native_handle_delete(const_cast<native_handle*>(handle));
108 allocator.free(handle);
    [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/bluez/src/
sdpd-service.c 71 * To handle failure in gettimeofday, so an old
103 browse->handle = SDP_SERVER_RECORD_HANDLE + 1;
106 sdpdata = sdp_data_alloc(SDP_UINT32, &browse->handle);
138 server->handle = SDP_SERVER_RECORD_HANDLE;
142 sdp_data_alloc(SDP_UINT32, &server->handle));
191 record->handle = sdp_next_handle();
194 sdp_data = sdp_data_alloc(SDP_UINT32, &record->handle);
239 if (rec->handle == 0xffffffff) {
240 rec->handle = sdp_next_handle();
241 if (rec->handle < 0x10000
305 uint32_t handle = 0xffffffff; local
402 sdp_data_t *handle; local
474 uint32_t handle = ntohl(bt_get_unaligned((uint32_t *) p)); local
513 uint32_t handle = ntohl(bt_get_unaligned((uint32_t *) p)); local
    [all...]
plugin.c 45 void *handle; member in struct:bluetooth_plugin
58 static gboolean add_plugin(void *handle, struct bluetooth_plugin_desc *desc)
76 plugin->handle = handle;
173 void *handle; local
182 handle = dlopen(filename, RTLD_NOW);
183 if (handle == NULL) {
192 desc = dlsym(handle, "bluetooth_plugin_desc");
195 dlclose(handle);
201 dlclose(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...]
f_cgroup.c 25 static int cgroup_parse_opt(struct filter_util *qu, char *handle,
32 if (handle) {
33 h = strtol(handle, NULL, 0);
35 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
36 handle);
85 struct rtattr *opt, __u32 handle)
94 if (handle)
95 fprintf(f, "handle 0x%x ", handle);
  /frameworks/base/include/binder/
IPCThreadState.h 61 status_t transact(int32_t handle,
65 void incStrongHandle(int32_t handle);
66 void decStrongHandle(int32_t handle);
67 void incWeakHandle(int32_t handle);
68 void decWeakHandle(int32_t handle);
69 status_t attemptIncStrongHandle(int32_t handle);
70 static void expungeHandle(int32_t handle, IBinder* binder);
71 status_t requestDeathNotification( int32_t handle,
73 status_t clearDeathNotification( int32_t handle,
95 int32_t handle,
    [all...]
  /hardware/msm7k/libgralloc-qsd8k/
mapper.cpp 54 buffer_handle_t handle,
57 private_handle_t* hnd = (private_handle_t*)handle;
66 LOGE("Could not mmap handle %p, fd=%d (%s)",
67 handle, hnd->fd, strerror(errno));
80 buffer_handle_t handle)
82 private_handle_t* hnd = (private_handle_t*)handle;
106 buffer_handle_t handle)
108 if (private_handle_t::validate(handle) < 0)
116 * handle, but instead maintained in the kernel or at least
120 // if this handle was created in this process, then we keep it as is
    [all...]
  /frameworks/base/voip/java/com/android/server/sip/
SipSessionListenerProxy.java 53 handle(t, "onCalling()");
67 handle(t, "onRinging()");
80 handle(t, "onRingingBack()");
94 handle(t, "onCallEstablished()");
107 handle(t, "onCallEnded()");
121 handle(t, "onCallTransferring()");
134 handle(t, "onCallBusy()");
148 handle(t, "onCallChangeFailed()");
162 handle(t, "onError()");
175 handle(t, "onRegistering()")
222 private void handle(Throwable t, String message) { method in class:SipSessionListenerProxy
    [all...]
  /external/sonivox/jet_tools/JetCreator/
eas.py 218 def __init__ (self, handle, eas):
220 self.handle = handle
227 result = eas_dll.EAS_SetVolume(self.eas.handle, self.handle, volume)
235 volume = eas_dll.EAS_GetVolume(self.eas.handle, self.handle)
245 result = eas_dll.EAS_SetPriority(self.eas.handle, self.handle, priority)
254 result = eas_dll.EAS_GetPriority(self.eas.handle, self.handle, byref(priority))
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/include/GLSLANG/
ShaderLang.h 120 // If handle creation fails, 0 will be returned.
127 // Returns the handle of constructed compiler.
135 void ShDestruct(ShHandle handle);
141 // handle: Specifies the handle of compiler to be used.
163 const ShHandle handle,
171 // handle: Specifies the compiler
188 void ShGetInfo(const ShHandle handle, ShShaderInfo pname, int* params);
192 // handle: Specifies the compiler
198 void ShGetInfoLog(const ShHandle handle, char* infoLog)
    [all...]

Completed in 2550 milliseconds

1 2 3 4 5 6 78 91011>>