HomeSort by relevance Sort by last modified time
    Searched refs:opaque (Results 26 - 50 of 736) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/qemu/hw/
irq.h 7 typedef void (*qemu_irq_handler)(void *opaque, int n, int level);
8 typedef void SetIRQFunc(void *opaque, int irq_num, int level);
29 qemu_irq *qemu_allocate_irqs(qemu_irq_handler handler, void *opaque, int n);
pci_host.h 42 static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val)
44 PCIHostState *s = opaque;
52 static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val)
54 PCIHostState *s = opaque;
64 static void pci_host_data_writel(void* opaque, pci_addr_t addr, uint32_t val)
66 PCIHostState *s = opaque;
76 static uint32_t pci_host_data_readb(void* opaque, pci_addr_t addr)
78 PCIHostState *s = opaque;
89 static uint32_t pci_host_data_readw(void* opaque, pci_addr_t addr)
91 PCIHostState *s = opaque;
    [all...]
arm_pic.c 25 static void arm_pic_cpu_handler(void *opaque, int irq, int level)
27 CPUState *env = (CPUState *)opaque;
mips_pic.c 17 static void mips_cpu_irq_handler(void *opaque, int irq, int level)
19 CPUState *env = (CPUState *)opaque;
fw_cfg.h 27 typedef void (*FWCfgCallback)(void *opaque, uint8_t *data);
29 int fw_cfg_add_bytes(void *opaque, uint16_t key, uint8_t *data, uint16_t len);
30 int fw_cfg_add_i16(void *opaque, uint16_t key, uint16_t value);
31 int fw_cfg_add_i32(void *opaque, uint16_t key, uint32_t value);
32 int fw_cfg_add_i64(void *opaque, uint16_t key, uint64_t value);
33 int fw_cfg_add_callback(void *opaque, uint16_t key, FWCfgCallback callback,
  /external/chromium_org/cc/layers/
content_layer_client.h 23 gfx::RectF* opaque) = 0;
  /external/chromium_org/cc/resources/
layer_painter.h 24 gfx::RectF* opaque) = 0;
  /external/chromium_org/third_party/zlib/contrib/minizip/
ioapi.h 127 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
128 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
129 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
130 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
131 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
133 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
134 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
147 voidpf opaque; member in struct:zlib_filefunc_def_s
150 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
151 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin))
163 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
  /external/qemu/android/
sensors-port.h 31 * opaque - An opaque pointer that is passed back to the callback routines.
38 extern AndroidSensorsPort* sensors_port_create(void* opaque);
hw-kmsg.c 25 kernel_log_can_read( void* opaque )
31 kernel_log_read( void* opaque, const uint8_t* from, int len )
33 KernelLog* k = opaque;
  /external/qemu/distrib/zlib-1.2.3/
zutil.c 216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void zcfree (voidpf opaque, voidpf ptr)
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size)
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void zcfree (voidpf opaque, voidpf ptr)
283 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]
  /external/qemu/
ioport.h 36 typedef void (IOPortWriteFunc)(void *opaque, uint32_t address, uint32_t data);
37 typedef uint32_t (IOPortReadFunc)(void *opaque, uint32_t address);
40 IOPortReadFunc *func, void *opaque);
42 IOPortWriteFunc *func, void *opaque);
migration.h 47 void *opaque; member in struct:FdMigrationState
82 void migrate_fd_put_notify(void *opaque);
84 ssize_t migrate_fd_put_buffer(void *opaque, const void *data, size_t size);
88 void migrate_fd_put_ready(void *opaque);
96 void migrate_fd_wait_for_unfreeze(void *opaque);
98 int migrate_fd_close(void *opaque);
109 int ram_save_live(QEMUFile *f, int stage, void *opaque);
110 int ram_load(QEMUFile *f, void *opaque, int version_id);
buffered_file.c 28 void *opaque; member in struct:QEMUFileBuffered
86 ret = s->put_buffer(s->opaque, s->buffer + offset,
109 static int buffered_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
111 QEMUFileBuffered *s = opaque;
133 ret = s->put_buffer(s->opaque, buf + offset, size - offset);
162 s->put_ready(s->opaque);
169 static int buffered_close(void *opaque)
171 QEMUFileBuffered *s = opaque;
182 ret = s->close(s->opaque);
192 static int buffered_rate_limit(void *opaque)
    [all...]
  /external/zlib/src/contrib/minizip/
ioapi.h 135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
155 voidpf opaque; member in struct:zlib_filefunc_def_s
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream));
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin))
171 voidpf opaque; member in struct:zlib_filefunc64_def_s
    [all...]
