Searched defs:opaque (Results 201 - 225 of 286) sorted by relevance

1234567891011>>

/external/libyuv/files/source/
H A Dconvert.cc1526 static void JpegCopyI420(void* opaque, argument
1530 I420Buffers* dest = static_cast<I420Buffers*>(opaque);
1544 static void JpegI422ToI420(void* opaque, argument
1548 I420Buffers* dest = static_cast<I420Buffers*>(opaque);
1562 static void JpegI444ToI420(void* opaque, argument
1566 I420Buffers* dest = static_cast<I420Buffers*>(opaque);
1580 static void JpegI411ToI420(void* opaque, argument
1584 I420Buffers* dest = static_cast<I420Buffers*>(opaque);
1598 static void JpegI400ToI420(void* opaque, argument
1602 I420Buffers* dest = static_cast<I420Buffers*>(opaque);
[all...]
/external/pdfium/core/include/thirdparties/zlib/
H A Dzlib.h140 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
141 typedef void (*free_func) OF((voidpf opaque, voidpf address));
159 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
194 to zero. The application must initialize zalloc, zfree and opaque before
198 The opaque value provided by the application will be passed as the first
201 opaque value.
268 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
287 zalloc, zfree and opaque must be initialized before by the caller. If
431 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
595 fields next_in, zalloc, zfree and opaque mus
[all...]
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_flate.cpp12 static void* my_alloc_func (void* opaque, unsigned int items, unsigned int size) argument
16 static void my_free_func (void* opaque, void* address) argument
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dzlib.h144 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
145 typedef void (*free_func) OF((voidpf opaque, voidpf address));
163 voidpf opaque; /* private data object passed to zalloc and zfree */ member in struct:z_stream_s
198 to zero. The application must initialize zalloc, zfree and opaque before
202 The opaque value provided by the application will be passed as the first
205 opaque value.
272 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
291 zalloc, zfree and opaque must be initialized before by the caller. If
435 next_in, avail_in, zalloc, zfree and opaque must be initialized before by
599 fields next_in, zalloc, zfree and opaque mus
[all...]
/external/qemu/android/
H A Dasync-socket.c72 /* An opaque pointer associated with this I/O. */
110 * opaque - AsyncSocketIO instance representing the timed out I/O.
112 static void _on_async_socket_io_timed_out(void* opaque);
120 * io_opaque - An opaque pointer associated with the I/O.
228 * reader_opaque - An opaque pointer associated with the reader.
251 * writer_opaque - An opaque pointer associated with the writer.
272 _on_async_socket_io_timed_out(void* opaque) argument
274 AsyncSocketIO* const asio = (AsyncSocketIO*)opaque;
363 /* An opaque pointer associated with this socket by the client. */
1006 _on_async_socket_io(void* opaque, in argument
1040 _on_connector_events(void* opaque, AsyncSocketConnector* connector, AsyncIOState event) argument
1080 _on_async_socket_reconnect(void* opaque) argument
[all...]
/external/qemu/android/camera/
H A Dcamera-service.c521 * opaque - Camera service descriptor.
526 _factory_client_recv(void* opaque, argument
538 CameraServiceDesc* csd = (CameraServiceDesc*)opaque;
565 _factory_client_close(void* opaque) argument
1149 * opaque - Camera service descriptor.
1154 _camera_client_recv(void* opaque, argument
1176 CameraClient* cc = (CameraClient*)opaque;
1215 _camera_client_close(void* opaque) argument
1217 CameraClient* cc = (CameraClient*)opaque;
1240 _camera_service_connect(void* opaque, argument
[all...]
/external/qemu/audio/
H A Dalsaaudio.c253 static void alsa_poll_handler (void *opaque) argument
257 struct pollhlp *hlp = opaque;
1242 static void alsa_audio_fini (void *opaque) argument
1248 (void) opaque;
/external/qemu/block/
H A Dqcow2.c141 BDRVQcowState *s = bs->opaque;
256 BDRVQcowState *s = bs->opaque;
359 static void qcow_aio_read_cb(void *opaque, int ret);
360 static void qcow_aio_read_bh(void *opaque) argument
362 QCowAIOCB *acb = opaque;
365 qcow_aio_read_cb(opaque, 0);
382 static void qcow_aio_read_cb(void *opaque, int ret) argument
384 QCowAIOCB *acb = opaque;
386 BDRVQcowState *s = bs->opaque;
488 acb->common.cb(acb->common.opaque, re
492 qcow_aio_setup(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, BlockDriverCompletionFunc *cb, void *opaque, int is_write) argument
519 qcow_aio_readv(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, BlockDriverCompletionFunc *cb, void *opaque) argument
554 qcow_aio_write_cb(void *opaque, int ret) argument
644 qcow_aio_writev(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, BlockDriverCompletionFunc *cb, void *opaque) argument
1222 qcow_aio_flush(BlockDriverState *bs, BlockDriverCompletionFunc *cb, void *opaque) argument
[all...]
/external/qemu/
H A Dgdbstub.c1865 TaskState *ts = s->c_cpu->opaque;
1960 static void gdb_vm_state_change(void *opaque, int running, int reason) argument
2325 static int gdb_chr_can_receive(void *opaque) argument
2332 static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size) argument
2341 static void gdb_chr_event(void *opaque, int event) argument
H A Dmain-loop.c65 static void qemu_event_read(void *opaque) argument
67 int fd = (unsigned long)opaque;
108 static void dummy_event_handler(void *opaque) argument
142 void *opaque; member in struct:PollingEntry
148 int qemu_add_polling_cb(PollingFunc *func, void *opaque) argument
153 pe->opaque = opaque;
159 void qemu_del_polling_cb(PollingFunc *func, void *opaque) argument
164 if (pe->func == func && pe->opaque == opaque) {
178 void *opaque[MAXIMUM_WAIT_OBJECTS + 1]; member in struct:WaitObjects
183 qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque) argument
196 qemu_del_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque) argument
866 alarm_timer_on_change_state_rearm(void *opaque, int running, int reason) argument
[all...]
H A Dtap-win32.c636 TAPState *s = vc->opaque;
648 TAPState *s = vc->opaque;
653 static void tap_win32_send(void *opaque) argument
655 TAPState *s = opaque;
/external/qemu/hw/android/goldfish/
H A Dnand.c352 static void nand_dev_controller_state_save(QEMUFile *f, void *opaque) argument
354 nand_dev_controller_state* s = opaque;
365 static int nand_dev_controller_state_load(QEMUFile *f, void *opaque, int version_id) argument
367 nand_dev_controller_state* s = opaque;
558 static void nand_dev_write(void *opaque, hwaddr offset, uint32_t value) argument
560 nand_dev_controller_state *s = (nand_dev_controller_state *)opaque;
613 static uint32_t nand_dev_read(void *opaque, hwaddr offset) argument
615 nand_dev_controller_state *s = (nand_dev_controller_state *)opaque;
H A Dpipe.c71 void* opaque; member in struct:__anon28776
99 list->services[count].opaque = pipeOpaque;
135 void* opaque; member in struct:Pipe
160 pipe->opaque = pipeConnector_new(pipe);
180 pipe_list_findp_opaque( Pipe** list, void* opaque )
185 if (node == NULL || node->opaque == opaque) {
248 pipe->funcs->save(pipe->opaque, file);
292 pipe->opaque = pipe->funcs->load(pipe, service ? service->opaque
354 pipeConnector_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers ) argument
439 pipeConnector_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers ) argument
451 pipeConnector_wakeOn( void* opaque, int flags ) argument
531 zeroPipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers ) argument
543 zeroPipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers ) argument
562 zeroPipe_wakeOn( void* opaque, int flags ) argument
635 pingPongPipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers ) argument
699 pingPongPipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers ) argument
758 pingPongPipe_wakeOn( void* opaque, int flags ) argument
877 throttlePipe_sendBuffers( void* opaque, const GoldfishPipeBuffer* buffers, int numBuffers ) argument
896 throttlePipe_recvBuffers( void* opaque, GoldfishPipeBuffer* buffers, int numBuffers ) argument
929 throttlePipe_wakeOn( void* opaque, int flags ) argument
1078 pipe_dev_write(void *opaque, hwaddr offset, uint32_t value) argument
1175 pipe_dev_read(void *opaque, hwaddr offset) argument
1267 goldfish_pipe_load( QEMUFile* file, void* opaque, int version_id ) argument
[all...]
/external/qemu/hw/intc/
H A Dapic.c643 static void apic_timer(void *opaque) argument
645 APICState *s = opaque;
651 static uint32_t apic_mem_readb(void *opaque, hwaddr addr) argument
656 static uint32_t apic_mem_readw(void *opaque, hwaddr addr) argument
661 static void apic_mem_writeb(void *opaque, hwaddr addr, uint32_t val) argument
665 static void apic_mem_writew(void *opaque, hwaddr addr, uint32_t val) argument
669 static uint32_t apic_mem_readl(void *opaque, hwaddr addr) argument
750 static void apic_mem_writel(void *opaque, hwaddr addr, uint32_t val) argument
835 static void apic_save(QEMUFile *f, void *opaque) argument
837 APICState *s = opaque;
867 apic_load(QEMUFile *f, void *opaque, int version_id) argument
905 apic_reset(void *opaque) argument
[all...]
/external/qemu/hw/pci/
H A Dpci.c53 static void pci_set_irq(void *opaque, int irq_num, int level);
60 static void pcibus_save(QEMUFile *f, void *opaque) argument
62 PCIBus *bus = (PCIBus *)opaque;
70 static int pcibus_load(QEMUFile *f, void *opaque, int version_id) argument
72 PCIBus *bus = (PCIBus *)opaque;
573 void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len) argument
575 PCIBus *s = opaque;
599 uint32_t pci_data_read(void *opaque, uint32_t addr, int len) argument
601 PCIBus *s = opaque;
646 static void pci_set_irq(void *opaque, in argument
[all...]
/external/qemu/include/block/
H A Dblock_int.h70 BlockDriverCompletionFunc *cb, void *opaque);
73 BlockDriverCompletionFunc *cb, void *opaque);
75 BlockDriverCompletionFunc *cb, void *opaque);
116 BlockDriverCompletionFunc *cb, void *opaque);
153 void (*change_cb)(void *opaque);
157 void *opaque; member in struct:BlockDriverState
207 void *opaque; member in struct:BlockDriverAIOCB
214 BlockDriverCompletionFunc *cb, void *opaque);
/external/qemu/include/hw/arm/
H A Dpxa.h96 void pxa2xx_lcdc_oritentation(void *opaque, int angle);
108 int pxa2xx_pcmcia_attach(void *opaque, PCMCIACardState *card);
109 int pxa2xx_pcmcia_dettach(void *opaque);
110 void pxa2xx_pcmcia_set_irq_cb(void *opaque, qemu_irq irq, qemu_irq cd_irq);
206 void *opaque; member in struct:PXA2xxI2SState
/external/qemu/include/hw/
H A Dusb.h128 void *opaque; member in struct:USBDevice
190 void *opaque; member in struct:USBPort
191 int index; /* internal port index, may be used with the opaque */
195 typedef void USBCallback(USBPacket * packet, void *opaque);
216 void * opaque)
219 p->cancel_opaque = opaque;
256 void usb_hid_datain_cb(USBDevice *dev, void *opaque, void (*datain)(void *));
276 void qemu_register_usb_port(USBPort *port, void *opaque, int index,
215 usb_defer_packet(USBPacket *p, USBCallback *cancel, void * opaque) argument
/external/qemu/include/ui/
H A Dconsole.h27 typedef int QEMUDisplayCloseCallback(void *opaque);
28 void qemu_set_display_close_handler(QEMUDisplayCloseCallback *cb, void *opaque);
31 typedef void QEMUPutKBDEvent(void *opaque, int keycode);
32 typedef void QEMUPutLEDEvent(void *opaque, int ledstate);
33 typedef void QEMUPutMouseEvent(void *opaque, int dx, int dy, int dz, int buttons_state);
49 void *opaque; member in struct:QEMUPutKBDEntry
57 void *opaque; member in struct:QEMUPutLEDEntry
61 void qemu_add_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque);
62 void qemu_remove_kbd_event_handler(QEMUPutKBDEvent *func, void *opaque);
64 void *opaque, in
198 void* opaque; member in struct:DisplayUpdateListener
212 void *opaque; member in struct:DisplayState
[all...]
/external/qemu/slirp/
H A Dslirp.c171 static void slirp_state_save(QEMUFile *f, void *opaque);
172 static int slirp_state_load(QEMUFile *f, void *opaque, int version_id);
737 static void _slirp_redir_loop(void (*func)(void *opaque, int is_udp, argument
740 void *opaque, int is_udp)
746 func(opaque, is_udp,
752 void slirp_redir_loop(void (*func)(void *opaque, int is_udp, argument
755 void *opaque)
757 _slirp_redir_loop(func, opaque, 0);
758 _slirp_redir_loop(func, opaque, 1);
942 static void slirp_state_save(QEMUFile *f, void *opaque) argument
1053 slirp_state_load(QEMUFile *f, void *opaque, int version_id) argument
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c1269 static void mon_out (HChar c, void *opaque) argument
1271 struct mon_out_buf *b = (struct mon_out_buf *) opaque;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_gnutls.c43 typedef unsigned char opaque; typedef
58 opaque master_secret[WPA_TLS_MASTER_SIZE];
59 opaque client_random[WPA_TLS_RANDOM_SIZE];
60 opaque server_random[WPA_TLS_RANDOM_SIZE];
/external/wpa_supplicant_8/src/crypto/
H A Dtls_gnutls.c43 typedef unsigned char opaque; typedef
58 opaque master_secret[WPA_TLS_MASTER_SIZE];
59 opaque client_random[WPA_TLS_RANDOM_SIZE];
60 opaque server_random[WPA_TLS_RANDOM_SIZE];
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_gnutls.c43 typedef unsigned char opaque; typedef
58 opaque master_secret[WPA_TLS_MASTER_SIZE];
59 opaque client_random[WPA_TLS_RANDOM_SIZE];
60 opaque server_random[WPA_TLS_RANDOM_SIZE];
/external/chromium_org/cc/layers/
H A Dlayer.cc548 void Layer::SetContentsOpaque(bool opaque) { argument
550 if (contents_opaque_ == opaque)
552 contents_opaque_ = opaque;

Completed in 1427 milliseconds

1234567891011>>