/frameworks/av/include/media/nbaio/ |
H A D | PipeReader.h | 48 virtual ssize_t read(void *buffer, size_t count);
|
/frameworks/av/media/img_utils/include/img_utils/ |
H A D | ByteArrayOutput.h | 49 * Write bytes from the given buffer. The number of bytes given in the count 55 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
|
H A D | FileInput.h | 52 * of bytes given in the count argument will be read. Bytes will be written 58 virtual ssize_t read(uint8_t* buf, size_t offset, size_t count);
|
H A D | FileOutput.h | 35 virtual status_t write(const uint8_t* buf, size_t offset, size_t count);
|
/frameworks/av/media/libmedia/include/media/ |
H A D | EventMetric.h | 26 // The count of times the event occurred. 27 int64_t count; member in struct:android::EventStatistics 37 // var = sum_squared_deviation / count; 84 // Increment the count of times the operation occurred with this 91 stats->mean = stats->mean + (deviation / stats->count); 94 stats->count++; 101 stats->count = 1;
|
/frameworks/av/media/libnbaio/include/media/nbaio/ |
H A D | AudioBufferProviderSource.h | 45 virtual ssize_t read(void *buffer, size_t count);
|
H A D | Pipe.h | 57 virtual ssize_t write(const void *buffer, size_t count);
|
H A D | PipeReader.h | 48 virtual ssize_t read(void *buffer, size_t count);
|
/frameworks/av/media/libnbaio/include_mono/media/nbaio/ |
H A D | NBAIO.h | 54 // attributes, rather than a struct with separate fields for format, sample rate, channel count, 58 // Sample rate and channel count are explicit, PCM interleaved 16-bit is assumed. 73 // Convert a sample rate in Hz and channel count to an NBAIO_Format 80 // Return the channel count of an NBAIO_Format 84 typedef ssize_t (*writeVia_t)(void *user, void *buffer, size_t count); 85 typedef ssize_t (*readVia_t)(void *user, const void *buffer, size_t count); 161 // larger transfer count, however it will make a good faith effort to give an accurate estimate. 177 // count Maximum number of frames to transfer. 187 virtual ssize_t write(const void *buffer, size_t count) = 0; 196 // block Number of frames per block, that is a suggested value for 'count' i [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
H A D | ton_stab.h | 95 Word16 count; member in struct:__anon532
|
/frameworks/base/core/java/android/accessibilityservice/ |
H A D | AccessibilityButtonController.java | 159 for (int i = 0, count = entries.size(); i < count; i++) { 184 for (int i = 0, count = entries.size(); i < count; i++) {
|
/frameworks/base/core/java/android/net/metrics/ |
H A D | WakeupStats.java | 119 int count = ethertypes.valueAt(i); 120 j.add(String.format("ethertype 0x%x: %d", eth, count)); 124 int count = ipNextHeaders.valueAt(i); 125 j.add(String.format("ipNxtHdr %d: %d", proto, count));
|
/frameworks/base/core/java/com/android/internal/util/ |
H A D | ProcFileReader.java | 75 private void consumeBuf(int count) throws IOException { argument 78 System.arraycopy(mBuffer, count, mBuffer, 0, mTail - count); 79 mTail -= count;
|
/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
H A D | SoundPoolTest.java | 132 int count = mSounds.length; 133 for (int index = 0; index < count; index++) { 154 int count = mScale.length; 155 for (int step = 0; step < count; step++) { 176 int count = mScale.length; 186 for (int step = 1; step < count; step++) { 261 for (int count = 0; count < 5; count++) { 288 for (int count [all...] |
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/fuelgauge/ |
H A D | BatterySaverUtils.java | 107 final int count = 109 Secure.putInt(cr, Secure.LOW_POWER_MANUAL_ACTIVATION_COUNT, count); 113 if ((count >= parameters.startNth) 114 && (count <= parameters.endNth)
|
/frameworks/base/tests/WindowAnimationJank/src/android/windowanimationjank/ |
H A D | FlowLayout.java | 41 final int count = getChildCount(); 54 for (int i = 0; i < count; i++) { 92 final int count = getChildCount(); 97 for (int i = 0; i < count; i++) {
|
/frameworks/base/tools/aapt/ |
H A D | WorkQueue.cpp | 82 size_t count = mWorkUnits.size(); local 83 for (size_t i = 0; i < count; i++) { 107 size_t count = mWorkThreads.size(); local 108 for (size_t i = 0; i < count; i++) {
|
/frameworks/native/cmds/dumpstate/ |
H A D | DumpstateSectionReporter.cpp | 36 listener_->onSectionComplete(title_, status_, size_, (int32_t)elapsed.count());
|
/frameworks/native/include/binder/ |
H A D | Debug.h | 42 ssize_t getBinderKernelReferences(size_t count, uintptr_t* buf);
|
/frameworks/native/libs/binder/include/binder/ |
H A D | Debug.h | 42 ssize_t getBinderKernelReferences(size_t count, uintptr_t* buf);
|
/frameworks/native/services/sensorservice/ |
H A D | BatteryService.cpp | 44 info.count++; 45 return info.count == 1; 53 info.count--; 54 return info.count == 0;
|
H A D | CorrectedGyroSensor.h | 38 CorrectedGyroSensor(sensor_t const* list, size_t count);
|
H A D | GravitySensor.h | 38 GravitySensor(sensor_t const* list, size_t count);
|
H A D | LinearAccelerationSensor.h | 41 LinearAccelerationSensor(sensor_t const* list, size_t count);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
H A D | FakeSmsContentProvider.java | 57 "count INTEGER," + // the number of parts 95 int count = 0; 100 count = db.update(RAW_TABLE_NAME, cv, selection, selectionArgs); 104 count = db.delete(RAW_TABLE_NAME, selection, selectionArgs); 107 return count;
|