ioapi.c 34 return (*(pfilefunc->zfile_func64.zopen64_file)) (pfilefunc->zfile_func64.opaque,filename,mode);
37 return (*(pfilefunc->zopen32_file))(pfilefunc->zfile_func64.opaque,(const char*)filename,mode);
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
58 return (*(pfilefunc->zfile_func64.ztell64_file)) (pfilefunc->zfile_func64.opaque,filestream);
61 uLong tell_uLong = (*(pfilefunc->ztell32_file))(pfilefunc->zfile_func64.opaque,filestream);
80 p_filefunc64_32->zfile_func64.opaque = p_filefunc32->opaque;
87 static voidpf ZCALLBACK fopen_file_func OF((voidpf opaque, const char* filename, int mode));
88 static uLong ZCALLBACK fread_file_func OF((voidpf opaque, voidpf stream, void* buf, uLong size))
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES10RenderEngine.h 33 virtual void setupLayerBlending(bool premultipliedAlpha, bool opaque, int alpha);
  /external/chromium_org/ui/gfx/
canvas_paint_mac.h 22 // This constructor assumes the result is opaque.
24 CanvasSkiaPaint(NSRect dirtyRect, bool opaque);
44 void Init(bool opaque);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
spray.x 59 typedef opaque sprayarr<SPRAYMAX>;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.x 59 typedef opaque sprayarr<SPRAYMAX>;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
spray.x 59 typedef opaque sprayarr<SPRAYMAX>;
  /external/srtp/crypto/ae_xfm/
xfm.c 27 void *opaque,
37 if ((iv == NULL) && (opaque == NULL) && (opaque_len == NULL)) {
41 } else if ((iv == NULL) || (opaque == NULL) || (opaque_len == NULL)) {
74 /* encrypt the opaque data */
75 status = aes_cbc_nist_encrypt(&aes_ctx, opaque, opaque_len);
78 /* authenticate clear and opaque data */
88 status = hmac_compute(&hmac_ctx, opaque, *opaque_len, TAG_LEN, auth_tag);
101 void *opaque,
114 if ((iv == NULL) && (opaque == NULL) && (opaque_len == NULL)) {
118 } else if ((iv == NULL) || (opaque == NULL) || (opaque_len == NULL))
    [all...]
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip_internal.cc 37 void* ZipOpenFunc(void *opaque, const char* filename, int mode) {
82 void* FdOpenFileFunc(void* opaque, const char* filename, int mode) {
94 file = fdopen(*static_cast<int*>(opaque), mode_fopen);
101 // flush buffers and free |opaque| since we malloc'ed it in FillFdOpenFileFunc.
102 int CloseFileFunc(void* opaque, void* stream) {
104 free(opaque);
116 pzlib_filefunc_def->opaque = ptr_fd;
122 void* HandleOpenFileFunc(void* opaque, const char* filename, int mode) {
124 file_ret.hf = static_cast<HANDLE>(opaque);
138 // expect their opaque parameters refer to this struct
    [all...]
  /external/chromium_org/third_party/zlib/google/
zip_internal.cc 37 void* ZipOpenFunc(void *opaque, const char* filename, int mode) {
82 void* FdOpenFileFunc(void* opaque, const char* filename, int mode) {
94 file = fdopen(*static_cast<int*>(opaque), mode_fopen);
101 // flush buffers and free |opaque| since we malloc'ed it in FillFdOpenFileFunc.
102 int CloseFileFunc(void* opaque, void* stream) {
104 free(opaque);
116 pzlib_filefunc_def->opaque = ptr_fd;
122 void* HandleOpenFileFunc(void* opaque, const char* filename, int mode) {
124 file_ret.hf = static_cast<HANDLE>(opaque);
138 // expect their opaque parameters refer to this struct
    [all...]
  /external/qemu/audio/
mixeng.h 44 void st_rate_flow (void *opaque, struct st_sample *ibuf, struct st_sample *obuf,
46 void st_rate_flow_mix (void *opaque, struct st_sample *ibuf, struct st_sample *obuf,
48 void st_rate_stop (void *opaque);

Completed in 1178 milliseconds

12 3 4 5 6 7 8 91011>>