Lines Matching defs:p_result

97 // The result is stored in |p_result|. Returns A2DP_SUCCESS on success,
101 uint8_t* p_result) {
102 if (p_ie == NULL || p_result == NULL) {
106 *p_result++ = A2DP_APTX_HD_CODEC_LEN;
107 *p_result++ = (media_type << 4);
108 *p_result++ = A2DP_MEDIA_CT_NON_A2DP;
109 *p_result++ = (uint8_t)(p_ie->vendorId & 0x000000FF);
110 *p_result++ = (uint8_t)((p_ie->vendorId & 0x0000FF00) >> 8);
111 *p_result++ = (uint8_t)((p_ie->vendorId & 0x00FF0000) >> 16);
112 *p_result++ = (uint8_t)((p_ie->vendorId & 0xFF000000) >> 24);
113 *p_result++ = (uint8_t)(p_ie->codecId & 0x00FF);
114 *p_result++ = (uint8_t)((p_ie->codecId & 0xFF00) >> 8);
115 *p_result++ = p_ie->sampleRate | p_ie->channelMode;
116 *p_result++ = p_ie->acl_sprint_reserved0;
117 *p_result++ = p_ie->acl_sprint_reserved1;
118 *p_result++ = p_ie->acl_sprint_reserved2;
119 *p_result++ = p_ie->acl_sprint_reserved3;
476 // The result is stored in |p_result| and p_codec_config|.
480 tA2DP_APTX_HD_CIE* p_result,
483 p_result->sampleRate = A2DP_APTX_HD_SAMPLERATE_48000;
488 p_result->sampleRate = A2DP_APTX_HD_SAMPLERATE_44100;
498 // The result is stored in |p_result| and |p_codec_config|.
503 tA2DP_APTX_HD_CIE* p_result, btav_a2dp_codec_config_t* p_codec_config) {
507 p_result->sampleRate = A2DP_APTX_HD_SAMPLERATE_44100;
514 p_result->sampleRate = A2DP_APTX_HD_SAMPLERATE_48000;
564 // The result is stored in |p_result| and |p_codec_config|.
568 tA2DP_APTX_HD_CIE* p_result,
571 p_result->channelMode = A2DP_APTX_HD_CHANNELS_STEREO;
576 p_result->channelMode = A2DP_APTX_HD_CHANNELS_MONO;
586 // The result is stored in |p_result| and |p_codec_config|.
591 tA2DP_APTX_HD_CIE* p_result, btav_a2dp_codec_config_t* p_codec_config) {
595 p_result->channelMode = A2DP_APTX_HD_CHANNELS_MONO;
602 p_result->channelMode = A2DP_APTX_HD_CHANNELS_STEREO;