HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 626 - 650 of 4560) sorted by null

<<21222324252627282930>>

  /libcore/ojluni/src/main/java/java/util/logging/
FileHandler.java 41 * limit, it is closed, rotated out, and a new file opened.
46 * record is flushed out when it is complete.
137 OutputStream out; field in class:FileHandler.MeteredStream
140 MeteredStream(OutputStream out, int written) {
141 this.out = out;
146 out.write(b);
151 out.write(buff);
156 out.write(buff,off,len);
161 out.flush()
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
ImageRecord.java 79 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
80 bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
81 byte[] content = out.toByteArray();
  /prebuilts/go/darwin-x86/src/runtime/
vlop_arm.s 23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
186 // laid out here as little-endian uint32s
305 B out
309 out: label
  /prebuilts/go/linux-x86/src/runtime/
vlop_arm.s 23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
186 // laid out here as little-endian uint32s
305 B out
309 out: label
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
field_mask_util.h 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
51 static void FromString(StringPiece str, FieldMask* out);
57 static bool ToJsonString(const FieldMask& mask, string* out);
58 static bool FromJsonString(StringPiece str, FieldMask* out);
86 static void GetFieldMaskForAllFields(FieldMask* out) {
87 InternalGetFieldMaskForAllFields(T::descriptor(), out); local
95 static void ToCanonicalForm(const FieldMask& mask, FieldMask* out);
99 FieldMask* out);
103 FieldMask* out);
148 FieldMask* out);
    [all...]
  /system/core/gatekeeperd/
IGateKeeperService.cpp 51 uint8_t *out = NULL; local
55 desiredPasswordSize, &out, &outSize);
59 if (ret == 0 && outSize > 0 && out != NULL) {
65 memcpy(buf, out, outSize);
66 delete[] out;
122 uint8_t *out = NULL; local
127 &out, &outSize, &request_reenroll);
130 if (ret == 0 && outSize > 0 && out != NULL) {
136 memcpy(buf, out, outSize);
137 delete[] out;
    [all...]
  /system/security/keystore/
blob.cpp 131 int out = local
133 if (out < 0) {
137 size_t writtenBytes = writeFully(out, (uint8_t*)&mBlob, fileLength);
138 if (close(out) != 0) {
  /cts/common/host-side/manifest-generator/src/com/android/compatibility/common/generator/
ManifestGenerator.java 77 FileOutputStream out = null; local
79 out = new FileOutputStream(output);
80 generate(out, pkgName, instrumentName, minSdk, targetSdk, permissions, activities);
84 if (out != null) {
86 out.close();
94 /*package*/ static void generate(OutputStream out, String pkgName, String instrumentName,
99 serializer.setOutput(out, "UTF-8");
129 out.flush();
  /cts/hostsidetests/devicepolicy/app/PackageInstaller/src/com/android/cts/packageinstaller/
BasePackageInstallTest.java 161 OutputStream out = mSession.openWrite("SilentPackageInstallerTest", 0, file.length()); local
165 out.write(buffer, 0, c);
167 mSession.fsync(out);
168 out.close();
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 71 * public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException {
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
123 private final Writer out; field in class:JsonWriter
142 * Creates a new instance that writes a JSON-encoded stream to {@code out}.
146 public JsonWriter(Writer out) {
147 if (out == null) {
148 throw new NullPointerException("out == null");
150 this.out = out;
216 out.write(openBracket)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 99 ByteArrayOutputStream out = new ByteArrayOutputStream(1024); local
103 out.write(buffer, 0, len);
106 out.close();
107 return out.toByteArray();
  /cts/tests/tests/media/src/android/media/cts/
MediaScannerNotificationTest.java 101 FileOutputStream out = new FileOutputStream(foo); local
102 out.write(0x12);
103 out.flush();
104 out.close();
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 107 FileOutputStream out = new FileOutputStream(sampleFile); local
108 out.write(new byte[] { 0x01, 0x02 });
109 out.close();
  /cts/tests/tests/util/src/android/util/cts/
StrictJarFileTest.java 204 FileOutputStream out = new FileOutputStream(dest); local
208 out.write(buffer, 0, c);
210 out.close();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
JPDADebuggeeSynchronizer.java 45 * TCP/IP sockets. All operations can be timed out according to default timeout.
57 protected DataOutputStream out; field in class:JPDADebuggeeSynchronizer
88 out.writeUTF(message);
89 out.flush();
221 out = new DataOutputStream(clientSocket.getOutputStream());
241 out = new DataOutputStream(clientSocket.getOutputStream());
255 if (out != null)
256 out.close();
  /external/apache-harmony/support/src/test/java/tests/support/resource/
Support_Resources.java 106 FileOutputStream out = new FileOutputStream(dest); local
110 out.write(buf, 0, result);
113 out.close();