Searched refs:offsetInShorts (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/media/java/android/media/ |
D | AudioRecord.java | 1304 public int read(@NonNull short[] audioData, int offsetInShorts, int sizeInShorts) { in read() argument 1305 return read(audioData, offsetInShorts, sizeInShorts, READ_BLOCKING); in read() 1334 public int read(@NonNull short[] audioData, int offsetInShorts, int sizeInShorts, in read() argument 1345 if ( (audioData == null) || (offsetInShorts < 0 ) || (sizeInShorts < 0) in read() 1346 || (offsetInShorts + sizeInShorts < 0) // detect integer overflow in read() 1347 || (offsetInShorts + sizeInShorts > audioData.length)) { in read() 1351 return native_read_in_short_array(audioData, offsetInShorts, sizeInShorts, in read() 2014 int offsetInShorts, int sizeInShorts, boolean isBlocking); in native_read_in_short_array() argument
|
D | AudioTrack.java | 2953 public int write(@NonNull short[] audioData, int offsetInShorts, int sizeInShorts) { in write() argument 2954 return write(audioData, offsetInShorts, sizeInShorts, WRITE_BLOCKING); in write() 2997 public int write(@NonNull short[] audioData, int offsetInShorts, int sizeInShorts, in write() argument 3009 if ( (audioData == null) || (offsetInShorts < 0 ) || (sizeInShorts < 0) in write() 3010 || (offsetInShorts + sizeInShorts < 0) // detect integer overflow in write() 3011 || (offsetInShorts + sizeInShorts > audioData.length)) { in write() 3019 final int ret = native_write_short(audioData, offsetInShorts, sizeInShorts, mAudioFormat, in write() 4088 int offsetInShorts, int sizeInShorts, int format, in native_write_short() argument
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |