Searched defs:SIZE (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/base/core/java/android/provider/
H A DOpenableColumns.java36 public static final String SIZE = "_size"; field in interface:OpenableColumns
H A DDrmStore.java68 public static final String SIZE = "_size"; field in interface:DrmStore.Columns
164 values.put(DrmStore.Columns.SIZE, size);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DVoiceMailConstants.java47 static final int SIZE = 3; field in class:VoiceMailConstants
101 String[] data = new String[SIZE];
/frameworks/base/libs/ui/
H A DGraphicBufferAllocator.cpp59 const size_t SIZE = 512; local
60 char buffer[SIZE];
61 snprintf(buffer, SIZE, "Allocated buffers:\n");
66 snprintf(buffer, SIZE, "%10p: %7.2f KiB | %4u (%4u) x %4u | %2d | 0x%08x\n",
72 snprintf(buffer, SIZE, "Total allocated: %.2f KB\n", total/1024.0f);
/frameworks/base/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp78 const size_t SIZE = 256; local
79 char buffer[SIZE];
H A DStagefrightRecorder.cpp1246 const size_t SIZE = 256; local
1247 char buffer[SIZE];
1252 snprintf(buffer, SIZE, " No file writer\n");
1255 snprintf(buffer, SIZE, " Recorder: %p\n", this);
1256 snprintf(buffer, SIZE, " Output file (fd %d):\n", mOutputFd);
1258 snprintf(buffer, SIZE, " File format: %d\n", mOutputFormat);
1260 snprintf(buffer, SIZE, " Max file size (bytes): %lld\n", mMaxFileSizeBytes);
1262 snprintf(buffer, SIZE, " Max file duration (us): %lld\n", mMaxFileDurationUs);
1264 snprintf(buffer, SIZE, " File offset length (bits): %d\n", mUse64BitFileOffset? 64: 32);
1266 snprintf(buffer, SIZE, " Interleav
[all...]
/frameworks/base/media/libstagefright/codecs/aacenc/Tools/
H A Declair.mk50 SIZE:=$(CCTPRE)size macro
/frameworks/base/services/audioflinger/
H A DAudioHardwareInterface.cpp169 const size_t SIZE = 256; local
170 char buffer[SIZE];
172 snprintf(buffer, SIZE, "AudioHardwareBase::dumpState\n");
174 snprintf(buffer, SIZE, "\tmMode: %d\n", mMode);
H A DAudioHardwareGeneric.cpp166 const size_t SIZE = 256; local
167 char buffer[SIZE];
170 snprintf(buffer, SIZE, "\tmFd: %d mMicMute: %s\n", mFd, mMicMute? "true": "false");
245 const size_t SIZE = 256; local
246 char buffer[SIZE];
248 snprintf(buffer, SIZE, "AudioStreamOutGeneric::dump\n");
250 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
252 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize());
254 snprintf(buffer, SIZE, "\tchannels: %d\n", channels());
256 snprintf(buffer, SIZE, "\tforma
353 const size_t SIZE = 256; local
[all...]
H A DAudioHardwareStub.cpp101 const size_t SIZE = 256; local
102 char buffer[SIZE];
105 snprintf(buffer, SIZE, "\tmMicMute: %s\n", mMicMute? "true": "false");
142 const size_t SIZE = 256; local
143 char buffer[SIZE];
145 snprintf(buffer, SIZE, "AudioStreamOutStub::dump\n");
146 snprintf(buffer, SIZE, "\tsample rate: %d\n", sampleRate());
147 snprintf(buffer, SIZE, "\tbuffer size: %d\n", bufferSize());
148 snprintf(buffer, SIZE, "\tchannels: %d\n", channels());
149 snprintf(buffer, SIZE, "\tforma
184 const size_t SIZE = 256; local
[all...]
H A DAudioPolicyManagerBase.cpp919 const size_t SIZE = 256; local
920 char buffer[SIZE];
923 snprintf(buffer, SIZE, "\nAudioPolicyManager Dump: %p\n", this);
925 snprintf(buffer, SIZE, " Hardware Output: %d\n", mHardwareOutput);
928 snprintf(buffer, SIZE, " A2DP Output: %d\n", mA2dpOutput);
930 snprintf(buffer, SIZE, " Duplicated Output: %d\n", mDuplicatedOutput);
932 snprintf(buffer, SIZE, " A2DP device address: %s\n", mA2dpDeviceAddress.string());
935 snprintf(buffer, SIZE, " SCO device address: %s\n", mScoDeviceAddress.string());
937 snprintf(buffer, SIZE, " Output devices: %08x\n", mAvailableOutputDevices);
939 snprintf(buffer, SIZE, " Inpu
1065 const size_t SIZE = 256; local
2063 const size_t SIZE = 256; local
2100 const size_t SIZE = 256; local
2136 const size_t SIZE = 256; local
[all...]
H A DAudioPolicyService.cpp406 const size_t SIZE = 256; local
407 char buffer[SIZE];
410 snprintf(buffer, SIZE, "PolicyManager Interface: %p\n", mpPolicyManager);
412 snprintf(buffer, SIZE, "Command Thread: %p\n", mAudioCommandThread.get());
414 snprintf(buffer, SIZE, "Tones Thread: %p\n", mTonePlaybackThread.get());
451 const size_t SIZE = 256; local
452 char buffer[SIZE];
454 snprintf(buffer, SIZE, "Permission Denial: "
749 const size_t SIZE = 256; local
750 char buffer[SIZE];
[all...]
/frameworks/base/services/sensorservice/
H A DSensorDevice.cpp129 void SensorDevice::dump(String8& result, char* buffer, size_t SIZE) argument
135 snprintf(buffer, SIZE, "%d h/w sensors:\n", int(count));
140 snprintf(buffer, SIZE, "handle=0x%08x, active-count=%d\n",
H A DSensorService.cpp121 const size_t SIZE = 1024; local
122 char buffer[SIZE];
125 snprintf(buffer, SIZE, "Permission Denial: "
132 snprintf(buffer, SIZE, "Sensor List:\n");
137 snprintf(buffer, SIZE, "%-48s| %-32s | 0x%08x | maxRate=%7.2fHz | last=<%5.1f,%5.1f,%5.1f>\n",
145 SensorDevice::getInstance().dump(result, buffer, SIZE);
147 snprintf(buffer, SIZE, "%d active connections\n",
150 snprintf(buffer, SIZE, "Active sensors:\n");
154 snprintf(buffer, SIZE, "%s (handle=0x%08x, connections=%d)\n",
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabasePerformanceTests.java197 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf1Test
199 private String[] statements = new String[SIZE];
206 for (int i = 0; i < SIZE; i++) {
219 for (int i = 0; i < SIZE; i++) {
230 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf2Test
232 private String[] statements = new String[SIZE];
239 for (int i = 0; i < SIZE; i++) {
253 for (int i = 0; i < SIZE; i++) {
264 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf3Test
267 private String[] where = new String[SIZE];
304 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf4Test
342 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf5Test
383 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf6Test
421 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf7Test
461 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf8Test
501 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf9Test
553 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf10Test
592 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf11Test
626 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf12Test
660 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf13Test
693 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf14Test
726 private static final int SIZE = 100; field in class:DatabasePerformanceTests.Perf15Test
767 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf16Test
800 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf17Test
832 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf18Test
869 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf19Test
907 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf20Test
951 private static final int SIZE = 1000; field in class:DatabasePerformanceTests.Perf21Test
993 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf22Test
1025 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf23Test
1058 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf24Test
1090 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf25Test
1124 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf26Test
1162 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf27Test
1201 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf28Test
1235 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf29Test
1273 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf30Test
1310 private static final int SIZE = 10000; field in class:DatabasePerformanceTests.Perf31Test
[all...]
H A DNewDatabasePerformanceTests.java108 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.Insert1000
110 private String[] statements = new String[SIZE];
117 for (int i = 0; i < SIZE; i++) {
129 for (int i = 0; i < SIZE; i++) {
140 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertIndexed1000
142 private String[] statements = new String[SIZE];
149 for (int i = 0; i < SIZE; i++) {
162 for (int i = 0; i < SIZE; i++) {
173 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.Select100
176 private String[] where = new String[SIZE];
212 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringComparison100
249 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIndex100
289 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.InnerJoin100
326 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.InnerJoinOneSide100
365 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.InnerJoinNoIndex100
404 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectSubQIndex100
455 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIndexStringComparison100
493 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectInteger100
526 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectString100
559 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIntegerIndex100
591 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIndexString100
623 private static final int SIZE = 1 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringStartsWith100
663 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.DeleteIndexed1000
695 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.Delete1000
726 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.DeleteWhere1000
762 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.DeleteIndexWhere1000
799 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.UpdateIndexWhere1000
842 private static final int SIZE = 10 * kMultiplier; field in class:NewDatabasePerformanceTests.UpdateWhere1000
883 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertInteger10000
914 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertIntegerIndex10000
946 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertString10000
977 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.InsertStringIndexed10000
1010 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringStartsWith10000
1048 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringIndexedStartsWith10000
1086 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectInteger10000
1119 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectIntegerIndexed10000
1156 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringContains10000
1193 private static final int SIZE = 100 * kMultiplier; field in class:NewDatabasePerformanceTests.SelectStringIndexedContains10000
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_BatteryService.cpp160 const int SIZE = 16; local
161 char buf[SIZE];
164 if (readFromFile(path, buf, SIZE) > 0) {
174 const int SIZE = 128; local
175 char buf[SIZE];
178 if (readFromFile(path, buf, SIZE) > 0) {
186 const int SIZE = 128; local
187 char buf[SIZE];
190 if (readFromFile(path, buf, SIZE) > 0) {
208 const int SIZE local
[all...]
/frameworks/base/libs/binder/
H A DMemoryDealer.cpp431 const size_t SIZE = 256; local
432 char buffer[SIZE];
433 snprintf(buffer, SIZE, " %s (%p, size=%u)\n",
444 snprintf(buffer, SIZE, " %3u: %08x | 0x%08X | 0x%08X | %s %s\n",
458 snprintf(buffer, SIZE,
/frameworks/base/services/camera/libcameraservice/
H A DCameraHardwareStub.cpp320 const size_t SIZE = 256; local
321 char buffer[SIZE];
H A DFakeCamera.cpp424 const size_t SIZE = 256; local
425 char buffer[SIZE];
H A DCameraService.cpp1242 const size_t SIZE = 256; local
1243 char buffer[SIZE];
1246 snprintf(buffer, SIZE, "Permission Denial: "
/frameworks/base/libs/surfaceflinger_client/
H A DSharedBufferStack.cpp195 const size_t SIZE = 1024; local
196 char buffer[SIZE];
199 snprintf(buffer, SIZE,
H A DSurfaceComposerClient.cpp284 const size_t SIZE = 128; local
285 char buffer[SIZE];
286 snprintf(buffer, SIZE, "<pid_%d>", getpid());
/frameworks/base/media/libmedia/
H A DAudioTrack.cpp1070 const size_t SIZE = 256; local
1071 char buffer[SIZE];
/frameworks/base/media/libstagefright/
H A DMPEG4Writer.cpp258 const size_t SIZE = 256; local
259 char buffer[SIZE];
261 snprintf(buffer, SIZE, " MPEG4Writer %p\n", this);
263 snprintf(buffer, SIZE, " mStarted: %s\n", mStarted? "true": "false");
275 const size_t SIZE = 256; local
276 char buffer[SIZE];
278 snprintf(buffer, SIZE, " %s track\n", mIsAudio? "Audio": "Video");
280 snprintf(buffer, SIZE, " reached EOS: %s\n",

Completed in 8567 milliseconds

12