HomeSort by relevance Sort by last modified time
    Searched refs:hnd (Results 1 - 24 of 24) sorted by null

  /hardware/samsung_slsi/exynos5/gralloc/
mapper.cpp 42 private_handle_t* hnd = (private_handle_t*)handle; local
44 void* mappedAddress = mmap(0, hnd->size, PROT_READ|PROT_WRITE, MAP_SHARED,
45 hnd->fd, 0);
50 ALOGV("%s: base %p %d %d %d %d\n", __func__, mappedAddress, hnd->size,
51 hnd->width, hnd->height, hnd->stride);
52 hnd->base = mappedAddress;
58 private_handle_t* hnd = (private_handle_t*)handle; local
60 if (!hnd->base
106 private_handle_t* hnd = (private_handle_t*)handle; local
178 private_handle_t* hnd = (private_handle_t*)handle; local
    [all...]
gr.h 34 int grallocMap(gralloc_module_t const* module, private_handle_t *hnd);
35 int grallocUnmap(gralloc_module_t const* module, private_handle_t *hnd);
gralloc.cpp 132 unsigned int ion_flags, private_handle_t **hnd, int *stride)
180 *hnd = new private_handle_t(fd, size, usage, w, h, format, *stride,
188 private_handle_t **hnd, int *stride)
212 *hnd = new private_handle_t(fd, size, usage, w, h, format, *stride, h);
218 private_handle_t **hnd, int *stride)
261 ion_flags, hnd, stride);
282 *hnd = new private_handle_t(fd, luma_size, usage, w, h,
293 *hnd = new private_handle_t(fd, fd1, fd2, luma_size, usage, w, h,
296 *hnd = new private_handle_t(fd, fd1, luma_size, usage, w, h, format,
316 private_handle_t *hnd = NULL local
360 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local
    [all...]
framebuffer.cpp 79 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer); local
87 private_handle_t *hnd = private_handle_t::dynamicCast(buffer); local
91 entry.callback(entry.data, hnd);
  /hardware/libhardware/modules/gralloc/
mapper.cpp 50 private_handle_t* hnd = (private_handle_t*)handle; local
51 if (!(hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)) {
52 size_t size = hnd->size;
54 PROT_READ|PROT_WRITE, MAP_SHARED, hnd->fd, 0);
59 hnd->base = intptr_t(mappedAddress) + hnd->offset;
61 // hnd->fd, hnd->offset, hnd->size, mappedAddress);
63 *vaddr = (void*)hnd->base
70 private_handle_t* hnd = (private_handle_t*)handle; local
97 private_handle_t* hnd = (private_handle_t*)handle; local
    [all...]
gralloc.cpp 138 private_handle_t* hnd = new private_handle_t(dup(m->framebuffer->fd), size, local
150 hnd->base = vaddr;
151 hnd->offset = vaddr - intptr_t(m->framebuffer->base);
152 *pHandle = hnd;
183 private_handle_t* hnd = new private_handle_t(fd, size, 0); local
186 err = mapBuffer(module, hnd);
188 *pHandle = hnd;
253 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle); local
254 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
259 int index = (hnd->base - m->framebuffer->base) / bufferSize
    [all...]
gr.h 44 int terminateBuffer(gralloc_module_t const* module, private_handle_t* hnd);
45 int mapBuffer(gralloc_module_t const* module, private_handle_t* hnd);
gralloc_priv.h 99 const private_handle_t* hnd = (const private_handle_t*)h; local
102 hnd->magic != sMagic)
framebuffer.cpp 92 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(buffer); local
96 if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER) {
97 const size_t offset = hnd->base - m->framebuffer->base;
  /external/dbus/dbus/
dbus-file-win.c 40 * @param hnd the HANDLE to read from
47 _dbus_file_read (HANDLE hnd,
71 result = ReadFile (hnd, data, count, &bytes_read, NULL);
76 "Failed to read from 0x%x: %s", hnd, emsg);
111 HANDLE hnd; local
122 hnd = CreateFileA (filename_c, GENERIC_READ,
125 if (hnd == INVALID_HANDLE_VALUE)
134 _dbus_verbose ("file %s hnd %p opened\n", filename_c, hnd);
136 fsize = GetFileSize (hnd, &fsize_hi)
217 HANDLE hnd; local
368 HANDLE hnd; local
    [all...]
dbus-sysdeps-util-win.c 85 HANDLE hnd; local
94 hnd = CreateFileA (cfilename, GENERIC_WRITE,
98 if (hnd == INVALID_HANDLE_VALUE)
113 CloseHandle (hnd);
125 res = WriteFile (hnd, pidstr + total, bytes_to_write - total,
134 CloseHandle (hnd);
141 if (CloseHandle (hnd) == 0)
    [all...]
  /development/tools/emulator/opengl/system/OpenglSystemCommon/
gralloc_cb.h 73 static bool validate(cb_handle_t * hnd) {
74 return (hnd &&
75 hnd->version == sizeof(native_handle) &&
76 hnd->magic == BUFFER_HANDLE_MAGIC &&
77 hnd->numInts == CB_HANDLE_NUM_INTS(hnd->numFds));
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 119 status_t Loader::driver_t::set(void* hnd, int32_t api)
123 dso[0] = hnd;
126 dso[1] = hnd;
129 dso[2] = hnd;
181 driver_t* hnd = 0; local
187 hnd = new driver_t(dso);
192 hnd = new driver_t(dso);
194 hnd->set( load_driver("GLESv1_CM", tag, cnx, GLESv1_CM), GLESv1_CM );
195 hnd->set( load_driver("GLESv2", tag, cnx, GLESv2), GLESv2 );
200 LOG_FATAL_IF(!index && !hnd,
209 driver_t* hnd = (driver_t*)driver; local
    [all...]
Loader.h 51 status_t set(void* hnd, int32_t api);
  /tools/motodev/src/plugins/android.linux.x86/src/com/motorola/studio/android/nativeos/
NativeUI.java 86 long hnd = 0; local
87 hnd = composite.embeddedHandle;
88 return GtkBridge.embedNativeWindow(hnd, windowHandle);
  /tools/motodev/src/plugins/android.linux.x86_64/src/com/motorola/studio/android/nativeos/
NativeUI.java 84 long hnd = 0; local
85 hnd = composite.embeddedHandle;
86 return GtkBridge.embedNativeWindow(hnd, windowHandle);
  /hardware/samsung_slsi/exynos5/include/
gralloc_priv.h 143 const private_handle_t* hnd = (const private_handle_t*)h; local
145 hnd->numInts + hnd->numFds != sNumInts + sNumFds ||
146 hnd->magic != sMagic)
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/controls/maindisplay/
MainDisplayComposite.java 155 long hnd = androidInstance.getWindowHandle(); local
156 if (hnd > 0)
158 NativeUIUtils.showWindow(hnd);
159 NativeUIUtils.restoreWindow(hnd);
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl4Test.java 301 String srvName, Map<String, ?> prop, CallbackHandler hnd) throws SaslException {
314 hnd.handle(cb);
371 String srvName, Map<String, ?> prop, CallbackHandler hnd) throws SaslException {
Sasl3Test.java 304 String protocol, String srvName, Map<String, ?> prop, CallbackHandler hnd)
318 hnd.handle(cb);
375 String protocol, String srvName, Map<String, ?> prop, CallbackHandler hnd)
  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/ui/controls/skin/
SkinComposite.java 452 long hnd = androidInstance.getWindowHandle(); local
453 if (hnd > 0)
455 NativeUIUtils.showWindow(hnd);
456 NativeUIUtils.restoreWindow(hnd);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/nas/
SDL_nasaudio.c 297 event_handler(AuServer* aud, AuEvent* ev, AuEventHandlerRec* hnd)
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ndis.c 2322 DWORD i, hnd, len; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 2423 DWORD i, hnd, len; local
    [all...]

Completed in 438 milliseconds