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

1 23 4 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/hw/
goldfish_switch.c 34 uint32_t (*writefn)(void *opaque, uint32_t state);
40 static void goldfish_switch_save(QEMUFile* f, void* opaque)
42 struct switch_state* s = opaque;
49 static int goldfish_switch_load(QEMUFile* f, void* opaque, int version_id)
51 struct switch_state* s = opaque;
63 static uint32_t goldfish_switch_read(void *opaque, target_phys_addr_t offset)
65 struct switch_state *s = (struct switch_state *)opaque;
89 static void goldfish_switch_write(void *opaque, target_phys_addr_t offset, uint32_t value)
91 struct switch_state *s = (struct switch_state *)opaque;
136 void goldfish_switch_set_state(void *opaque, uint32_t state
    [all...]
mips.h 10 void ds1225y_set_protection(void *opaque, int protection);
31 void rc4030_dma_memory_rw(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write);
41 void (*memory_rw)(void *opaque, target_phys_addr_t addr, uint8_t *buf, int len, int is_write));
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 16 uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len);
23 uint32_t tsc2005_txrx(void *opaque, uint32_t value, int len);
24 void tsc2005_set_transform(void *opaque, MouseTransformInfo *info);
31 void s1d13745_write(void *opaque, int dc, uint16_t value);
32 void s1d13745_write_block(void *opaque, int dc,
34 uint16_t s1d13745_read(void *opaque, int dc);
goldfish_timer.c 39 static void goldfish_timer_save(QEMUFile* f, void* opaque)
41 struct timer_state* s = opaque;
52 static int goldfish_timer_load(QEMUFile* f, void* opaque, int version_id)
54 struct timer_state* s = opaque;
76 static uint32_t goldfish_timer_read(void *opaque, target_phys_addr_t offset)
78 struct timer_state *s = (struct timer_state *)opaque;
91 static void goldfish_timer_write(void *opaque, target_phys_addr_t offset, uint32_t value_ns)
93 struct timer_state *s = (struct timer_state *)opaque;
122 static void goldfish_timer_tick(void *opaque)
124 struct timer_state *s = (struct timer_state *)opaque;
    [all...]
hw.h 18 typedef int (QEMUFilePutBufferFunc)(void *opaque, const uint8_t *buf,
25 typedef int (QEMUFileGetBufferFunc)(void *opaque, uint8_t *buf,
29 typedef int (QEMUFileCloseFunc)(void *opaque);
34 typedef int (QEMUFileRateLimit)(void *opaque);
40 typedef int64_t (QEMUFileSetRateLimit)(void *opaque, int64_t new_rate);
41 typedef int64_t (QEMUFileGetRateLimit)(void *opaque);
43 QEMUFile *qemu_fopen_ops(void *opaque, QEMUFilePutBufferFunc *put_buffer,
251 typedef void SaveStateHandler(QEMUFile *f, void *opaque);
252 typedef int SaveLiveStateHandler(QEMUFile *f, int stage, void *opaque);
253 typedef int LoadStateHandler(QEMUFile *f, void *opaque, int version_id)
    [all...]
pckbd.c 158 static void kbd_update_kbd_irq(void *opaque, int level)
160 KBDState *s = (KBDState *)opaque;
169 static void kbd_update_aux_irq(void *opaque, int level)
171 KBDState *s = (KBDState *)opaque;
180 static uint32_t kbd_read_status(void *opaque, uint32_t addr)
182 KBDState *s = opaque;
199 static void kbd_write_command(void *opaque, uint32_t addr, uint32_t val)
201 KBDState *s = opaque;
277 static uint32_t kbd_read_data(void *opaque, uint32_t addr)
279 KBDState *s = opaque;
    [all...]
goldfish_memlog.c 24 static uint32_t memlog_read(void *opaque, target_phys_addr_t offset)
26 (void)opaque;
33 static void memlog_write(void *opaque, target_phys_addr_t offset, uint32_t val)
36 struct goldfish_device *dev = opaque;
  /external/qemu/
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 );
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...]
os-win32.c 56 void *opaque; member in struct:PollingEntry
62 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
67 pe->opaque = opaque;
73 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
78 if (pe->func == func && pe->opaque == opaque) {
92 void *opaque[MAXIMUM_WAIT_OBJECTS + 1]; member in struct:WaitObjects
97 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
105 w->opaque[w->num] = 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 );
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ImageLayerChromiumTest.cpp 47 static PassRefPtr<TestImage> create(const IntSize& size, bool opaque)
49 return adoptRef(new TestImage(size, opaque));
52 explicit TestImage(const IntSize& size, bool opaque)
60 m_nativeImage->bitmap().setIsOpaque(opaque);
127 ASSERT_TRUE(graphicsLayer->contentsLayer()->opaque());
130 ASSERT_FALSE(graphicsLayer->contentsLayer()->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;
  /external/chromium_org/ui/gfx/
canvas_paint_gtk.h 22 // This constructor assumes the result is opaque.
24 CanvasSkiaPaint(GdkEventExpose* event, bool opaque);
47 void Init(bool opaque);
canvas_paint_win.h 38 // This constructor assumes the canvas is opaque.
44 CanvasSkiaPaint(HDC dc, bool opaque, int x, int y, int w, int h);
64 void Init(bool opaque);
canvas_paint_gtk.cc 21 CanvasSkiaPaint::CanvasSkiaPaint(GdkEventExpose* event, bool opaque)
26 Init(opaque);
53 void CanvasSkiaPaint::Init(bool opaque) {
56 ui::SCALE_FACTOR_100P, opaque); local
  /external/clang/test/CodeGenCXX/
partial-destruction.cpp 5 void opaque();
12 opaque();
  /external/valgrind/main/include/
pub_tool_stacktrace.h 66 // 'n' gives the index of the passed ip. 'opaque' is an arbitrary
71 void(*action)(UInt n, Addr ip, void* opaque),
72 void* opaque,
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES10RenderEngine.cpp 31 bool premultipliedAlpha, bool opaque, int alpha) {
33 // This path doesn't properly handle opaque layers that have non-opaque
50 if (alpha < 0xFF || !opaque) {
  /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...]
  /external/chromium_org/chrome/browser/ui/cocoa/
background_gradient_view.h 25 // If |opaque| is true then the background image is forced to be opaque.
28 // a view may want a opaque non-rectangular background. The find bar is an
30 - (void)drawBackgroundWithOpaque:(BOOL)opaque;
  /external/chromium_org/third_party/zlib/
zutil.c 216 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, unsigned items, unsigned size)
218 voidpf buf = opaque; /* just to make some compilers happy */
240 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
258 ptr = opaque; /* just to make some compilers happy */
275 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
277 if (opaque) opaque = 0; /* to make compiler happy */
281 void ZLIB_INTERNAL zcfree (voidpf opaque, voidpf ptr)
283 if (opaque) opaque = 0; /* to make compiler happy *
    [all...]

Completed in 423 milliseconds

1 23 4 5 6 7 8 91011>>