HomeSort by relevance Sort by last modified time
    Searched full:opaque (Results 1 - 25 of 961) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/zlib/contrib/minizip/
ioapi.c 33 voidpf opaque,
38 voidpf opaque,
44 voidpf opaque,
50 voidpf opaque,
54 voidpf opaque,
60 voidpf opaque,
64 voidpf opaque,
68 voidpf ZCALLBACK fopen_file_func (opaque, filename, mode)
69 voidpf opaque;
90 uLong ZCALLBACK fread_file_func (opaque, stream, buf, size
    [all...]
ioapi.h 38 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode));
39 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size));
40 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size));
41 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
42 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
43 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
44 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
55 voidpf opaque; member in struct:zlib_filefunc_def_s
62 #define ZREAD(filefunc,filestream,buf,size) ((*((filefunc).zread_file))((filefunc).opaque,filestream,buf,size))
63 #define ZWRITE(filefunc,filestream,buf,size) ((*((filefunc).zwrite_file))((filefunc).opaque,filestream,buf,size)
    [all...]
iowin32.c 25 voidpf opaque,
30 voidpf opaque,
36 voidpf opaque,
42 voidpf opaque,
46 voidpf opaque,
52 voidpf opaque,
56 voidpf opaque,
65 voidpf ZCALLBACK win32_open_file_func (opaque, filename, mode)
66 voidpf opaque;
117 uLong ZCALLBACK win32_read_file_func (opaque, stream, buf, size
    [all...]
  /external/qemu/
buffered_file.h 19 typedef ssize_t (BufferedPutFunc)(void *opaque, const void *data, size_t size);
20 typedef void (BufferedPutReadyFunc)(void *opaque);
21 typedef void (BufferedWaitForUnfreezeFunc)(void *opaque);
22 typedef int (BufferedCloseFunc)(void *opaque);
24 QEMUFile *qemu_fopen_ops_buffered(void *opaque, size_t xfer_limit,
balloon.h 19 typedef ram_addr_t (QEMUBalloonEvent)(void *opaque, ram_addr_t target);
21 void qemu_add_balloon_handler(QEMUBalloonEvent *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);
buffered_file.c 29 void *opaque; member in struct:QEMUFileBuffered
87 ret = s->put_buffer(s->opaque, s->buffer + offset,
110 static int buffered_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
112 QEMUFileBuffered *s = opaque;
134 ret = s->put_buffer(s->opaque, buf + offset, size - offset);
162 static int buffered_close(void *opaque)
164 QEMUFileBuffered *s = opaque;
175 ret = s->close(s->opaque);
185 static int buffered_rate_limit(void *opaque)
187 QEMUFileBuffered *s = opaque;
    [all...]
dma.h 37 BlockDriverCompletionFunc *cb, void *opaque);
40 BlockDriverCompletionFunc *cb, void *opaque);
dma-helpers.c 52 static void dma_bdrv_cb(void *opaque, int ret);
54 static void reschedule_dma(void *opaque)
56 DMAAIOCB *dbs = (DMAAIOCB *)opaque;
60 dma_bdrv_cb(opaque, 0);
63 static void continue_after_map_failure(void *opaque)
65 DMAAIOCB *dbs = (DMAAIOCB *)opaque;
82 static void dma_bdrv_cb(void *opaque, int ret)
84 DMAAIOCB *dbs = (DMAAIOCB *)opaque;
94 dbs->common.cb(dbs->common.opaque, ret);
149 BlockDriverCompletionFunc *cb, void *opaque,
    [all...]
cpu-common.h 22 typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value);
23 typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr);
46 void *opaque);
66 void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque));
qemu-char.h 47 typedef void IOEventHandler(void *opaque, int event);
61 void *opaque; member in struct:CharDriverState
78 void *opaque);
95 void *opaque);
99 void *opaque);
  /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);
isa.h 8 IOPortReadFunc *func, void *opaque);
10 IOPortWriteFunc *func, void *opaque);
25 void *opaque);
goldfish_switch.c 33 uint32_t (*writefn)(void *opaque, uint32_t state);
39 static void goldfish_switch_save(QEMUFile* f, void* opaque)
41 struct switch_state* s = opaque;
48 static int goldfish_switch_load(QEMUFile* f, void* opaque, int version_id)
50 struct switch_state* s = opaque;
62 static uint32_t goldfish_switch_read(void *opaque, target_phys_addr_t offset)
64 struct switch_state *s = (struct switch_state *)opaque;
88 static void goldfish_switch_write(void *opaque, target_phys_addr_t offset, uint32_t value)
90 struct switch_state *s = (struct switch_state *)opaque;
135 void goldfish_switch_set_state(void *opaque, uint32_t state
    [all...]
pci_host.h 43 static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val)
45 PCIHostState *s = opaque;
53 static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val)
55 PCIHostState *s = opaque;
65 static void pci_host_data_writel(void* opaque, pci_addr_t addr, uint32_t val)
67 PCIHostState *s = opaque;
77 static uint32_t pci_host_data_readb(void* opaque, pci_addr_t addr)
79 PCIHostState *s = opaque;
90 static uint32_t pci_host_data_readw(void* opaque, pci_addr_t addr)
92 PCIHostState *s = opaque;
    [all...]
scsi-disk.h 12 typedef void (*scsi_completionfn)(void *opaque, int reason, uint32_t tag,
28 scsi_completionfn completion, void *opaque);
30 scsi_completionfn completion, void *opaque);
devices.h 13 uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len);
20 uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len);
21 void tsc2005_set_transform(void *opaque, MouseTransformInfo *info);
28 void s1d13745_write(void *opaque, int dc, uint16_t value);
29 void s1d13745_write_block(void *opaque, int dc,
31 uint16_t s1d13745_read(void *opaque, int dc);
goldfish_timer.c 37 static void goldfish_timer_save(QEMUFile* f, void* opaque)
39 struct timer_state* s = opaque;
50 static int goldfish_timer_load(QEMUFile* f, void* opaque, int version_id)
52 struct timer_state* s = opaque;
74 static uint32_t goldfish_timer_read(void *opaque, target_phys_addr_t offset)
76 struct timer_state *s = (struct timer_state *)opaque;
89 static void goldfish_timer_write(void *opaque, target_phys_addr_t offset, uint32_t value)
91 struct timer_state *s = (struct timer_state *)opaque;
121 static void goldfish_timer_tick(void *opaque)
123 struct timer_state *s = (struct timer_state *)opaque;
    [all...]
hw.h 15 typedef int (QEMUFilePutBufferFunc)(void *opaque, const uint8_t *buf,
22 typedef int (QEMUFileGetBufferFunc)(void *opaque, uint8_t *buf,
26 typedef int (QEMUFileCloseFunc)(void *opaque);
31 typedef int (QEMUFileRateLimit)(void *opaque);
37 typedef size_t (QEMUFileSetRateLimit)(void *opaque, size_t new_rate);
39 QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
233 typedef void SaveStateHandler(QEMUFile *f, void *opaque);
234 typedef int SaveLiveStateHandler(QEMUFile *f, int stage, void *opaque);
235 typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id);
242 void *opaque);
    [all...]
irq.c 29 void *opaque; member in struct:IRQState
38 irq->handler(irq->opaque, irq->n, level);
41 qemu_irq *qemu_allocate_irqs(qemu_irq_handler handler, void *opaque, int n)
51 p->opaque = opaque;
65 static void qemu_notirq(void *opaque, int line, int level)
67 struct IRQState *irq = opaque;
69 irq->handler(irq->opaque, irq->n, !level);
goldfish_interrupt.c 45 static void goldfish_int_save(QEMUFile* f, void* opaque)
47 struct goldfish_int_state* s = opaque;
52 static int goldfish_int_load(QEMUFile* f, void* opaque, int version_id)
54 struct goldfish_int_state* s = opaque;
73 static void goldfish_int_set_irq(void *opaque, int irq, int level)
75 struct goldfish_int_state *s = (struct goldfish_int_state *)opaque;
95 static uint32_t goldfish_int_read(void *opaque, target_phys_addr_t offset)
97 struct goldfish_int_state *s = (struct goldfish_int_state *)opaque;
117 static void goldfish_int_write(void *opaque, target_phys_addr_t offset, uint32_t value)
119 struct goldfish_int_state *s = (struct goldfish_int_state *)opaque;
    [all...]
  /dalvik/libcore/archive/src/main/native/
zipalloc.c 27 void *zalloc PROTOTYPE ((void *opaque, U_32 items, U_32 size));
28 void zfree PROTOTYPE ((void *opaque, void *address));
38 zalloc (void *opaque, U_32 items, U_32 size)
40 PORT_ACCESS_FROM_PORT (((HyPortLibrary *) opaque));
53 zfree (void *opaque, void *address)
55 PORT_ACCESS_FROM_PORT ((HyPortLibrary *) opaque);
  /frameworks/base/awt/java/awt/
Transparency.java 32 * The Constant OPAQUE represents completely opaque data, all pixels have an
35 public static final int OPAQUE = 1;
39 * opaque, with an alpha value of 1.0, or completely transparent, with an
53 * @return the transparency mode: OPAQUE, BITMASK or TRANSLUCENT.
  /external/qemu/audio/
wavcapture.c 25 static void wav_notify (void *opaque, audcnotification_e cmd)
27 (void) opaque;
31 static void wav_destroy (void *opaque)
33 WAVState *wav = opaque;
54 static void wav_capture (void *opaque, void *buf, int size)
56 WAVState *wav = opaque;
62 static void wav_capture_destroy (void *opaque)
64 WAVState *wav = opaque;
69 static void wav_capture_info (void *opaque)
71 WAVState *wav = opaque;
    [all...]
  /packages/apps/IM/libwbxml/include/
imps_encoder.h 43 * Send OPAQUE data to the encoder. Should only be used for ContentData.
45 * when the ContentType is text (e.g. text/plain) or by opaque() if the
47 * WBXML Integer and DateTime are automatically converted to opaque data
48 * in characters() so there's no need for the application to use opaque()
51 EncoderError opaque(const char *chars, int len);

Completed in 61 milliseconds

1 2 3 4 5 6 7 8 91011>>