HomeSort by relevance Sort by last modified time
    Searched full:opaque (Results 76 - 100 of 1726) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/block/
raw-posix-aio.h 32 BlockDriverCompletionFunc *cb, void *opaque, int type);
35 BlockDriverCompletionFunc *cb, void *opaque);
41 BlockDriverCompletionFunc *cb, void *opaque, int type);
  /external/qemu/
block.h 110 typedef void BlockDriverCompletionFunc(void *opaque, int ret);
115 BlockDriverCompletionFunc *cb, void *opaque);
118 BlockDriverCompletionFunc *cb, void *opaque);
120 BlockDriverCompletionFunc *cb, void *opaque);
129 void *opaque; member in struct:BlockRequest
142 BlockDriverCompletionFunc *cb, void *opaque);
184 void (*change_cb)(void *opaque), void *opaque);
188 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs),
189 void *opaque);
    [all...]
shaper.h 21 typedef void (*NetShaperSendFunc)( void* data, size_t size, void* opaque);
30 void netshaper_send_aux( NetShaper shaper, void* data, size_t size, void* opaque );
42 void netdelay_send_aux( NetDelay delay, const void* data, size_t size, void* opaque );
cpu-common.h 28 typedef void CPUWriteMemoryFunc(void *opaque, target_phys_addr_t addr, uint32_t value);
29 typedef uint32_t CPUReadMemoryFunc(void *opaque, target_phys_addr_t addr);
70 void *opaque);
90 void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque));
qlist.c 41 static void qlist_copy_elem(QObject *obj, void *opaque)
43 QList *dst = opaque;
80 void (*iter)(QObject *obj, void *opaque), void *opaque)
85 iter(entry->value, opaque);
qemu-char.c 137 static void qemu_chr_generic_open_bh(void *opaque)
139 CharDriverState *s = opaque;
227 void *opaque)
229 if (!opaque && !fd_can_read && !fd_read && !fd_event) {
236 s->handler_opaque = opaque;
289 MuxDriver *d = chr->opaque;
418 MuxDriver *d = chr->opaque;
429 static int mux_chr_can_read(void *opaque)
431 CharDriverState *chr = opaque;
432 MuxDriver *d = chr->opaque;
    [all...]
aio-android.c 39 void *opaque; member in struct:AioHandler
61 void *opaque)
94 node->opaque = opaque;
97 qemu_set_fd_handler2(fd, NULL, io_read, io_write, opaque);
118 ret |= node->io_flush(node->opaque);
133 if (node->io_process_queue(node->opaque)) {
173 if (node->io_flush && node->io_flush(node->opaque) == 0)
207 node->io_read(node->opaque);
212 node->io_write(node->opaque);
    [all...]
aio.c 38 void *opaque; member in struct:AioHandler
60 void *opaque)
93 node->opaque = opaque;
96 qemu_set_fd_handler2(fd, NULL, io_read, io_write, opaque);
117 ret |= node->io_flush(node->opaque);
132 if (node->io_process_queue(node->opaque)) {
173 if (node->io_flush && node->io_flush(node->opaque) == 0)
210 node->io_read(node->opaque);
215 node->io_write(node->opaque);
    [all...]
iohandler.c 40 void *opaque; member in struct:IOHandlerRecord
54 void *opaque)
77 ioh->opaque = opaque;
86 void *opaque)
88 return qemu_set_fd_handler2(fd, NULL, fd_read, fd_write, opaque);
100 ioh->fd_read_poll(ioh->opaque) != 0)) {
120 ioh->fd_read(ioh->opaque);
123 ioh->fd_write(ioh->opaque);
153 static void sigchld_bh_handler(void *opaque)
    [all...]
migration.c 204 void migrate_fd_put_notify(void *opaque)
206 FdMigrationState *s = opaque;
212 ssize_t migrate_fd_put_buffer(void *opaque, const void *data, size_t size)
214 FdMigrationState *s = opaque;
252 void migrate_fd_put_ready(void *opaque)
254 FdMigrationState *s = opaque;
312 void migrate_fd_wait_for_unfreeze(void *opaque)
314 FdMigrationState *s = opaque;
331 int migrate_fd_close(void *opaque)
333 FdMigrationState *s = opaque;
    [all...]
vl-android-ui.c 72 void* opaque; member in struct:IOHandlerRecord
78 static void ioh_callback(void* opaque, int fd, unsigned events)
80 IOHandlerRecord* ioh = opaque;
83 ioh->fd_read(ioh->opaque);
86 ioh->fd_write(ioh->opaque);
98 void *opaque)
132 ioh->opaque = opaque;
152 static void gui_update(void *opaque)
154 LoopTimer* timer = opaque;
    [all...]
