/frameworks/layoutlib/bridge/src/dalvik/system/ |
D | VMRuntime_Delegate.java | 39 int bytes = 20 + (2 * minLength); in newUnpaddedArray() local 48 int bytes = 20 + minLength; in newUnpaddedArray() local 54 int bytes = 20 + minLength; in newUnpaddedArray() local 60 int bytes = 20 + (2 * minLength); in newUnpaddedArray() local
|
/frameworks/base/core/java/android/bluetooth/ |
D | UidTraffic.java | 54 public void setRxBytes(long bytes) { in setRxBytes() 58 public void setTxBytes(long bytes) { in setTxBytes() 62 public void addRxBytes(long bytes) { in addRxBytes() 66 public void addTxBytes(long bytes) { in addTxBytes()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/ |
D | AudioSample.java | 23 public final byte[] bytes; field in AudioSample 25 public AudioSample(int sampleRate, int channelCount, byte[] bytes) { in AudioSample()
|
/frameworks/rs/ |
D | rsFifoSocket.cpp | 52 bool FifoSocket::writeAsync(const void *data, size_t bytes, bool waitForSpace) { in writeAsync() 76 size_t FifoSocket::read(void *data, size_t bytes) { in read() 101 void FifoSocket::readReturn(const void *data, size_t bytes) { in readReturn()
|
D | rsThreadIO.h | 70 uint32_t bytes; member 74 uint32_t bytes; member
|
/frameworks/native/libs/binder/tests/ |
D | binderAllocationLimits.cpp | 67 static void* lambda_malloc_hook(size_t bytes, const void* arg) { in lambda_malloc_hook() 76 static void* lambda_realloc_hook(void* ptr, size_t bytes, const void* arg) { in lambda_realloc_hook() 106 const auto on_malloc = OnMalloc([&](size_t bytes) { in TEST() 119 return OnMalloc([&](size_t bytes) { in ScopeDisallowMalloc() 168 const auto on_malloc = OnMalloc([&](size_t bytes) { in TEST()
|
/frameworks/opt/net/voip/src/jni/rtp/ |
D | AmrCodec.cpp | 102 unsigned char *bytes = (unsigned char *)payload; in encode() local 133 unsigned char *bytes = (unsigned char *)payload; in decode() local 226 unsigned char *bytes = (unsigned char *)payload; in encode() local 244 unsigned char *bytes = (unsigned char *)payload; in decode() local
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
D | NativeUtil.java | 249 public static String bytesToHexOrQuotedString(ArrayList<Byte> bytes) { in bytesToHexOrQuotedString() 303 public static ArrayList<Byte> byteArrayToArrayList(byte[] bytes) { in byteArrayToArrayList() 314 public static byte[] byteArrayFromArrayList(ArrayList<Byte> bytes) { in byteArrayFromArrayList() 342 public static String hexStringFromByteArray(byte[] bytes) { in hexStringFromByteArray()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | PulledStatsTest.java | 57 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); in testPulledStats_UnknownReport() local 77 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); in testPulledStats_RemoteViewReportPackages() local
|
/frameworks/base/core/tests/coretests/src/android/text/format/ |
D | FormatterTest.java | 219 private void checkFormatBytes(long bytes, boolean useShort, in checkFormatBytes() 225 private void checkFormatBytes(long bytes, int flags, in checkFormatBytes()
|
/frameworks/native/libs/binder/ |
D | IpPrefix.cpp | 55 const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&mUnion.mIn6Addr); in writeToParcel() local 58 const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&mUnion.mInAddr); in writeToParcel() local
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/ |
D | DataUsageDetailView.java | 68 final long bytes; in bind() local 126 private String formatBytes(long bytes) { in formatBytes()
|
/frameworks/base/apct-tests/perftests/core/src/android/database/ |
D | SQLiteDatabaseIoPerfTest.java | 103 long bytes = endMeasuringWrites(); in testDatabaseModifications() local 129 long bytes = endMeasuringWrites(); in testInsertsWithTransactions() local
|
/frameworks/base/core/java/android/util/ |
D | Base64InputStream.java | 103 long bytes = Math.min(n, outputEnd-outputStart); in skip() local 126 int bytes = Math.min(len, outputEnd-outputStart); in read() local
|
/frameworks/base/core/java/com/android/internal/util/ |
D | BitUtils.java | 103 public static int bytesToBEInt(byte[] bytes) { in bytesToBEInt() 110 public static int bytesToLEInt(byte[] bytes) { in bytesToLEInt() 126 public static void put(ByteBuffer buffer, int position, byte[] bytes) { in put()
|
D | CharSequences.java | 32 public static CharSequence forAsciiBytes(final byte[] bytes) { in forAsciiBytes()
|
/frameworks/base/services/backup/java/com/android/server/backup/encryption/chunking/ |
D | BackupWriter.java | 24 void writeBytes(byte[] bytes) throws IOException; in writeBytes()
|
D | RawBackupWriter.java | 33 public void writeBytes(byte[] bytes) throws IOException { in writeBytes()
|
/frameworks/base/telephony/common/com/google/android/mms/pdu/ |
D | QuotedPrintable.java | 42 public static final byte[] decodeQuotedPrintable(byte[] bytes) { in decodeQuotedPrintable()
|
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/ |
D | TestMtpManager.java | 61 void setImportFileBytes(int deviceId, int objectHandle, byte[] bytes) { in setImportFileBytes() 62 mImportFileBytes.put(pack(deviceId, objectHandle), bytes); in setImportFileBytes() local 69 void setThumbnail(int deviceId, int objectHandle, byte[] bytes) { in setThumbnail() 70 mThumbnailBytes.put(pack(deviceId, objectHandle), bytes); in setThumbnail() local
|
/frameworks/ml/nn/common/ |
D | TokenHasher.cpp | 39 bool TokenHasher::update(const void* bytes, size_t length) { in update()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | ByteBufferInputStream.java | 39 public int read(byte[] bytes, int off, int len) { in read()
|
/frameworks/libs/net/common/hostdevice/com/android/testutils/ |
D | PacketFilter.kt | 36 class OffsetFilter(val offset: Int, vararg val bytes: Byte) : Predicate<ByteArray> { constant in com.android.testutils.OffsetFilter 64 class DhcpOptionFilter(val option: Byte, vararg val bytes: Byte) : Predicate<ByteArray> { constant in com.android.testutils.DhcpOptionFilter
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | ShortcutBitmapSaver.java | 89 public final byte[] bytes; field in ShortcutBitmapSaver.PendingItem 94 private PendingItem(ShortcutInfo shortcut, byte[] bytes) { in PendingItem()
|
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
D | TestClassLoader.java | 32 TestClassLoader(String name, byte[] bytes) { in TestClassLoader()
|