/external/qemu/ |
qemu-char-android.c | 128 static void qemu_chr_reset_bh(void *opaque) 130 CharDriverState *s = opaque; 205 void *opaque) 210 s->handler_opaque = opaque; 256 MuxDriver *d = chr->opaque; 391 MuxDriver *d = chr->opaque; 401 static int mux_chr_can_read(void *opaque) 403 CharDriverState *chr = opaque; 404 MuxDriver *d = chr->opaque; 414 static void mux_chr_read(void *opaque, const uint8_t *buf, int size [all...] |
qemu-char.c | 120 static void qemu_chr_reset_bh(void *opaque) 122 CharDriverState *s = opaque; 197 void *opaque) 202 s->handler_opaque = opaque; 248 MuxDriver *d = chr->opaque; 383 MuxDriver *d = chr->opaque; 393 static int mux_chr_can_read(void *opaque) 395 CharDriverState *chr = opaque; 396 MuxDriver *d = chr->opaque; 406 static void mux_chr_read(void *opaque, const uint8_t *buf, int size [all...] |
bt-vhci.c | 38 static void vhci_read(void *opaque) 40 struct bt_vhci_s *s = (struct bt_vhci_s *) opaque; 93 static void vhci_host_send(void *opaque, 96 struct bt_vhci_s *s = (struct bt_vhci_s *) opaque; 128 static void vhci_out_hci_packet_event(void *opaque, 131 vhci_host_send(opaque, HCI_EVENT_PKT, data, len); 134 static void vhci_out_hci_packet_acl(void *opaque, 137 vhci_host_send(opaque, HCI_ACLDATA_PKT, data, len); 164 s->info->opaque = s;
|
monitor.h | 21 void *opaque);
|
qemu-common.h | 88 typedef void QEMUBHFunc(void *opaque); 90 QEMUBH *qemu_bh_new(QEMUBHFunc *cb, void *opaque); 148 typedef void IOReadHandler(void *opaque, const uint8_t *buf, int size); 149 typedef int IOCanRWHandler(void *opaque); 150 typedef void IOHandler(void *opaque); 157 typedef int (*DMA_transfer_handler) (void *opaque, int nchan, int pos, int size); 159 /* A load of opaque types so that device init declarations don't have to 191 void cpu_save(QEMUFile *f, void *opaque); 192 int cpu_load(QEMUFile *f, void *opaque, int version_id);
|
qemu-aio.h | 21 typedef int (AioFlushHandler)(void *opaque); 44 void *opaque);
|
sysemu.h | 25 typedef void VMChangeStateHandler(void *opaque, int running, int reason); 28 void *opaque); 77 typedef int PollingFunc(void *opaque); 79 int qemu_add_polling_cb(PollingFunc *func, void *opaque); 80 void qemu_del_polling_cb(PollingFunc *func, void *opaque); 83 typedef void WaitObjectFunc(void *opaque); 85 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque); 86 void qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque);
|
block_int.h | 67 BlockDriverCompletionFunc *cb, void *opaque); 70 BlockDriverCompletionFunc *cb, void *opaque); 102 BlockDriverCompletionFunc *cb, void *opaque); 124 void (*change_cb)(void *opaque); 128 void *opaque; member in struct:BlockDriverState 167 void *opaque; member in struct:BlockDriverAIOCB 174 BlockDriverCompletionFunc *cb, void *opaque);
|
/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);
|
/external/qemu/hw/ |
goldfish_device.h | 33 void *opaque); 50 void *goldfish_switch_add(char *name, uint32_t (*writefn)(void *opaque, uint32_t state), void *writeopaque, int id); 51 void goldfish_switch_set_state(void *opaque, uint32_t state);
|
goldfish_battery.c | 63 static void goldfish_battery_save(QEMUFile* f, void* opaque) 65 struct goldfish_battery_state* s = opaque; 70 static int goldfish_battery_load(QEMUFile* f, void* opaque, int version_id) 72 struct goldfish_battery_state* s = opaque; 82 static uint32_t goldfish_battery_read(void *opaque, target_phys_addr_t offset) 85 struct goldfish_battery_state *s = opaque; 116 static void goldfish_battery_write(void *opaque, target_phys_addr_t offset, uint32_t val) 118 struct goldfish_battery_state *s = opaque;
|
goldfish_fb.c | 48 static void goldfish_fb_save(QEMUFile* f, void* opaque) 50 struct goldfish_fb_state* s = opaque; 70 static int goldfish_fb_load(QEMUFile* f, void* opaque, int version_id) 72 struct goldfish_fb_state* s = opaque; 124 static void goldfish_fb_update_display(void *opaque) 126 struct goldfish_fb_state *s = (struct goldfish_fb_state *)opaque; 278 static void goldfish_fb_invalidate_display(void * opaque) 281 struct goldfish_fb_state *s = (struct goldfish_fb_state *)opaque; 285 static void goldfish_fb_detach_display(void* opaque) 287 struct goldfish_fb_state *s = (struct goldfish_fb_state *)opaque; [all...] |
pxa.h | 94 void pxa2xx_lcdc_oritentation(void *opaque, int angle); 106 int pxa2xx_pcmcia_attach(void *opaque, PCMCIACardState *card); 107 int pxa2xx_pcmcia_dettach(void *opaque); 108 void pxa2xx_pcmcia_set_irq_cb(void *opaque, qemu_irq irq, qemu_irq cd_irq); 204 void *opaque; member in struct:PXA2xxI2SState
|
armv7m_nvic.c | 30 static uint32_t nvic_readl(void *opaque, uint32_t offset); 31 static void nvic_writel(void *opaque, uint32_t offset, uint32_t value); 72 static void systick_timer_tick(void * opaque) 74 nvic_state *s = (nvic_state *)opaque; 89 void armv7m_nvic_set_pending(void *opaque, int irq) 91 nvic_state *s = (nvic_state *)opaque; 98 int armv7m_nvic_acknowledge_irq(void *opaque) 100 nvic_state *s = (nvic_state *)opaque; 111 void armv7m_nvic_complete_irq(void *opaque, int irq) 113 nvic_state *s = (nvic_state *)opaque; [all...] |
/external/qemu/telephony/ |
sysdeps.h | 24 typedef void (*SysCallback)( void* opaque ); 39 typedef void (*SysChannelCallback)( void* opaque, int event_flags ); 70 extern void sys_timer_set( SysTimer timer, SysTime when, SysCallback callback, void* opaque );
|
/bionic/libc/private/isc/ |
eventlib.h | 44 typedef struct { void *opaque; } evConnID; member in struct:__anon484 45 typedef struct { void *opaque; } evFileID; member in struct:__anon485 46 typedef struct { void *opaque; } evStreamID; member in struct:__anon486 47 typedef struct { void *opaque; } evTimerID; member in struct:__anon487 48 typedef struct { void *opaque; } evWaitID; member in struct:__anon488 49 typedef struct { void *opaque; } evContext; member in struct:__anon489 50 typedef struct { void *opaque; } evEvent; member in struct:__anon490 52 #define evInitID(id) ((id)->opaque = NULL) 53 #define evTestID(id) ((id).opaque != NULL)
|
/external/skia/tests/ |
SrcOverTest.cpp | 21 /* Here's the idea. Can we ensure that when we blend on top of an opaque 22 dst, that the result always stay's opaque (i.e. exactly 255)? 38 SkDebugf("---- opaque test: [%d %d %d]\n", 41 // we acknowledge that technique0 does not always return opaque
|
/external/tcpdump/tests/ |
ospf-gmpls.new | 5 Area Local Opaque LSA (10), Opaque-Type: Traffic Engineering LSA (1), Opaque-ID: 8 29 Area Local Opaque LSA (10), Opaque-Type: Traffic Engineering LSA (1), Opaque-ID: 9 53 Area Local Opaque LSA (10), Opaque-Type: Traffic Engineering LSA (1), Opaque-ID: 3
|
ospf-gmpls.out | 5 Area Local Opaque LSA (10), Opaque-Type: Traffic Engineering LSA (1), Opaque-ID: 8 29 Area Local Opaque LSA (10), Opaque-Type: Traffic Engineering LSA (1), Opaque-ID: 9 53 Area Local Opaque LSA (10), Opaque-Type: Traffic Engineering LSA (1), Opaque-ID: 3
|
/external/opencore/engines/author/include/ |
pvauthorengineinterface.h | 92 * Optional opaque data that will be passed back to the user with the command response 110 * Optional opaque data that will be passed back to the user with the command response 131 * Optional opaque data that will be passed back to the user with the command response 150 * Optional opaque data that will be passed back to the user with the command response 163 * @param aContextData Optional opaque data to be passed back to user with the command response 176 * @param aContextData Optional opaque data to be passed back to user with the command response 188 * @param aContextData Optional opaque data to be passed back to user with the command response 200 * @param aContextData Optional opaque data to be passed back to user with the command response 212 * Upon completion of this command, opaque data to indentify the selected composer is provided in the 213 * callback. The user needs to use this opaque data to identify the composer when calling AddMediaTrack() [all...] |
/external/qemu/android/ |
hw-control.h | 25 typedef void (*AndroidHwLightBrightnessFunc)( void* opaque, 35 extern void android_hw_control_init( void* opaque,
|
/external/qemu/android/skin/ |
keyboard.h | 23 typedef void (*SkinKeyCommandFunc)( void* opaque, SkinKeyCommand command, int param ); 25 typedef void (*SkinKeyEventFunc)( void* opaque, AndroidKeyCode code, int down );
|
/external/qemu/slirp-android/ |
libslirp.h | 35 void slirp_redir_loop(void (*func)(void *opaque, int is_udp, 38 void *opaque);
|
/external/qemu/block/ |
raw-posix.c | 128 BDRVRawState *s = bs->opaque; 174 BDRVRawState *s = bs->opaque; 211 BDRVRawState *s = bs->opaque; 271 BDRVRawState *s = bs->opaque; 313 BDRVRawState *s = bs->opaque; 396 BDRVRawState *s = bs->opaque; 493 static void posix_aio_read(void *opaque) 495 PosixAioState *s = opaque; 537 acb->common.cb(acb->common.opaque, ret); 548 static int posix_aio_flush(void *opaque) [all...] |
/external/opencore/protocols/systems/3g-324m_pvterminal/common/include/ |
pv_2way_h324m_interface.h | 62 * Optional opaque data that will be passed back to the user with the command response 77 * Optional opaque data that will be passed back to the user with the command response 94 * Optional opaque data that will be passed back to the user with the command response 109 * Optional opaque data that will be passed back to the user with the command response 126 * Optional opaque data that will be passed back to the user with the command response 141 * Optional opaque data that will be passed back to the user with the command response 153 * Optional opaque data that will be passed back to the user with the command response 164 * Optional opaque data that will be passed back to the user with the command response 175 * Optional opaque data that will be passed back to the user with the command response 186 * Optional opaque data that will be passed back to the user with the command respons [all...] |