savevm.c 124 static void qemu_announce_self_once(void *opaque)
131 QEMUTimer *timer = *(QEMUTimer **)opaque;
171 void *opaque; member in struct:QEMUFile
195 static int socket_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size)
197 QEMUFileSocket *s = opaque;
210 static int file_socket_close(void *opaque)
212 QEMUFileSocket *s = opaque;
217 static int stdio_put_buffer(void *opaque, const uint8_t *buf, int64_t pos, int size)
219 QEMUFileStdio *s = opaque;
223 static int stdio_get_buffer(void *opaque, uint8_t *buf, int64_t pos, int size
787 void *opaque; member in struct:SaveStateEntry
    [all...]
migration-exec.c 50 if (s->opaque) {
51 ret = qemu_fclose(s->opaque);
52 s->opaque = NULL;
91 s->opaque = qemu_popen(f, "w");
117 static void exec_accept_incoming_migration(void *opaque)
119 QEMUFile *f = opaque;
qemu-aio.h 21 typedef int (AioFlushHandler)(void *opaque);
26 typedef int (AioProcessQueue)(void *opaque);
57 void *opaque);
  /external/qemu/hw/
goldfish_tty.c 46 static void goldfish_tty_save(QEMUFile* f, void* opaque)
48 struct tty_state* s = opaque;
57 static int goldfish_tty_load(QEMUFile* f, void* opaque, int version_id)
59 struct tty_state* s = opaque;
73 static uint32_t goldfish_tty_read(void *opaque, target_phys_addr_t offset)
75 struct tty_state *s = (struct tty_state *)opaque;
88 static void goldfish_tty_write(void *opaque, target_phys_addr_t offset, uint32_t value)
90 struct tty_state *s = (struct tty_state *)opaque;
180 static int tty_can_receive(void *opaque)
182 struct tty_state *s = opaque;
    [all...]
ioapic.c 90 void ioapic_set_irq(void *opaque, int vector, int level)
92 IOAPICState *s = opaque;
123 static uint32_t ioapic_mem_readl(void *opaque, target_phys_addr_t addr)
125 IOAPICState *s = opaque;
159 static void ioapic_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
161 IOAPICState *s = opaque;
195 static void ioapic_save(QEMUFile *f, void *opaque)
197 IOAPICState *s = opaque;
207 static int ioapic_load(QEMUFile *f, void *opaque, int version_id)
209 IOAPICState *s = opaque;
    [all...]
dma.c 47 void *opaque; member in struct:dma_regs
81 static void write_page (void *opaque, uint32_t nport, uint32_t data)
83 struct dma_cont *d = opaque;
94 static void write_pageh (void *opaque, uint32_t nport, uint32_t data)
96 struct dma_cont *d = opaque;
107 static uint32_t read_page (void *opaque, uint32_t nport)
109 struct dma_cont *d = opaque;
120 static uint32_t read_pageh (void *opaque, uint32_t nport)
122 struct dma_cont *d = opaque;
151 static uint32_t read_chan (void *opaque, uint32_t nport
    [all...]
  /hardware/ti/omap4xxx/security/tee_client_api/
schannel6_protocol.h 168 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
176 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
177 uint32_t nDeviceContextID; /* an opaque Normal World identifier for the device context */
185 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
199 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
215 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
229 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
240 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
252 uint32_t nOperationID; /* an opaque Normal World identifier for the operation */
263 uint32_t nOperationID; /* an opaque Normal World identifier for the operation *
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
key_prot.h 203 #ifndef opaque
204 #define opaque char macro
213 extern "C" keystatus * key_set_1(opaque *, CLIENT *);
214 extern "C" keystatus * key_set_1_svc(opaque *, struct svc_req *);
230 extern keystatus * key_set_1(opaque *, CLIENT *);
231 extern keystatus * key_set_1_svc(opaque *, struct svc_req *);
265 extern "C" keystatus * key_set_2(opaque *, CLIENT *);
266 extern "C" keystatus * key_set_2_svc(opaque *, struct svc_req *);
288 extern "C" cryptkeyres * key_get_conv_2(opaque *, CLIENT *);
289 extern "C" cryptkeyres * key_get_conv_2_svc(opaque *, struct svc_req *)
    [all...]
  /external/qemu/telephony/
sysdeps_qemu.c 53 void* opaque; member in struct:SysTimerRec_
106 sys_timer_set( SysTimer timer, SysTime when, SysCallback _callback, void* opaque )
117 timer->opaque = NULL;
122 if ( timer->callback == callback && timer->opaque == opaque )
129 timer->timer = qemu_new_timer_ms( rt_clock, callback, opaque );
131 timer->opaque = opaque;
158 void* opaque; member in struct:SysChannelRec_
187 channel->opaque = NULL
    [all...]
  /bionic/libc/netbsd/isc/
ev_timers.c 149 evContext_p *ctx = opaqueCtx.opaque;
182 evContext_p *ctx = opaqueCtx.opaque;
223 opaqueID->opaque = id;
235 evContext_p *ctx = opaqueCtx.opaque;
236 evTimer *del = id.opaque;
271 evContext_p *ctx = opaqueCtx.opaque;
272 evTimer *timer = id.opaque;
298 evContext_p *ctx = opaqueCtx.opaque;
299 evTimer *timer = id.opaque;
357 evContext_p *ctx = opaqueCtx.opaque;
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
2007-10-21-LocalRegAllocAssert.ll 3 %struct.NSError = type opaque
4 %struct.NSManagedObjectContext = type opaque
5 %struct.NSPersistentStoreCoordinator = type opaque
6 %struct.NSString = type opaque
7 %struct.NSURL = type opaque
10 %struct.objc_selector = type opaque
  /external/qemu/android/
hw-control.c 55 _hw_control_qemud_client_recv( void* opaque,
60 hw_control_do_query(opaque, msg, msglen);
65 _hw_control_qemud_connect( void* opaque,
73 opaque,
148 android_hw_control_set( void* opaque, const AndroidHwControlFuncs* funcs )
150 hwstate->client = opaque;
looper-qemu.c 85 void* opaque)
88 timer->impl = qemu_new_timer_ms(host_clock, callback, opaque);
141 qloopio_new(int fd, LoopIoFunc callback, void* opaque, QLooper* qlooper)
147 io->user_opaque = opaque;
180 qloopio_handleRead(void* opaque)
182 QLoopIo* io = opaque;
187 qloopio_handleWrite(void* opaque)
189 QLoopIo* io = opaque;
278 void* opaque)
280 QLoopIo* io = qloopio_new(fd, callback, opaque, (QLooper*)looper)
    [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 408 milliseconds

1 2 34 5 6 7 8 91011>>