Home
last modified time | relevance | path

Searched refs:protoBytes (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/apps/TV/common/src/com/android/tv/common/compat/internal/
H A DViewCompatProcessor.java46 byte[] protoBytes = eventArgs.getByteArray(Constants.EVENT_COMPAT_NOTIFY); in sessionEventFromBundle()
47 return protoBytes == null || protoBytes.length == 0 in sessionEventFromBundle()
49 : mEventParser.parseFrom(protoBytes); in sessionEventFromBundle()
/aosp12/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/
H A DLoggingClusterRenderingService.java55 byte[] protoBytes = bundle.getByteArray(NAV_STATE_PROTO_BUNDLE_KEY); in getNavigationRenderer()
56 if (protoBytes != null) { in getNavigationRenderer()
58 NavigationStateProto navState = NavigationStateProto.parseFrom(protoBytes); in getNavigationRenderer()
H A DClusterRenderingService.java353 byte[] protoBytes = bundle.getByteArray(NAV_STATE_PROTO_BUNDLE_KEY); in getNavigationRenderer()
354 if (protoBytes != null) { in getNavigationRenderer()
357 protoBytes); in getNavigationRenderer()
/aosp12/packages/services/Car/service/src/com/android/car/cluster/
H A DClusterHomeService.java239 byte[] protoBytes = bundle.getByteArray(NAV_STATE_PROTO_BUNDLE_KEY); in onNavigationStateChanged()
241 sendNavigationState(protoBytes); in onNavigationStateChanged()
244 private void sendNavigationState(byte[] protoBytes) { in sendNavigationState() argument
250 callback.onNavigationStateChanged(protoBytes); in sendNavigationState()
261 mClusterHalService.sendNavigationState(protoBytes); in sendNavigationState()
/aosp12/packages/modules/Wifi/service/tests/mts/src/android/net/wifi/mts/
H A DWifiDumpsysMetricsTest.java74 byte[] protoBytes = Base64.decode(protoString, Base64.DEFAULT); in testWifiDumpMetrics()
76 WifiLog wifiLog = WifiLog.parseFrom(protoBytes); in testWifiDumpMetrics()
/aosp12/frameworks/base/core/java/com/android/internal/util/
H A DTraceBuffer.java96 byte[] protoBytes = protoOutputStream.getBytes(); in write()
97 os.write(protoBytes); in write()
/aosp12/packages/apps/Car/Cluster/ClusterOsDouble/src/com/android/car/cluster/osdouble/
H A DClusterOsDoubleActivity.java250 private void onClusterNavigationState(byte[] protoBytes) { in onClusterNavigationState() argument
251 if (DBG) Log.d(TAG, "onClusterNavigationState: " + Arrays.toString(protoBytes)); in onClusterNavigationState()
253 NavigationStateProto navState = NavigationStateProto.parseFrom(protoBytes); in onClusterNavigationState()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiMetricsTest.java304 byte[] protoBytes = Base64.decode(protoByteString, Base64.DEFAULT); in dumpProtoAndDeserialize()
305 mDecodedProto = WifiMetricsProto.WifiLog.parseFrom(protoBytes); in dumpProtoAndDeserialize()
322 byte[] protoBytes = Base64.decode(protoByteString, Base64.DEFAULT); in cleanDumpProtoAndDeserialize()
323 mDecodedProto = WifiMetricsProto.WifiLog.parseFrom(protoBytes); in cleanDumpProtoAndDeserialize()