HomeSort by relevance Sort by last modified time
    Searched defs:handle (Results 126 - 150 of 535) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 35 SharedMemory::Handle::Handle()
41 SharedMemory::Handle::~Handle()
49 bool SharedMemory::Handle::isNull() const
54 void SharedMemory::Handle::encode(CoreIPC::ArgumentEncoder* encoder) const
58 // Hand off ownership of our HANDLE to the receiving process. It will close it for us.
64 // Send along our PID so that the receiving process can duplicate the HANDLE for its own use.
68 static bool getDuplicatedHandle(HANDLE sourceHandle, DWORD sourcePID, HANDLE& duplicatedHandle
115 HANDLE handle = ::CreateFileMappingW(INVALID_HANDLE_VALUE, 0, PAGE_READWRITE, 0, size, 0); local
    [all...]
  /external/webrtc/src/modules/audio_processing/main/source/
noise_suppression_impl.cc 28 typedef NsHandle Handle;
30 typedef NsxHandle Handle;
67 Handle* my_handle = static_cast<Handle*>(handle(i));
69 err = WebRtcNs_Process(static_cast<Handle*>(handle(i)),
75 err = WebRtcNsx_Process(static_cast<Handle*>(handle(i)),
128 Handle* handle = NULL local
    [all...]
voice_detection_impl.cc 23 typedef VadInst Handle;
78 vad_ret_val = WebRtcVad_Process(static_cast<Handle*>(handle(0)),
170 Handle* handle = NULL; local
171 if (WebRtcVad_Create(&handle) != apm_->kNoError) {
172 handle = NULL;
174 assert(handle != NULL);
177 return handle;
180 int VoiceDetectionImpl::DestroyHandle(void* handle) const
    [all...]
  /external/wpa_supplicant/
eap_methods.c 188 void *handle; local
192 handle = dlopen(so, RTLD_LAZY);
193 if (handle == NULL) {
199 dyn_init = dlsym(handle, "eap_peer_method_dynamic_init");
201 dlclose(handle);
209 dlclose(handle);
215 /* Store the handle for this shared object. It will be freed with
217 eap_methods->dl_handle = handle;
238 void *handle; local
257 handle = m->dl_handle
479 void *handle; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_methods.c 188 void *handle; local
192 handle = dlopen(so, RTLD_LAZY);
193 if (handle == NULL) {
199 dyn_init = dlsym(handle, "eap_peer_method_dynamic_init");
201 dlclose(handle);
209 dlclose(handle);
215 /* Store the handle for this shared object. It will be freed with
217 eap_methods->dl_handle = handle;
238 void *handle; local
257 handle = m->dl_handle
507 void *handle; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_methods.c 188 void *handle; local
192 handle = dlopen(so, RTLD_LAZY);
193 if (handle == NULL) {
199 dyn_init = dlsym(handle, "eap_peer_method_dynamic_init");
201 dlclose(handle);
209 dlclose(handle);
215 /* Store the handle for this shared object. It will be freed with
217 eap_methods->dl_handle = handle;
238 void *handle; local
257 handle = m->dl_handle
352 void *handle; local
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffs_fileem.c 57 int handle; member in struct:__anon14405
85 filedisk.handle = open("yaffsemfile", O_RDWR | O_CREAT, S_IREAD | S_IWRITE);
87 if(filedisk.handle < 0)
94 fSize = lseek(filedisk.handle,0,SEEK_END);
100 lseek(filedisk.handle,0,SEEK_SET);
106 written = write(filedisk.handle,&p,sizeof(yflash_Page));
129 lseek(filedisk.handle,chunkInNAND * 528,SEEK_SET);
130 written = write(filedisk.handle,data,512);
137 lseek(filedisk.handle,chunkInNAND * 528 + 512,SEEK_SET);
138 written = write(filedisk.handle,spare,16)
    [all...]
  /frameworks/base/core/jni/
android_hardware_SensorManager.cpp 36 jfieldID handle; member in struct:android::SensorOffsets
73 env->SetIntField(sensor, sensorOffsets.handle, list->getHandle());
154 sensorOffsets.handle = _env->GetFieldID(sensorClass, "mHandle", "I");
  /frameworks/base/include/binder/
BpBinder.h 30 BpBinder(int32_t handle);
32 inline int32_t handle() const { return mHandle; } function in class:android::BpBinder
  /frameworks/base/services/jni/
com_android_server_InputApplicationHandle.cpp 94 NativeInputApplicationHandle* handle; local
96 handle = reinterpret_cast<NativeInputApplicationHandle*>(ptr);
99 handle = new NativeInputApplicationHandle(objWeak);
100 handle->incStrong(inputApplicationHandleObj);
102 reinterpret_cast<int>(handle));
104 return handle;
117 NativeInputApplicationHandle* handle = reinterpret_cast<NativeInputApplicationHandle*>(ptr); local
118 handle->decStrong(obj);
  /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...]
  /frameworks/opt/emoji/
EmojiFactory.cpp 76 void *handle = dlopen(library_name, RTLD_LAZY | RTLD_LOCAL); local
77 if (handle == NULL) {
86 reinterpret_cast<EmojiFactory *(*)()>(dlsym(handle,
94 dlclose(handle);
101 dlclose(handle);
113 dlclose(handle);
120 g_handles->push(handle);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
nbd.h 55 char handle[8]; member in struct:nbd_request
71 char handle[8]; /* handle you got from request */ member in struct:nbd_reply
  /device/samsung/tuna/audio/
ril_interface.h 37 void *handle; member in struct:ril_handle
  /external/apache-harmony/auth/src/test/java/unix/org/apache/harmony/auth/module/
UnixLoginModuleTest.java 53 public void handle(Callback[] cbs) { method in class:UnixLoginModuleTest.TestCallbackHandler
  /external/bluetooth/bluez/tools/
hid2hci.c 305 struct usb_dev_handle *handle; local
319 handle = find_device(dev);
320 if (handle == NULL) {
321 fprintf(stderr, "error: unable to handle '%s'\n",
325 err = usb_switch(handle, mode);
  /external/bluetooth/glib/gmodule/
gmodule-win32.c 73 HINSTANCE handle; local
83 handle = LoadLibraryW (wfilename);
86 if (!handle)
89 return handle;
102 _g_module_close (gpointer handle,
105 if (handle != null_module_handle)
106 if (!FreeLibrary (handle))
113 typedef HANDLE (WINAPI *PFNCREATETOOLHELP32SNAPSHOT)(DWORD, DWORD);
116 typedef BOOL (WINAPI *PFNMODULE32FIRST)(HANDLE, MODULEENTRY32*);
119 typedef BOOL (WINAPI *PFNMODULE32NEXT)(HANDLE, MODULEENTRY32*)
    [all...]
  /external/bluetooth/hcidump/parser/
parser.c 63 uint16_t handle; member in struct:__anon2206
69 void set_proto(uint16_t handle, uint16_t psm, uint8_t channel, uint32_t proto)
80 if (proto_table[i].handle == handle && proto_table[i].psm == psm && proto_table[i].channel == channel) {
85 if (pos < 0 && !proto_table[i].handle && !proto_table[i].psm && !proto_table[i].channel)
92 proto_table[pos].handle = handle;
98 uint32_t get_proto(uint16_t handle, uint16_t psm, uint8_t channel)
106 if (proto_table[i].handle == handle && proto_table[i].psm == psm && proto_table[i].channel == channel
121 uint16_t handle; member in struct:__anon2207
    [all...]
  /external/chromium/base/
shared_memory_posix.cc 37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only)
38 : mapped_file_(handle.fd),
45 if (fstat(handle.fd, &st) == 0) {
52 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only,
54 : mapped_file_(handle.fd),
60 // We don't handle this case yet (note the ignored parameter); let's die if
70 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) {
71 return handle.fd >= 0;
80 void SharedMemory::CloseHandle(const SharedMemoryHandle& handle) {
81 DCHECK(handle.fd >= 0)
225 SharedMemoryHandle SharedMemory::handle() const { function in class:base::SharedMemory
    [all...]
  /external/chromium/base/synchronization/
condition_variable_win.cc 54 HANDLE handle; local
59 handle = waiting_event->handle();
60 DCHECK(handle);
65 WaitForSingleObject(handle, static_cast<DWORD>(max_time.InMilliseconds()));
76 std::stack<HANDLE> handles; // See FAQ-question-10.
83 handles.push(waiting_list_.PopBack()->handle());
96 HANDLE handle; local
232 HANDLE ConditionVariable::Event::handle() const { function in class:base::ConditionVariable::Event
    [all...]
  /external/chromium/chrome/browser/
gpu_process_host_ui_shim.cc 267 gfx::PluginWindowHandle handle = view->GetCompositingSurface(); local
274 gdk_xid_table_lookup(handle));
281 SetWindowPos(handle,
mach_broker_mac.cc 207 base::ProcessHandle handle = 0; local
211 handle = Source<RenderProcessHost>(source)->GetHandle();
214 handle =
219 handle = Details<ChildProcessInfo>(details)->handle();
225 InvalidatePid(handle);
  /external/chromium/chrome/browser/password_manager/
password_store_win.cc 62 typedef std::map<WebDataService::Handle,
72 WebDataService::Handle handle,
100 WebDataService::Handle handle = web_data_service_->GetIE7Login(info, this); local
101 pending_requests_.insert(PendingRequestMap::value_type(handle, request));
141 WebDataService::Handle handle,
145 PendingRequestMap::iterator i(pending_requests_.find(handle));
162 request->ForwardResult(GetLoginsRequest::TupleType(request->handle(),
    [all...]
  /external/chromium/net/disk_cache/
stress_cache.cc 61 base::ProcessHandle handle; local
62 if (!base::LaunchApp(cmdline, false, false, &handle)) {
68 if (!base::WaitForExitCode(handle, &exit_code)) {
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 50 base::ProcessHandle handle; local
51 if (!base::LaunchApp(cmdline, false, false, &handle)) {
58 if (!base::WaitForExitCode(handle, &exit_code)) {

Completed in 547 milliseconds

1 2 3 4 56 7 8 91011>>