HomeSort by relevance Sort by last modified time
    Searched refs:DEFAULT_BUFFER_SIZE (Results 26 - 50 of 250) sorted by null

12 3 4 5 6 7 8 910

  /packages/apps/PackageInstaller/src/com/android/packageinstaller/wear/
InstallTask.java 39 private static final int DEFAULT_BUFFER_SIZE = 8192;
138 byte[] inputBuf = new byte[DEFAULT_BUFFER_SIZE];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
io.py 29 DEFAULT_BUFFER_SIZE
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
  /external/python/cpython2/Lib/
io.py 29 DEFAULT_BUFFER_SIZE
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
  /external/python/cpython3/Lib/
io.py 29 DEFAULT_BUFFER_SIZE
54 from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
  /external/icu/icu4c/source/test/cintltst/
bocu1tst.c 875 static const int32_t DEFAULT_BUFFER_SIZE = 30000;
887 roundtripRef = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
888 roundtripICU = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
889 bocu1Ref = malloc(DEFAULT_BUFFER_SIZE);
890 bocu1ICU = malloc(DEFAULT_BUFFER_SIZE);
896 bocu1ICULength=ucnv_fromUChars(bocu1, bocu1ICU, DEFAULT_BUFFER_SIZE, text, length, &errorCode);
913 roundtripICULength=ucnv_toUChars(bocu1, roundtripICU, DEFAULT_BUFFER_SIZE, bocu1ICU, bocu1ICULength, &errorCode);
992 text = malloc(DEFAULT_BUFFER_SIZE * sizeof(UChar));
  /libcore/ojluni/src/main/java/java/io/
BufferedInputStream.java 54 private static final int DEFAULT_BUFFER_SIZE = 8192;
185 this(in, DEFAULT_BUFFER_SIZE);
  /external/python/cpython3/Modules/_io/clinic/
bufferedio.c.h 314 "BufferedReader(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n"
330 Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
343 "BufferedWriter(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n"
350 "DEFAULT_BUFFER_SIZE.");
363 Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
407 "BufferedRWPair(reader, writer, buffer_size=DEFAULT_BUFFER_SIZE, /)\n"
418 "DEFAULT_BUFFER_SIZE.");
430 Py_ssize_t buffer_size = DEFAULT_BUFFER_SIZE;
447 "BufferedRandom(raw, buffer_size=DEFAULT_BUFFER_SIZE)\n"
454 "defaults to DEFAULT_BUFFER_SIZE.")
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
IpConnectivityMetrics.java 73 private static final int DEFAULT_BUFFER_SIZE = 2000;
75 private static final int MAXIMUM_BUFFER_SIZE = DEFAULT_BUFFER_SIZE * 10;
358 Settings.Global.CONNECTIVITY_METRICS_BUFFER_SIZE, DEFAULT_BUFFER_SIZE);
360 return DEFAULT_BUFFER_SIZE;
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUsbALSA.h 42 #define DEFAULT_BUFFER_SIZE 2048
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.h 66 #define DEFAULT_BUFFER_SIZE (8 * 1024) /* bytes */
_iomodule.c 85 "DEFAULT_BUFFER_SIZE\n"
233 " \"block size\" and falling back on `io.DEFAULT_BUFFER_SIZE`.\n"
447 buffering = DEFAULT_BUFFER_SIZE;
657 /* DEFAULT_BUFFER_SIZE */
658 if (PyModule_AddIntMacro(m, DEFAULT_BUFFER_SIZE) < 0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.h 61 #define DEFAULT_BUFFER_SIZE (8 * 1024) /* bytes */
_iomodule.c 85 "DEFAULT_BUFFER_SIZE\n"
233 " \"block size\" and falling back on `io.DEFAULT_BUFFER_SIZE`.\n"
445 buffering = DEFAULT_BUFFER_SIZE;
648 /* DEFAULT_BUFFER_SIZE */
649 if (PyModule_AddIntMacro(m, DEFAULT_BUFFER_SIZE) < 0)
  /external/python/cpython2/Modules/_io/
_iomodule.h 71 #define DEFAULT_BUFFER_SIZE (8 * 1024) /* bytes */
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Process.java 38 private static final int DEFAULT_BUFFER_SIZE = 8192;
127 mIn = new StreamGobbler(new FileInputStream(mFd), mLog, DEFAULT_BUFFER_SIZE);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Internal.java 356 private static final int DEFAULT_BUFFER_SIZE = 4096;
370 final int bufferSize = bytes.capacity() > DEFAULT_BUFFER_SIZE
371 ? DEFAULT_BUFFER_SIZE : bytes.capacity();
  /external/skia/src/gpu/ops/
GrAALinearizingConvexPathRenderer.cpp 26 static const int DEFAULT_BUFFER_SIZE = 100;
260 int maxVertices = DEFAULT_BUFFER_SIZE;
261 int maxIndices = DEFAULT_BUFFER_SIZE;
  /external/skqp/src/gpu/ops/
GrAALinearizingConvexPathRenderer.cpp 26 static const int DEFAULT_BUFFER_SIZE = 100;
260 int maxVertices = DEFAULT_BUFFER_SIZE;
261 int maxIndices = DEFAULT_BUFFER_SIZE;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 121 private static final int DEFAULT_BUFFER_SIZE = 1024 * 4;
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
Transport.java 62 private int bufferLength = ServiceConnection.DEFAULT_BUFFER_SIZE;
  /external/python/cpython3/Modules/_io/
_iomodule.h 78 #define DEFAULT_BUFFER_SIZE (8 * 1024) /* bytes */
  /external/guice/extensions/persist/lib/
jboss-archive-browsing.jar 
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 53 private static final int DEFAULT_BUFFER_SIZE = 1 * 1024 * 1024;
169 bufferSize = DEFAULT_BUFFER_SIZE;
  /external/icu/icu4c/source/i18n/
ucoleitr.cpp 36 #define DEFAULT_BUFFER_SIZE 16
56 RCEI defaultBuffer[DEFAULT_BUFFER_SIZE];
  /external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
CodedOutputStreamMicro.java 61 public static final int DEFAULT_BUFFER_SIZE = 4096;
83 return newInstance(output, DEFAULT_BUFFER_SIZE);
    [all...]

Completed in 1355 milliseconds

12 3 4 5 6 7 8 910