HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 726 - 750 of 6298) sorted by null

<<21222324252627282930>>

  /external/swiftshader/src/OpenGL/libGLESv2/
ResourceManager.cpp 239 Buffer *ResourceManager::getBuffer(unsigned int handle)
241 return mBufferNameSpace.find(handle);
244 Shader *ResourceManager::getShader(unsigned int handle)
246 return mShaderNameSpace.find(handle);
249 Texture *ResourceManager::getTexture(unsigned int handle)
251 return mTextureNameSpace.find(handle);
254 Program *ResourceManager::getProgram(unsigned int handle)
256 return mProgramNameSpace.find(handle);
259 Renderbuffer *ResourceManager::getRenderbuffer(unsigned int handle)
261 return mRenderbufferNameSpace.find(handle);
    [all...]
  /frameworks/native/libs/ui/
GraphicBufferMapper.cpp 88 void GraphicBufferMapper::getTransportSize(buffer_handle_t handle,
91 mMapper->getTransportSize(handle, outTransportNumFds, outTransportNumInts);
94 status_t GraphicBufferMapper::freeBuffer(buffer_handle_t handle)
98 mMapper->freeBuffer(handle);
112 status_t GraphicBufferMapper::lock(buffer_handle_t handle, uint32_t usage,
115 return lockAsync(handle, usage, bounds, vaddr, -1);
118 status_t GraphicBufferMapper::lockYCbCr(buffer_handle_t handle, uint32_t usage,
121 return lockAsyncYCbCr(handle, usage, bounds, ycbcr, -1);
124 status_t GraphicBufferMapper::unlock(buffer_handle_t handle)
127 status_t error = unlockAsync(handle, &fenceFd)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
timer.h 126 /** timer handle type */
136 /** timer query handle */
138 /** timer handle */
142 int snd_timer_query_open(snd_timer_query_t **handle, const char *name, int mode);
143 int snd_timer_query_open_lconf(snd_timer_query_t **handle, const char *name, int mode, snd_config_t *lconf);
144 int snd_timer_query_close(snd_timer_query_t *handle);
145 int snd_timer_query_next_device(snd_timer_query_t *handle, snd_timer_id_t *tid);
146 int snd_timer_query_info(snd_timer_query_t *handle, snd_timer_ginfo_t *info);
147 int snd_timer_query_params(snd_timer_query_t *handle, snd_timer_gparams_t *params);
148 int snd_timer_query_status(snd_timer_query_t *handle, snd_timer_gstatus_t *status)
    [all...]
  /bionic/libc/kernel/uapi/drm/
armada_drm.h 29 __u32 handle; member in struct:drm_armada_gem_create
34 __u32 handle; member in struct:drm_armada_gem_mmap
43 __u32 handle; member in struct:drm_armada_gem_pwrite
  /external/adhd/cras/src/tests/
hfp_slc_unittest.cc 17 static struct hfp_slc_handle *handle; variable in typeref:struct:hfp_slc_handle
29 int slc_initialized_cb(struct hfp_slc_handle *handle);
30 int slc_disconnected_cb(struct hfp_slc_handle *handle);
45 handle = hfp_slc_create(0, 0, device, slc_initialized_cb,
48 ASSERT_EQ(handle, slc_cb_data);
50 hfp_slc_destroy(handle);
61 handle = hfp_slc_create(sock[0], 0, device, slc_initialized_cb,
108 hfp_slc_destroy(handle);
116 handle = hfp_slc_create(sock[0], 0, device, slc_initialized_cb,
127 hfp_slc_destroy(handle);
    [all...]
  /external/autotest/client/site_tests/platform_DebugDaemonPing/
platform_DebugDaemonPing.py 18 handle = self.iface.PingStart(1, "127.0.0.1", {}, signature="hsa{sv}")
19 self.iface.PingStop(handle)
22 self.iface.PingStop(handle)
  /external/autotest/client/site_tests/platform_DebugDaemonTracePath/
platform_DebugDaemonTracePath.py 18 handle = self.iface.TracePathStart(
20 self.iface.TracePathStop(handle)
23 self.iface.TracePathStop(handle)
  /external/capstone/arch/AArch64/
AArch64Module.c 36 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value)
39 handle->big_endian = (((cs_mode)value & CS_MODE_BIG_ENDIAN) != 0);
45 static void destroy(cs_struct *handle)
  /external/capstone/arch/SystemZ/
SystemZModule.c 33 static cs_err option(cs_struct *handle, cs_opt_type type, size_t value)
36 handle->syntax = (int) value;
41 static void destroy(cs_struct *handle)
  /external/capstone/cstool/
cstool_mips.c 11 void print_insn_detail_mips(csh handle, cs_insn *ins)
30 printf("\t\toperands[%u].type: REG = %s\n", i, cs_reg_name(handle, op->reg));
39 i, cs_reg_name(handle, op->mem.base));
  /external/compiler-rt/test/asan/TestCases/Posix/
global-registration.c 40 void *handle = dlopen(libpath, RTLD_NOW); local
41 if (!handle) {
46 char *buffer = (char *)dlsym(handle, "buffer3");
  /external/iproute2/tc/
f_fw.c 39 " NOTE: handle is represented as HANDLE[/FWMASK].\n");
43 static int fw_parse_opt(struct filter_util *qu, char *handle, int argc, char **argv, struct nlmsghdr *n)
50 if (handle) {
53 if ((slash = strchr(handle, '/')) != NULL)
55 if (get_u32(&t->tcm_handle, handle, 0)) {
56 fprintf(stderr, "Illegal \"handle\"\n");
61 fprintf(stderr, "Illegal \"handle\" mask\n");
80 unsigned int handle; local
83 if (get_tc_classid(&handle, *argv))
    [all...]
  /external/kernel-headers/original/uapi/drm/
armada_drm.h 27 __u32 handle; member in struct:drm_armada_gem_create
34 __u32 handle; member in struct:drm_armada_gem_mmap
45 __u32 handle; member in struct:drm_armada_gem_pwrite
  /external/libchrome/base/synchronization/
lock_unittest.cc 55 PlatformThreadHandle handle; local
57 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
85 PlatformThread::Join(handle);
121 PlatformThreadHandle handle; local
123 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
125 PlatformThread::Join(handle);
135 PlatformThreadHandle handle; local
137 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
139 PlatformThread::Join(handle);
180 PlatformThreadHandle handle; local
    [all...]
  /external/libdrm/rockchip/
rockchip_drmif.h 43 * @handle: a gem handle to gem object created.
47 * @name: a gem global handle from flink request.
51 uint32_t handle; member in struct:rockchip_bo
69 int rockchip_bo_get_info(struct rockchip_device *dev, uint32_t handle,
77 uint32_t handle, uint32_t flags, uint32_t size);
  /external/libmojo/mojo/public/cpp/system/
buffer.cc 13 SharedBufferHandle handle; local
14 MojoCreateSharedBuffer(&options, num_bytes, handle.mutable_value());
15 return MakeScopedHandle(handle);
platform_handle.h 24 #include "mojo/public/cpp/system/handle.h"
53 // Wraps a PlatformFile as a Mojo handle. Takes ownership of the file object.
57 // Unwraps a PlatformFile from a Mojo handle.
59 MojoResult UnwrapPlatformFile(ScopedHandle handle, base::PlatformFile* file);
61 // Wraps a base::SharedMemoryHandle as a Mojo handle. Takes ownership of the
71 // Unwraps a base::SharedMemoryHandle from a Mojo handle. The caller assumes
74 UnwrapSharedMemoryHandle(ScopedSharedBufferHandle handle,
80 // Wraps a mach_port_t as a Mojo handle. This takes a reference to the
84 // Unwraps a mach_port_t from a Mojo handle. The caller gets ownership of the
86 MOJO_CPP_SYSTEM_EXPORT MojoResult UnwrapMachPort(ScopedHandle handle,
    [all...]
  /external/libxml2/win32/wince/
wincecompat.h 34 int read(int handle, char *buffer, unsigned int len);
35 int write(int handle, const char *buffer, unsigned int len);
37 int close(int handle);
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_context.h 106 void cso_set_fragment_shader_handle(struct cso_context *ctx, void *handle);
107 void cso_delete_fragment_shader(struct cso_context *ctx, void *handle );
110 void cso_set_vertex_shader_handle(struct cso_context *ctx, void *handle);
111 void cso_delete_vertex_shader(struct cso_context *ctx, void *handle );
114 void cso_set_geometry_shader_handle(struct cso_context *ctx, void *handle);
115 void cso_delete_geometry_shader(struct cso_context *ctx, void *handle);
118 void cso_set_tessctrl_shader_handle(struct cso_context *ctx, void *handle);
119 void cso_delete_tessctrl_shader(struct cso_context *ctx, void *handle);
122 void cso_set_tesseval_shader_handle(struct cso_context *ctx, void *handle);
123 void cso_delete_tesseval_shader(struct cso_context *ctx, void *handle);
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
quad-tex.c 44 void *handle; local
53 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
54 info.ctx->bind_vertex_elements_state(info.ctx, handle);
71 void *handle; local
82 handle = graw_parse_vertex_shader(info.ctx, text);
83 info.ctx->bind_vs_state(info.ctx, handle);
88 void *handle; local
100 handle = graw_parse_fragment_shader(info.ctx, text);
101 info.ctx->bind_fs_state(info.ctx, handle);
190 void *handle; local
    [all...]
tri-large.c 46 void *handle; local
55 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
56 info.ctx->bind_vertex_elements_state(info.ctx, handle);
74 void *handle; local
85 handle = graw_parse_vertex_shader(info.ctx, text);
86 info.ctx->bind_vs_state(info.ctx, handle);
92 void *handle; local
100 handle = graw_parse_fragment_shader(info.ctx, text);
101 info.ctx->bind_fs_state(info.ctx, handle);
128 void *handle; local
    [all...]
tri.c 43 void *handle; local
52 handle = info.ctx->create_vertex_elements_state(info.ctx, 2, ve);
53 info.ctx->bind_vertex_elements_state(info.ctx, handle);
71 void *handle; local
82 handle = graw_parse_vertex_shader(info.ctx, text);
83 info.ctx->bind_vs_state(info.ctx, handle);
89 void *handle; local
97 handle = graw_parse_fragment_shader(info.ctx, text);
98 info.ctx->bind_fs_state(info.ctx, handle);
125 void *handle; local
    [all...]
  /external/selinux/libsemanage/src/
boolean_internal.h 9 #include "handle.h"
27 extern int bool_file_dbase_init(semanage_handle_t * handle,
34 extern int bool_policydb_dbase_init(semanage_handle_t * handle,
39 extern int bool_activedb_dbase_init(semanage_handle_t * handle,
booleans_policydb.c 32 #include <semanage/handle.h>
53 int bool_policydb_dbase_init(semanage_handle_t * handle,
57 if (dbase_policydb_init(handle,
ibendport_internal.h 8 #include "handle.h"
29 extern int ibendport_file_dbase_init(semanage_handle_t *handle,
36 extern int ibendport_policydb_dbase_init(semanage_handle_t *handle,
41 extern int hidden semanage_ibendport_validate_local(semanage_handle_t *handle);

Completed in 389 milliseconds

<<21222324252627282930>>