Home
last modified time | relevance | path

Searched refs:callbacks (Results 1 – 21 of 21) sorted by relevance

/device/google/cuttlefish/guest/hals/bluetooth/src/
Dhci.rs50 callbacks: Strong<dyn IBluetoothHciCallbacks>,
165 ClientState::Opened { ref callbacks, ref mut initialized, .. } in new()
176 callbacks.initializationComplete(Status::SUCCESS).unwrap(); in new()
180 ClientState::Opened { ref callbacks, .. } => match idc { in new()
181 Idc::ACL_DATA => callbacks.aclDataReceived(&data[1..packet_size]), in new()
182 Idc::SCO_DATA => callbacks.scoDataReceived(&data[1..packet_size]), in new()
183 Idc::ISO_DATA => callbacks.isoDataReceived(&data[1..packet_size]), in new()
184 Idc::EVENT => callbacks.hciEventReceived(&data[1..packet_size]), in new()
215 fn initialize(&self, callbacks: &Strong<dyn IBluetoothHciCallbacks>) -> binder::Result<()> { in initialize()
222 callbacks.initializationComplete(Status::ALREADY_INITIALIZED)?; in initialize()
[all …]
/device/generic/goldfish-opengl/system/codecs/omx/vpxdec/
DGoldfishVPX.cpp58 const OMX_CALLBACKTYPE* callbacks, in GoldfishVPX() argument
70 callbacks, in GoldfishVPX()
501 const char *name, const OMX_CALLBACKTYPE *callbacks, in createGoldfishOMXComponent() argument
507 name, "video_decoder.vp9", OMX_VIDEO_CodingVP9, callbacks, in createGoldfishOMXComponent()
512 name, "video_decoder.vp8", OMX_VIDEO_CodingVP8, callbacks, in createGoldfishOMXComponent()
517 name, "video_decoder.vp9", OMX_VIDEO_CodingVP9, callbacks, in createGoldfishOMXComponent()
522 name, "video_decoder.vp8", OMX_VIDEO_CodingVP8, callbacks, in createGoldfishOMXComponent()
/device/google/cuttlefish/guest/hals/ril/reference-libril/
Dril.cpp434 extern "C" void RIL_setcallbacks (const RIL_RadioFunctions *callbacks) { in RIL_setcallbacks() argument
435 memcpy(&s_callbacks, callbacks, sizeof (RIL_RadioFunctions)); in RIL_setcallbacks()
439 RIL_register (const RIL_RadioFunctions *callbacks) { in RIL_register() argument
442 if (callbacks == NULL) { in RIL_register()
446 if (callbacks->version < RIL_VERSION_MIN) { in RIL_register()
448 callbacks->version, RIL_VERSION_MIN); in RIL_register()
452 RLOGD("RIL_register: Vsoc RIL version %d", callbacks->version); in RIL_register()
460 memcpy(&s_callbacks, callbacks, sizeof (RIL_RadioFunctions)); in RIL_register()
Dsap_service.h27 void registerService(const RIL_RadioFunctions *callbacks);
Dril_config.cpp266 void radio_1_6::registerConfigService(RIL_RadioFunctions *callbacks, CommandInfo *commands) { in registerConfigService() argument
274 s_vendorFunctions_config = callbacks; in registerConfigService()
Dril_service.h24 void registerService(RIL_RadioFunctions *callbacks, android::CommandInfo *commands);
841 void registerConfigService(RIL_RadioFunctions *callbacks, android::CommandInfo *commands);
Dsap_service.cpp937 void sap::registerService(const RIL_RadioFunctions *callbacks) { in registerService() argument
Dril.h8663 void RIL_register (const RIL_RadioFunctions *callbacks);
Dril_service.cpp13530 void radio_1_6::registerService(RIL_RadioFunctions *callbacks, CommandInfo *commands) { in registerService() argument
13550 s_vendorFunctions = callbacks; in registerService()
/device/generic/goldfish-opengl/system/codecs/omx/avcdec/
DGoldfishAVCDec.cpp74 const OMX_CALLBACKTYPE *callbacks, in GoldfishAVCDec() argument
80 320 /* width */, 240 /* height */, callbacks, in GoldfishAVCDec()
622 const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, in createGoldfishOMXComponent() argument
625 …return new android::GoldfishAVCDec(name, callbacks, appData, component, RenderMode::RENDER_BY_HOST… in createGoldfishOMXComponent()
627 …return new android::GoldfishAVCDec(name, callbacks, appData, component, RenderMode::RENDER_BY_GUES… in createGoldfishOMXComponent()
/device/generic/goldfish-opengl/system/codecs/omx/plugin/
DGoldfishOMXPlugin.h31 const OMX_CALLBACKTYPE *callbacks,
DGoldfishOMXPlugin.cpp126 const OMX_CALLBACKTYPE *callbacks, in makeComponentInstance() argument
172 (*createGoldfishOMXComponent)(name, callbacks, appData, component); in makeComponentInstance()
DGoldfishOMXComponent.cpp29 const OMX_CALLBACKTYPE *callbacks, in GoldfishOMXComponent() argument
33 mCallbacks(callbacks), in GoldfishOMXComponent()
DGoldfishVideoDecoderOMXComponent.cpp51 const OMX_CALLBACKTYPE *callbacks, in GoldfishVideoDecoderOMXComponent() argument
54 : SimpleGoldfishOMXComponent(name, callbacks, appData, component), in GoldfishVideoDecoderOMXComponent()
DSimpleGoldfishOMXComponent.cpp30 const OMX_CALLBACKTYPE *callbacks, in SimpleGoldfishOMXComponent() argument
33 : GoldfishOMXComponent(name, callbacks, appData, component), in SimpleGoldfishOMXComponent()
/device/generic/goldfish-opengl/system/codecs/omx/vpxdec/include/
DGoldfishVPX.h44 const OMX_CALLBACKTYPE* callbacks,
/device/generic/goldfish-opengl/system/codecs/omx/avcdec/include/
DGoldfishAVCDec.h57 GoldfishAVCDec(const char *name, const OMX_CALLBACKTYPE *callbacks,
/device/generic/goldfish-opengl/system/codecs/omx/plugin/include/
DSimpleGoldfishOMXComponent.h42 const OMX_CALLBACKTYPE *callbacks,
DGoldfishVideoDecoderOMXComponent.h45 const OMX_CALLBACKTYPE *callbacks,
DGoldfishOMXComponent.h32 const OMX_CALLBACKTYPE *callbacks,
/device/google/cuttlefish/guest/hals/rild/
Drild_cuttlefish.c50 extern void RIL_register (const RIL_RadioFunctions *callbacks);