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

1 2 3 45 6 7 8 91011>>

  /external/qemu/hw/
bt-hci-csr.c 302 struct csrhci_s *s = (struct csrhci_s *) chr->opaque;
333 static void csrhci_out_hci_packet_event(void *opaque,
336 struct csrhci_s *s = (struct csrhci_s *) opaque;
345 static void csrhci_out_hci_packet_acl(void *opaque,
348 struct csrhci_s *s = (struct csrhci_s *) opaque;
361 struct csrhci_s *s = (struct csrhci_s *) chr->opaque;
405 static void csrhci_out_tick(void *opaque)
407 csrhci_fifo_wake((struct csrhci_s *) opaque);
410 static void csrhci_pins(void *opaque, int line, int level)
412 struct csrhci_s *s = (struct csrhci_s *) opaque;
    [all...]
smc91c111.c 248 static void smc91c111_writeb(void *opaque, target_phys_addr_t offset,
251 smc91c111_state *s = (smc91c111_state *)opaque;
420 static uint32_t smc91c111_readb(void *opaque, target_phys_addr_t offset)
422 smc91c111_state *s = (smc91c111_state *)opaque;
561 static void smc91c111_writew(void *opaque, target_phys_addr_t offset,
564 smc91c111_writeb(opaque, offset, value & 0xff);
565 smc91c111_writeb(opaque, offset + 1, value >> 8);
568 static void smc91c111_writel(void *opaque, target_phys_addr_t offset,
574 smc91c111_writew(opaque, offset, value & 0xffff);
575 smc91c111_writew(opaque, offset + 2, value >> 16)
    [all...]
bt-hid.c 382 static void bt_hid_control_sdu(void *opaque, const uint8_t *data, int len)
384 struct bt_hid_device_s *hid = opaque;
389 static void bt_hid_datain(void *opaque)
391 struct bt_hid_device_s *hid = opaque;
407 static void bt_hid_interrupt_sdu(void *opaque, const uint8_t *data, int len)
409 struct bt_hid_device_s *hid = opaque;
462 static void bt_hid_close_control(void *opaque)
464 struct bt_hid_device_s *hid = opaque;
470 static void bt_hid_close_interrupt(void *opaque)
472 struct bt_hid_device_s *hid = opaque;
    [all...]
goldfish_audio.c 241 static void audio_state_save( QEMUFile* f, void* opaque )
243 struct goldfish_audio_state* s = opaque;
252 static int audio_state_load( QEMUFile* f, void* opaque, int version_id )
254 struct goldfish_audio_state* s = opaque;
365 static uint32_t goldfish_audio_read(void *opaque, target_phys_addr_t offset)
368 struct goldfish_audio_state *s = opaque;
399 static void goldfish_audio_write(void *opaque, target_phys_addr_t offset, uint32_t val)
401 struct goldfish_audio_state *s = opaque;
457 static void goldfish_audio_callback(void *opaque, int free)
459 struct goldfish_audio_state *s = opaque;
    [all...]
goldfish_events_device.c 73 static void events_state_save(QEMUFile* f, void* opaque)
75 events_state* s = opaque;
80 static int events_state_load(QEMUFile* f, void* opaque, int version_id)
82 events_state* s = opaque;
204 static void events_put_mouse(void *opaque, int dx, int dy, int dz, int buttons_state)
206 events_state *s = (events_state *) opaque;
223 static void events_put_generic(void* opaque, int type, int code, int value)
225 events_state *s = (events_state *) opaque;
msmouse.c 33 static void msmouse_event(void *opaque,
36 CharDriverState *chr = (CharDriverState *)opaque;
  /external/opencore/pvmi/pvmf/include/
pvmi_config_and_capability.h 77 * @param aSession An Opaque session ID
97 * @param aSession The Opaque session ID
110 * @param aSession The Opaque session ID
124 * @param aSession The Opaque session ID
139 * @param aSession The Opaque session ID
150 * @param aSession The Opaque session ID
170 * @param aSession The Opaque session ID
187 * @param aSession The Opaque session ID
198 * @param aSession The Opaque session ID
pvmf_event_handling.h 148 * @return Returns the opaque data that was passed in with the command.
165 * the opaque event data and use PVInterface pointer if needed to
179 * the opaque event data and use PVInterface pointer if needed to
201 * the opaque event data and use PVInterface pointer if needed to
358 * the opaque event data and use PVInterface pointer if needed to
373 * the opaque event data and use PVInterface pointer if needed to
395 * the opaque event data and use PVInterface pointer if needed to
435 * @return Returns the opaque data associated with the callback type.
  /external/qemu/block/
raw-win32.c 78 BDRVRawState *s = bs->opaque;
115 BDRVRawState *s = bs->opaque;
136 BDRVRawState *s = bs->opaque;
156 BDRVRawState *s = bs->opaque;
162 BDRVRawState *s = bs->opaque;
168 BDRVRawState *s = bs->opaque;
182 BDRVRawState *s = bs->opaque;
285 BDRVRawState *s = bs->opaque;
320 BDRVRawState *s = bs->opaque;
nbd.c 44 BDRVNBDState *s = bs->opaque;
102 BDRVNBDState *s = bs->opaque;
132 BDRVNBDState *s = bs->opaque;
161 BDRVNBDState *s = bs->opaque;
175 BDRVNBDState *s = bs->opaque;
cow.c 68 BDRVCowState *s = bs->opaque;
150 BDRVCowState *s = bs->opaque;
157 BDRVCowState *s = bs->opaque;
186 BDRVCowState *s = bs->opaque;
200 BDRVCowState *s = bs->opaque;
260 BDRVCowState *s = bs->opaque;
  /external/qemu/
block.c 53 BlockDriverCompletionFunc *cb, void *opaque);
56 BlockDriverCompletionFunc *cb, void *opaque);
410 bs->opaque = qemu_mallocz(drv->instance_size);
423 qemu_free(bs->opaque);
424 bs->opaque = NULL;
470 qemu_free(bs->opaque);
476 bs->opaque = NULL;
922 void (*change_cb)(void *opaque), void *opaque)
925 bs->change_opaque = opaque;
    [all...]
vl-android.c 368 static uint32_t default_ioport_readb(void *opaque, uint32_t address)
376 static void default_ioport_writeb(void *opaque, uint32_t address, uint32_t data)
384 static uint32_t default_ioport_readw(void *opaque, uint32_t address)
393 static void default_ioport_writew(void *opaque, uint32_t address, uint32_t data)
400 static uint32_t default_ioport_readl(void *opaque, uint32_t address)
408 static void default_ioport_writel(void *opaque, uint32_t address, uint32_t data)
417 IOPortReadFunc *func, void *opaque)
433 if (ioport_opaque[i] != NULL && ioport_opaque[i] != opaque)
434 hw_error("register_ioport_read: invalid opaque");
435 ioport_opaque[i] = opaque;
995 void *opaque; member in struct:QEMUTimer
3038 void *opaque; member in struct:IOHandlerRecord
3101 void *opaque; member in struct:PollingEntry
3137 void *opaque[MAXIMUM_WAIT_OBJECTS + 1]; member in struct:WaitObjects
3496 void *opaque; member in struct:QEMUBH
3664 void *opaque; member in struct:vm_change_state_entry
3716 void *opaque; member in struct:QEMUResetEntry
    [all...]
compatfd.c 26 static void *sigwait_compat(void *opaque)
28 struct sigfd_compat_info *info = opaque;
  /external/opencore/pvmi/content_policy_manager/plugins/common/include/
pvmf_cpmplugin_license_interface.h 90 * @param [in] Optional opaque data associated with the request.
91 * @param [in] Size of the optional opaque data.
109 * @param [in] Optional opaque data associated with the request.
110 * @param [in] Size of the optional opaque data.
127 * @param aContext [in] Optional opaque data that will be passed back to
  /external/opencore/engines/2way/include/
pv_2way_interface.h 98 * Optional opaque data that will be passed back to the user with the command response
116 * Optional opaque data that will be passed back to the user with the command response
140 * 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
186 * Optional opaque data that will be passed back to the user with the command response
203 * Optional opaque data that will be passed back to the user with the command response
226 * Optional opaque data that will be passed back to the user with the command response
239 * Optional opaque data that will be passed back to the user with the command response
257 * Optional opaque data that will be passed back to the user with the command response
282 * Optional opaque data that will be passed back to the user with the command respons
    [all...]
  /external/opencore/engines/author/src/
pvaenodeutility.h 304 * @param aContext Optional opaque data to be passed back to user with the command response
316 * @param aContext Optional opaque data to be passed back to user with the command response
328 * @param aContext Optional opaque data to be passed back to user with the command response
346 * @param aContext Optional opaque data to be passed back to user with the command response
358 * @param aContext Optional opaque data to be passed back to user with the command response
367 * @param aContext Optional opaque data to be passed back to user with the command response
376 * @param aContext Optional opaque data to be passed back to user with the command response
385 * @param aContext Optional opaque data to be passed back to user with the command response
394 * @param aContext Optional opaque data to be passed back to user with the command response
403 * @param aContext Optional opaque data to be passed back to user with the command respons
    [all...]
  /external/opencore/oscl/oscl/osclbase/src/
pvlogger_accessories.h 32 * format text messages, and other to format opaque message buffers.
63 * filter text messages, and other to filter opaque message buffers.
114 * append text messages, and other to append opaque message buffers.
  /external/qemu/android/
hw-qemud.h 68 typedef void (*QemudClientClose)( void* opaque );
73 typedef void (*QemudClientRecv) ( void* opaque, uint8_t* msg, int msglen, QemudClient* client );
105 typedef QemudClient* (*QemudServiceConnect)( void* opaque, QemudService* service, int channel );
  /external/qemu/telephony/
sysdeps_posix.c 94 void* opaque; member in struct:SysChannelRec_
202 void* opaque )
209 channel->opaque = opaque;
319 void* opaque; member in struct:SysTimerRec_
371 timer->opaque = NULL;
379 void* opaque )
388 callback( opaque );
403 timer->opaque = opaque;
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-6356/
loc_api_common.xdr 193 opaque nmea_sentences<RPC_LOC_API_MAX_NMEA_STRING_LENGTH>;
232 opaque addr<RPC_LOC_API_MAX_SERVER_ADDR_LENGTH>;
325 opaque requester_id[200];
356 opaque session_id[4];
362 opaque requestor_id_string<RPC_LOC_NI_MAX_REQUESTOR_ID_LENGTH>;
368 opaque client_name_string<RPC_LOC_NI_MAX_CLIENT_NAME_LENGTH>;
384 opaque supl_hash[8];
395 opaque ext_client_address<RPC_LOC_NI_MAX_EXT_CLIENT_ADDRESS>;
412 opaque lcs_codeword_string<RPC_LOC_NI_CODEWORD_LENGTH>;
425 opaque notification_text<RPC_LOC_NI_MAX_CLIENT_NAME_LENGTH>
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PixelXorXfermodeTest.java 59 // XOR transfer always results in an opaque image
64 // result is always opaque, even though all inputs have alpha
  /external/opencore/doc/oscl_html/
oscl__opaque__type_8h.html 9 <hr><h1>oscl_opaque_type.h File Reference</h1>The file <a class="el" href="oscl__opaque__type_8h.html">oscl_opaque_type.h</a> defines pure virtual classes for working with opaque types.
23 The file <a class="el" href="oscl__opaque__type_8h.html">oscl_opaque_type.h</a> defines pure virtual classes for working with opaque types.
  /external/opencore/engines/common/include/
pv_config_interface.h 37 * @param aContextData Optional opaque data to be passed back to user with the command response
47 * @param aContextData Optional opaque data to be passed back to user with the command response
  /external/qemu/android/skin/
composer.h 36 char isOpaque; /* flag: TRUE iff the region is opaque */
40 typedef void (*SkinPlateDrawFunc)( void* user, SkinRegion* region, SkinPos* apos, SkinViewport* viewport, int opaque );

Completed in 402 milliseconds

1 2 3 45 6 7 8 91011>>