Home
last modified time | relevance | path

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

12

/aosp14/frameworks/base/omapi/java/android/se/omapi/
H A 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()
H A 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
/aosp14/frameworks/base/media/java/android/media/audiofx/
H A DDynamicsProcessing.java1028 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()
1324 mChannel = new Channel[channelCount]; in Config()
1636 private Channel[] mChannel;
1652 mChannel = new Channel[mChannelCount]; in Builder()
1779 public void setAllChannelsTo(Channel channel) { in setAllChannelsTo()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/powerstats/
H A 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()
H A 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()
H A DPowerStatsLogger.java22 import android.hardware.power.stats.Channel;
145 Channel[] channel = mPowerStatsHALWrapper.getEnergyMeterInfo(); in writeMeterDataToFile()
334 final Channel[] channels = mPowerStatsHALWrapper.getEnergyMeterInfo(); in PowerStatsLogger()
H A DPowerStatsService.java21 import android.hardware.power.stats.Channel;
189 Channel[] channel = getPowerStatsHal().getEnergyMeterInfo(); in dump()
339 public Channel[] getEnergyMeterInfo() { in getEnergyMeterInfo()
H A DProtoStreamUtils.java19 import android.hardware.power.stats.Channel;
283 public static byte[] getProtoBytes(Channel[] channel) { in getProtoBytes()
289 public static void packProtoMessage(Channel[] channel, ProtoOutputStream pos) { in packProtoMessage()
301 public static void print(Channel[] channel) { in print()
311 public static void dumpsys(Channel[] channel, PrintWriter pw) { in dumpsys()
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/framework/compose/
H A DOverridableFlow.kt19 import kotlinx.coroutines.channels.Channel
28 private val overrideChannel = Channel<T>()
/aosp14/frameworks/base/core/proto/android/app/
H A 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.
H A Dnotification_channel.proto31 // Notification Channel ID. Provided by the app.
33 // User-visible Notification Channel name. Provided by the app.
35 // User-visible Notification Channel description. Provided by the app.
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/common/coroutine/
H A DConflatedCallbackFlow.kt21 import kotlinx.coroutines.channels.Channel
39 ): Flow<T> = callbackFlow(block).buffer(capacity = Channel.CONFLATED)
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/common/ui/data/repository/
H A DFakeConfigurationRepository.kt19 import kotlinx.coroutines.channels.Channel
26 private val onAnyConfigurationChangeChannel = Channel<Unit>()
/aosp14/frameworks/base/services/core/java/android/power/
H A DPowerStatsInternal.java21 import android.hardware.power.stats.Channel;
90 public abstract Channel[] getEnergyMeterInfo(); in getEnergyMeterInfo()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/kotlin/
H A DIpcSerializer.kt21 import kotlinx.coroutines.channels.Channel
55 private val channel = Channel<Pair<CompletableDeferred<Unit>, Job>>()
/aosp14/frameworks/base/core/java/android/hardware/
H A DSensorDirectChannel.java26 import java.nio.channels.Channel;
37 public final class SensorDirectChannel implements Channel {
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/
H A DSceneTransitionLayoutImpl.kt40 import kotlinx.coroutines.channels.Channel
117 val channel = remember { Channel<SceneKey>(Channel.CONFLATED) }
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/powerstats/
H A DPowerStatsServiceTest.java24 import android.hardware.power.stats.Channel;
250 public Channel[] getEnergyMeterInfo() { in getEnergyMeterInfo()
251 Channel[] energyMeterList = new Channel[ENERGY_METER_COUNT]; in getEnergyMeterInfo()
253 energyMeterList[i] = new Channel(); in getEnergyMeterInfo()
764 Channel[] channels = powerStatsHALWrapper.getEnergyMeterInfo(); in testDataStorageDeletedMeterMismatch()
784 Channel[] channels = powerStatsHALWrapper.getEnergyMeterInfo(); in testDataStorageDeletedModelMismatch()
856 Channel[] channels = powerStatsHALWrapper.getEnergyMeterInfo(); in testDataStorageDeletedResidencyMismatch()
961 Channel[] channels = powerStatsHALWrapper.getEnergyMeterInfo(); in testDataStorageNotDeletedAllDataMatches()
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/power/stats/
H A DBatteryExternalStatsWorkerTest.java32 import android.hardware.power.stats.Channel;
270 public Channel[] getEnergyMeterInfo() { in getEnergyMeterInfo()
271 return new Channel[0]; in getEnergyMeterInfo()
/aosp14/frameworks/base/core/proto/android/server/
H A Dpowerstatsservice.proto222 * Channel information:
228 * the index returned in Channel.
235 /** Name of the subsystem associated with this Channel. Opaque to framework */
246 * the index returned in Channel.
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/log/table/
H A DTableLogBuffer.kt32 import kotlinx.coroutines.channels.Channel
95 private val logMessageChannel = Channel<TableChange>(capacity = 10)
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DEventLogTags.logtags69 31008 wm_set_keyguard_occluded (occluded|1),(animate|1),(transit|1),(Channel|3)
/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DWifiDisplayController.java38 import android.net.wifi.p2p.WifiP2pManager.Channel;
98 private Channel mWifiP2pChannel;
/aosp14/frameworks/base/core/api/
H A Dremoved.txt210 public final class SensorDirectChannel implements java.nio.channels.Channel {
/aosp14/frameworks/base/packages/CredentialManager/
H A Dprofile.txt.prof235 …ateAsStateKt$animateValueAsState$2;-><init>(Lkotlinx/coroutines/channels/Channel;Ljava/lang/Object…
6795 …/ui/platform/GlobalSnapshotManager$ensureStarted$2;-><init>(Lkotlinx/coroutines/channels/Channel;)V
10194 HSPLkotlinx/coroutines/channels/Channel$Factory;-><clinit>()V
10195 HSPLkotlinx/coroutines/channels/Channel$Factory;-><init>()V
10197 HSPLkotlinx/coroutines/channels/Channel;-><clinit>()V
10198 …nelCoroutine;-><init>(Lkotlin/coroutines/CoroutineContext;Lkotlinx/coroutines/channels/Channel;ZZ)V
10201 …->Channel$default(ILkotlinx/coroutines/channels/BufferOverflow;Lkotlin/jvm/functions/Function1;ILj…
10202 …ls/ChannelKt;->Channel(ILkotlinx/coroutines/channels/BufferOverflow;Lkotlin/jvm/functions/Function…
10229 …ducerCoroutine;-><init>(Lkotlin/coroutines/CoroutineContext;Lkotlinx/coroutines/channels/Channel;)V
13458 Lkotlinx/coroutines/channels/Channel$Factory;
[all …]

12