HomeSort by relevance Sort by last modified time
    Searched defs:buffer_t (Results 1 - 11 of 11) sorted by null

  /system/bt/osi/include/
buffer.h 24 typedef struct buffer_t buffer_t; typedef in typeref:struct:buffer_t
29 buffer_t *buffer_new(size_t size);
36 buffer_t *buffer_new_ref(const buffer_t *buf);
42 buffer_t *buffer_new_slice(const buffer_t *buf, size_t slice_size);
45 void buffer_free(buffer_t *buf);
52 void *buffer_ptr(const buffer_t *buf);
56 size_t buffer_length(const buffer_t *buf)
    [all...]
  /system/bt/stack/include/
l2cap_client.h 25 typedef struct buffer_t buffer_t; typedef in typeref:struct:buffer_t
31 void (*read_ready)(l2cap_client_t *client, buffer_t *packet, void *context);
39 buffer_t *l2cap_buffer_new(size_t size);
74 bool l2cap_client_write(l2cap_client_t *client, buffer_t *packet);
  /device/huawei/angler/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg_ionbuf.h 49 } buffer_t; typedef in typeref:struct:__anon3653
63 void* buffer_allocate(buffer_t *p_buffer, int cached);
77 int buffer_deallocate(buffer_t *p_buffer);
91 int buffer_invalidate(buffer_t *p_buffer);
  /device/lge/bullhead/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg_ionbuf.h 49 } buffer_t; typedef in typeref:struct:__anon4564
63 void* buffer_allocate(buffer_t *p_buffer, int cached);
77 int buffer_deallocate(buffer_t *p_buffer);
91 int buffer_invalidate(buffer_t *p_buffer);
  /device/moto/shamu/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg_ionbuf.h 50 } buffer_t; typedef in typeref:struct:__anon5702
64 void* buffer_allocate(buffer_t *p_buffer, int cached);
78 int buffer_deallocate(buffer_t *p_buffer);
92 int buffer_invalidate(buffer_t *p_buffer);
  /hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/inc/
mm_jpeg_ionbuf.h 46 } buffer_t; typedef in typeref:struct:__anon32221
60 void* buffer_allocate(buffer_t *p_buffer, int cached);
74 int buffer_deallocate(buffer_t *p_buffer);
88 int buffer_invalidate(buffer_t *p_buffer);
  /frameworks/native/opengl/libagl/
BufferObjectManager.h 42 struct buffer_t { struct in namespace:android::gl
62 gl::buffer_t const* bind(GLuint buffer);
63 int allocateStore(gl::buffer_t* bo, GLsizeiptr size, GLenum usage);
69 KeyedVector<GLuint, gl::buffer_t*> mBuffers;
  /system/bt/osi/src/
buffer.c 29 struct buffer_t { struct
30 buffer_t *root;
36 buffer_t *buffer_new(size_t size) {
39 buffer_t *buffer = osi_calloc(sizeof(buffer_t) + size);
48 buffer_t *buffer_new_ref(const buffer_t *buf) {
53 buffer_t *buffer_new_slice(const buffer_t *buf, size_t slice_size) {
58 buffer_t *ret = osi_calloc(sizeof(buffer_t))
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
compat.hpp 210 typedef vector_ref<const unsigned char> buffer_t; typedef in class:clover::compat::istream
217 istream(const buffer_t &buf) : buf(buf), offset(0) {}
229 const buffer_t &buf;
235 typedef vector<unsigned char> buffer_t; typedef in class:clover::compat::ostream
237 ostream(buffer_t &buf) : buf(buf), offset(buf.size()) {}
247 buffer_t &buf;
  /external/valgrind/drd/tests/
circular_buffer.c 49 } buffer_t; typedef in typeref:struct:__anon25858
90 static void buffer_init(buffer_t * b)
102 static void buffer_recv(buffer_t* b, data_t* d)
125 static void buffer_send(buffer_t* b, data_t* d)
148 static void buffer_destroy(buffer_t* b)
157 static buffer_t b;
  /external/curl/packages/OS400/
os400sys.c 79 } buffer_t; typedef in typeref:struct:__anon9493
88 static buffer_t * locbufs;
98 buffer_t * p = (buffer_t *) private;
123 locbufs = (buffer_t *) NULL;
131 get_buffer(buffer_t * buf, long size)
182 buffer_t * bufs;
188 bufs = (buffer_t *) pthread_getspecific(thdkey);

Completed in 305 milliseconds