Home
last modified time | relevance | path

Searched refs:Channel (Results 1 – 25 of 66) sorted by relevance

123

/frameworks/native/libs/vr/libpdx/private/pdx/
Dservice.h56 class Channel : public std::enable_shared_from_this<Channel> {
58 Channel() {} in Channel() function
59 virtual ~Channel() {} in ~Channel()
70 static std::shared_ptr<Channel> GetFromMessageInfo(const MessageInfo& info);
205 int flags, const std::shared_ptr<Channel>& channel, int* channel_id);
212 Service* service, int flags, const std::shared_ptr<Channel>& channel,
233 std::shared_ptr<Channel>* channel) const;
240 std::shared_ptr<Channel>* channel) const;
249 std::shared_ptr<Channel> base_pointer; in CheckChannel()
260 std::shared_ptr<Channel> base_pointer; in CheckChannel()
[all …]
Dservice_endpoint.h14 class Channel; variable
27 Channel* channel{nullptr};
50 virtual Status<void> SetChannel(int channel_id, Channel* channel) = 0;
70 Channel* channel,
78 Channel** channel) = 0;
Dmock_service_endpoint.h14 MOCK_METHOD2(SetChannel, Status<void>(int channel_id, Channel* channel));
20 Channel* channel, int* channel_id));
23 Channel** channel));
/frameworks/native/services/vr/bufferhubd/include/private/dvr/
Dconsumer_channel.h15 using Channel = pdx::Channel; variable
20 const std::shared_ptr<Channel> producer);
45 std::weak_ptr<Channel> producer_;
Dconsumer_queue_channel.h20 const std::shared_ptr<Channel>& producer, bool silent);
63 std::weak_ptr<Channel> producer_;
/frameworks/base/omapi/java/android/se/omapi/
DSession.java199 public @Nullable Channel openBasicChannel(@Nullable byte[] aid, @Nullable byte p2) in openBasicChannel()
212 return new Channel(mService, this, channel); in openBasicChannel()
249 public @Nullable Channel openBasicChannel(@Nullable byte[] aid) throws IOException { in openBasicChannel()
305 public @Nullable Channel openLogicalChannel(@Nullable byte[] aid, @Nullable byte p2) in openLogicalChannel()
319 return new Channel(mService, this, channel); in openLogicalChannel()
358 public @Nullable Channel openLogicalChannel(@Nullable byte[] aid) throws IOException { in openLogicalChannel()
DChannel.java42 public final class Channel implements java.nio.channels.Channel { class
50 Channel(@NonNull SEService service, @NonNull Session session, in Channel() method in Channel
/frameworks/native/libs/vr/libpdx/
Dservice.cpp15 std::shared_ptr<Channel> Channel::GetFromMessageInfo(const MessageInfo& info) { in GetFromMessageInfo()
17 : std::shared_ptr<Channel>(); in GetFromMessageInfo()
24 channel_{Channel::GetFromMessageInfo(info)},
373 int flags, const std::shared_ptr<Channel>& channel, int* channel_id) { in PushChannel()
383 Service* service, int flags, const std::shared_ptr<Channel>& channel, in PushChannel()
390 std::shared_ptr<Channel>* channel) const { in CheckChannel()
400 std::shared_ptr<Channel>* channel) const { in CheckChannel()
427 std::shared_ptr<Channel> Message::GetChannel() const { return channel_.lock(); } in GetChannel()
429 Status<void> Message::SetChannel(const std::shared_ptr<Channel>& chan) { in SetChannel()
466 std::shared_ptr<Channel> Service::OnChannelOpen(Message& /*message*/) { in OnChannelOpen()
[all …]
/frameworks/native/libs/vr/libpdx_uds/private/uds/
Dservice_endpoint.h43 Status<void> SetChannel(int channel_id, Channel* channel) override;
48 Channel* channel,
51 Channel** channel) override;
114 Channel* channel_state{nullptr};
138 LocalHandle channel_fd, Channel* channel_state);
141 Channel* GetChannelState(int32_t channel_id);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/media/session/
DMediaSessionManagerExt.kt24 import kotlinx.coroutines.channels.Channel
45 .buffer(capacity = Channel.CONFLATED)
65 .buffer(capacity = Channel.CONFLATED)
/frameworks/base/services/core/java/com/android/server/powerstats/
DPowerStatsHALWrapper.java20 import android.hardware.power.stats.Channel;
114 android.hardware.power.stats.Channel[] getEnergyMeterInfo(); in getEnergyMeterInfo()
226 public android.hardware.power.stats.Channel[] getEnergyMeterInfo() { in getEnergyMeterInfo()
227 android.hardware.power.stats.Channel[] energyMeterInfoHAL = null; in getEnergyMeterInfo()
275 private static native Channel[] nativeGetEnergyMeterInfo(); in nativeGetEnergyMeterInfo()
312 public android.hardware.power.stats.Channel[] getEnergyMeterInfo() { in getEnergyMeterInfo()
DStatsPullAtomCallbackImpl.java21 import android.hardware.power.stats.Channel;
47 private Map<Integer, Channel> mChannels = new HashMap();
66 Channel[] channels = mPowerStatsInternal.getEnergyMeterInfo(); in initPullOnDevicePowerMeasurement()
73 final Channel channel = channels[i]; in initPullOnDevicePowerMeasurement()
/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/compose/
DOverridableFlow.kt19 import kotlinx.coroutines.channels.Channel
28 private val overrideChannel = Channel<T>()
/frameworks/base/media/java/android/media/audiofx/
DDynamicsProcessing.java259 Channel channel = queryEngineByChannelIndex(ch); in getConfig()
1028 public final static class Channel { class in DynamicsProcessing
1051 public Channel (float inputGain, in Channel() method in DynamicsProcessing.Channel
1071 public Channel(Channel cfg) { in Channel() method in DynamicsProcessing.Channel
1247 private final Channel[] mChannel;
1270 Channel[] channel) { in Config()
1282 mChannel = new Channel[mChannelCount]; in Config()
1288 mChannel[ch] = new Channel(channel[ch]); //copy create in Config()
1324 mChannel = new Channel[channelCount]; in Config()
1327 mChannel[ch] = new Channel(cfg.mChannel[ch]); in Config()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/data/repository/
DFoldStateRepository.kt26 import kotlinx.coroutines.channels.Channel
84 .buffer(capacity = Channel.CONFLATED)
98 .buffer(capacity = Channel.CONFLATED)
/frameworks/base/core/proto/android/app/
Dnotification_channel_group.proto31 // Notification Channel Group ID. Provided by the app.
33 // User-visible Notification Channel Group name.
35 // User-visible Notification Channel Group description.
/frameworks/base/services/core/java/android/power/
DPowerStatsInternal.java21 import android.hardware.power.stats.Channel;
90 public abstract Channel[] getEnergyMeterInfo(); in getEnergyMeterInfo()
/frameworks/native/libs/vr/libpdx/fuzz/
Dhelpers.h76 Status<void> SetChannel(int channel_id, Channel* channel) { in SetChannel()
78 _channel = std::shared_ptr<Channel>(channel); in SetChannel()
143 Channel* channel, int* channel_id) { in PushChannel()
156 Channel** channel) { in CheckChannel()
289 std::shared_ptr<Channel> _channel;
Dservice_dispatcher_fuzzer.cpp42 std::shared_ptr<Channel> channel(nullptr); in LLVMFuzzerTestOneInput()
47 service->SetChannel(0, std::shared_ptr<Channel>(channel)); in LLVMFuzzerTestOneInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
DIpcSerializer.kt21 import kotlinx.coroutines.channels.Channel
55 private val channel = Channel<Pair<CompletableDeferred<Unit>, Job>>()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/scene/shared/model/
DFakeScene.kt23 import kotlinx.coroutines.channels.Channel
36 private val destinationScenesChannel = Channel<Map<UserAction, UserActionResult>>()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/unfold/system/
DDeviceStateRepository.kt23 import kotlinx.coroutines.channels.Channel in <lambda>()
49 .buffer(capacity = Channel.CONFLATED)
/frameworks/base/packages/CredentialManager/horologist/src/com/google/android/horologist/compose/rotaryinput/
DHaptics.kt32 import kotlinx.coroutines.channels.Channel in <lambda>()
104 private val hapticsChannel: Channel<RotaryHapticsType>, in handleScrollHaptic()
226 hapticsChannel: Channel<RotaryHapticsType> = rememberHapticChannel(), in rememberRotaryHapticHandler()
255 Channel<RotaryHapticsType>( in rememberHapticChannel()
/frameworks/libs/systemui/tracinglib/core/host/test/
DCoroutineTracingTest.kt29 import kotlinx.coroutines.channels.Channel in <lambda>()
156 val channel = Channel<Int>() in <lambda>()
178 val channel = Channel<Int>() in <lambda>()
194 val finishedLaunches = Channel<Int>() in <lambda>()
312 val channel = Channel<Int>() in <lambda>()
474 val channel = Channel<Int>() in <lambda>()
/frameworks/base/core/java/android/hardware/
DSensorDirectChannel.java26 import java.nio.channels.Channel;
37 public final class SensorDirectChannel implements Channel {

123