HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1476 - 1500 of 3019) sorted by null

<<51525354555657585960>>

  /system/core/cpio/
mkbootfs.c 87 static void _eject(struct stat *s, char *out, int olen, char *data, unsigned datasize)
99 fix_stat(out, s);
100 // fprintf(stderr, "_eject %s: mode=0%o\n", out, s->st_mode);
118 out,
124 if(strlen(out) != (unsigned int)olen) die("ACK!");
149 static void _archive(char *in, char *out, int ilen, int olen);
155 static void _archive_dir(char *in, char *out, int ilen, int olen)
163 in, out, ilen, olen);
210 out[olen] = '/';
211 memcpy(out + olen + 1, names[i], t + 1)
274 char out[8192]; local
    [all...]
  /system/core/fastboot/
usb_linux.c 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
60 * under 2 seconds) but we'll time out after 3 seconds just in case.
124 int in, out; local
197 out = -1;
224 out = ept->bEndpointAddress;
229 info.has_bulk_out = (out != -1);
233 *ept_out_id = out;
306 int n, in, out, ifc; local
335 &in, &out, &ifc) == 0) {
339 usb->ep_out = out;
    [all...]
  /system/core/fastbootd/other/sign/src/
SignImg.java 133 System.out.println("Usage: signimg data private_key certificate output");
136 System.out.println("Signing the image");
142 System.out.println("File read sucessfully");
147 System.out.println("Content read sucessfully");
150 System.out.println("Certificate read sucessfully");
163 System.out.println("Signed");
172 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
178 System.out.println("Exception during programm execution: " + ex.getMessage());
  /system/core/init/
bootchart.c 125 FILE* out; local
135 out = fopen( LOG_HEADER, "w" );
136 if (out == NULL)
151 fprintf(out, "version = %s\n", VERSION);
152 fprintf(out, "title = Boot chart for Android ( %s )\n", date);
153 fprintf(out, "system.uname = %s\n", uname);
154 fprintf(out, "system.release = 0.0\n");
155 fprintf(out, "system.cpu = %s\n", cpu);
156 fprintf(out, "system.kernel.options = %s\n", cmdline);
157 fclose(out);
    [all...]
  /system/core/libcutils/
str_parms.c 300 float out; local
308 out = strtof(value, &end);
312 *val = out;
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.c 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
78 IO in, out; /* input/output state */ variable
179 if (out.name == NULL) {
181 out.fd = STDOUT_FILENO;
182 out.name = "stdout";
183 out.ops = &ddfops_stdfd;
185 out.ops = prog_ops;
188 out.fd = ddop_open(out, out.name, O_RDWR | OFLAGS, DEFFILEMODE)
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 339 public void writeToParcel(Parcel out, int flags) {
340 out.writeInt(TAG);
341 out.writeInt(this.viewId);
342 out.writeInt(this.emptyViewId);
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkPolicyManagerService.java 1379 XmlSerializer out = new FastXmlSerializer(); local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 577 ByteArrayOutputStream out; local
580 out = new ByteArrayOutputStream();
581 xml.setOutput(out, "utf-8");
591 final InputStream in = new ByteArrayInputStream(out.toByteArray());
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 285 // we ran out of samples without ever signaling EOS to the codec,
437 ParcelFileDescriptor out = ParcelFileDescriptor.open(new File(tmpFile), local
442 out.getFd(), webm));
450 remux.setDataSource(out.getFileDescriptor());
479 int out, boolean webm);
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 202 File file = getContext().getFileStreamPath("dump.out");
206 FileOutputStream out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE); local
207 assertFalse(Debug.dumpService("xyzzy -- not a valid service name", out.getFD(), null));
208 out.close();
214 out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE);
215 assertTrue(Debug.dumpService(Context.POWER_SERVICE, out.getFD(), null));
216 out.close();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 247 stream = System.out;
324 if (stream != System.out)
418 if (stream == null) stream = System.out;
451 OutputStream out = null; local
453 out = new BufferedOutputStream(new FileOutputStream(outputFile));
454 il.save(out, SWT.IMAGE_GIF);
460 if (out != null) {
462 out.close();
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 111 final OutputStream out = new FileOutputStream (getFullOutFile (parentDir, archive, IN_LIB)); local
113 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out);
137 final OutputStream out = new FileOutputStream (m_tempArchiveFile); local
139 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out);
277 fnfe.printStackTrace (System.out);
448 // otherwise, instrument only if the dest file is out of date
481 // System.out.println (clsDef.getName () + " metadata:");
482 // System.out.println (profile.root ().dump (0.2))
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 65 System.out.println("Javassist version " + CtClass.version);
66 System.out.println("Copyright (C) 1999-2010 Shigeru Chiba."
258 * Returns true if the class has been loaded or written out
289 * written out. This method should be called only in a case
290 * that the class will be reloaded or written out later again.
1277 DataOutputStream out = new DataOutputStream(barray); local
1324 DataOutputStream out local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
AnalysisAdapter.java 11 private Hashtable<Node,Object> out; field in class:AnalysisAdapter
42 if(this.out == null)
47 return this.out.get(node);
52 if(this.out == null)
54 this.out = new Hashtable<Node,Object>(1);
59 this.out.put(node, o);
63 this.out.remove(node);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
778 ByteVector out = new ByteVector(size); local
779 out.putInt(0xCAFEBABE).putInt(version);
780 out.putShort(index).putByteArray(pool.data, 0, pool.length);
781 out.putShort(access).putShort(name).putShort(superName);
782 out.putShort(interfaceCount);
784 out.putShort(interfaces[i]);
786 out.putShort(nbFields);
789 fb.put(out);
792 out.putShort(nbMethods);
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 294 serverSocket.close(); // Should cause acceptConnections() to break out.
355 OutputStream out = new BufferedOutputStream(socket.getOutputStream());
357 while (processOneRequest(socket, in, out)) {
365 out.close();
388 private boolean processOneRequest(Socket socket, InputStream in, OutputStream out)
390 RecordedRequest request = readRequest(socket, in, out, sequenceNumber);
395 writeResponse(out, response);
398 out.close();
434 private RecordedRequest readRequest(Socket socket, InputStream in, OutputStream out,
468 out.write(("HTTP/1.1 100 Continue\r\n").getBytes(Util.US_ASCII))
    [all...]
  /frameworks/base/core/java/android/text/
Html.java 143 StringBuilder out = new StringBuilder(); local
144 withinHtml(out, text);
145 return out.toString();
152 StringBuilder out = new StringBuilder(); local
153 withinStyle(out, text, 0, text.length());
154 return out.toString();
157 private static void withinHtml(StringBuilder out, Spanned text) {
182 out.append("<div ").append(elements).append(">");
185 withinDiv(out, text, i, next);
188 out.append("</div>")
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
PackageManagerBackupAgent.java 285 // metadata again. In either case, take it out of mExisting so that
443 private static void writeSignatureHashArray(DataOutputStream out, ArrayList<byte[]> hashes)
446 out.writeInt(hashes.size());
450 out.writeInt(buffer.length);
451 out.write(buffer);
507 // Util: parse out an existing state file into a usable structure
594 // Util: write out our new backup state file
599 DataOutputStream out = new DataOutputStream(outbuf); local
604 out.writeUTF(STATE_FILE_HEADER);
605 out.writeInt(STATE_FILE_VERSION)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 217 * a. If a best configuration was computed, write it out to disk for
256 // will be zero'd out so there's no need to waste time applying blending
325 * will then be saved out to disk for debugging purposes.
354 FileOutputStream out = new FileOutputStream(dataFile); local
355 mAtlasBitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
356 out.close();
469 * and save the result out to disk.
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 422 * Zero out the buffer from last time
452 System.out.print((char)data);
456 System.out.println();
504 // Bomb out if stream closes prematurely
573 // Bomb out if stream closes prematurely
687 // Write out the data
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 262 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
263 AsciiHprofWriter.write(hprofData, out);
264 assertFalse(out.toByteArray().length == 0);
273 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
274 BinaryHprofWriter.write(hprofData, out);
275 out.close();
277 byte[] bytes = out.toByteArray();
284 System.out.println("Wrote binary hprof data to " + file);

Completed in 669 milliseconds

<<51525354555657585960>>