OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:p_av
(Results
1 - 3
of
3
) sorted by null
/external/bluetooth/bluedroid/btif/include/
btif_media.h
239
void btif_a2dp_on_started(tBTA_AV_START *
p_av
);
242
void btif_a2dp_on_stopped(tBTA_AV_SUSPEND *
p_av
);
244
void btif_a2dp_on_suspended(tBTA_AV_SUSPEND *
p_av
);
/external/bluetooth/bluedroid/btif/src/
btif_av.c
453
tBTA_AV *
p_av
= (tBTA_AV*)p_data;
local
459
(
p_av
->remote_cmd.rc_id == BTA_AV_RC_PLAY) )
486
p_av
->start.status,
p_av
->start.suspending,
p_av
->start.initiator);
488
if ((
p_av
->start.status == BTA_SUCCESS) && (
p_av
->start.suspending == TRUE))
492
btif_a2dp_on_started(&
p_av
->start);
495
if (
p_av
->start.status != BTA_AV_SUCCESS)
525
(
p_av
->reconfig.status == BTA_AV_SUCCESS)
560
tBTA_AV *
p_av
= (tBTA_AV*)p_data;
local
[
all
...]
btif_media_task.c
838
void btif_a2dp_on_started(tBTA_AV_START *
p_av
)
844
if (
p_av
== NULL)
851
if (
p_av
->status == BTA_AV_SUCCESS)
853
if (
p_av
->suspending == FALSE)
855
if (
p_av
->initiator)
904
void btif_a2dp_on_stopped(tBTA_AV_SUSPEND *
p_av
)
909
if (
p_av
!= NULL)
911
if (
p_av
->status != BTA_AV_SUCCESS)
913
APPL_TRACE_EVENT1("AV STOP FAILED (%d)",
p_av
->status);
915
if (
p_av
->initiator
[
all
...]
Completed in 212 milliseconds