Searched refs:out (Results 1 - 25 of 65) sorted by relevance

123

/development/tools/jdwpspy/
H A DMain.cpp37 char out[77]; /* exact fit */ local
48 memset(out, ' ', sizeof(out)-1);
49 out[8] = ':';
50 out[sizeof(out)-2] = '\n';
51 out[sizeof(out)-1] = '\0';
56 char* hex = out;
57 char* asc = out
[all...]
/development/tools/idegen/src/
H A DFiles.java44 FileWriter out = new FileWriter(file);
45 out.write(contents);
46 out.close();
H A DLog.java31 System.out.println(message);
/development/tools/idegen/
H A Didegen.sh8 idegenjar=`find out -name idegen.jar -follow | grep -v intermediates`
/development/ndk/platforms/android-9/arch-x86/include/asm/
H A Dio_32.h30 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); }
31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d"(port)); }
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeyNetworkMonitor.java46 if (LDEBUG) System.out.println("Network state changed: "
50 if (LDEBUG) System.out.println("Network connected");
53 if (LDEBUG) System.out.println("Network not connected");
64 if (LDEBUG) System.out.println("Adding to mobile: " + delta);
68 if (LDEBUG) System.out.println("Adding to wifi: " + delta);
72 if (LDEBUG) System.out.println("Unaccounted for: " + delta);
86 if (LDEBUG) System.out.println("registering Receiver");
91 if (LDEBUG) System.out.println("unregistering Receiver");
100 System.out.println("## Network stats: elapsed time=" + mElapsedTime + "ms ("
H A DMonkeyThrottleEvent.java40 System.out.println("Sleeping for " + mThrottle + " milliseconds");
45 System.out.println("** Monkey interrupted in sleep.");
H A DMonkeyWaitEvent.java37 System.out.println("Wait Event for " + mWaitTime + " milliseconds");
42 System.out.println("** Monkey interrupted in sleep.");
H A DMonkeyNoopEvent.java38 System.out.println("NOOP");
H A DMonkeyRotationEvent.java47 System.out.println(":Sending rotation degree=" + mRotationDegree +
H A DMonkey.java280 System.out.println(" // " + (allow ? "Allowing" : "Rejecting") + " start of "
291 System.out.println(" // activityResuming(" + pkg + ")");
295 System.out.println(" // " + (allow ? "Allowing" : "Rejecting")
520 System.out.println(":Monkey: seed=" + mSeed + " count=" + mCount);
524 System.out.println(":AllowPackage: " + it.next());
530 System.out.println(":DisallowPackage: " + it.next());
536 System.out.println(":IncludeCategory: " + it.next());
580 System.out.println("Error binding to network socket.");
587 System.out.println("// Seeded: " + mSeed);
631 System.out
[all...]
H A DMonkeyActivityEvent.java59 System.out.println(":Switch: " + intent.toUri(0));
76 System.out.println("** Permissions error starting activity "
H A DMonkeyFlipEvent.java62 System.out.println(":Sending Flip keyboardOpen=" + mKeyboardOpen);
72 System.out.println("Got IOException performing flip" + e);
/development/samples/KeyChainDemo/src/com/example/android/keychain/
H A DSecureWebServer.java102 System.out.println("Error: " + e);
117 PrintWriter out = new PrintWriter(socket
127 out.println("HTTP/1.0 200 OK");
128 out.println("Content-Type: text/html");
129 out.println("Server: Android KeyChainiDemo SSL Server");
131 out.println("");
133 out.println("<H1>Welcome to Android!</H1>");
135 out.println("<img src='data:image/png;base64," + base64Image + "'/>");
136 out.flush();
152 // Break out fro
[all...]
/development/samples/RenderScript/Levels/src/com/android/rs/levels/
H A Dlevels.rs28 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
37 out->xyz = convert_uchar3(pixel);
38 out->w = 0xff;
/development/tools/
H A Dmake_key54 openssl req -new -x509 -sha1 -key ${two} -out $1.x509.pem \
59 openssl pkcs8 -in ${one} -topk8 -outform DER -out $1.pk8 -nocrypt
62 echo $password | openssl pkcs8 -in ${one} -topk8 -outform DER -out $1.pk8 \
/development/samples/BackupRestore/src/com/example/android/backuprestore/
H A DMultiRecordExampleAgent.java107 DataOutputStream out = new DataOutputStream(bufStream);
111 out.writeInt(mFilling);
117 out.writeBoolean(mAddMayo);
123 out.writeBoolean(mAddTomato);
132 * Write out the new state file: the version number, followed by the
137 DataOutputStream out = new DataOutputStream(outstream);
139 out.writeInt(mFilling);
140 out.writeBoolean(mAddMayo);
141 out.writeBoolean(mAddTomato);
154 * On restore, we pull the various bits of data out o
[all...]
H A DExampleAgent.java127 // out of the buffering stream object and send it off.
178 * Write out the new state file: the version number, followed by the
183 DataOutputStream out = new DataOutputStream(outstream);
185 out.writeInt(AGENT_VERSION);
186 out.writeInt(mFilling);
187 out.writeBoolean(mAddMayo);
188 out.writeBoolean(mAddTomato);
195 * be running while we change its data out from under it. That, in
196 * turn, means that there is no need to send out any sort of notification
/development/tools/hosttestlib/src/com/android/hosttest/
H A DDeviceConnector.java54 System.out.println("Waiting for device...");
62 System.out.println(String.format("Connected to %s", device.getSerialNumber()));
103 System.out.println("Waiting for device interrupted");
/development/ndk/platforms/android-3/include/linux/
H A Dcoda.h254 struct coda_out_hdr out; member in struct:coda_store_out
264 struct coda_out_hdr out; member in struct:coda_release_out
274 struct coda_out_hdr out; member in struct:coda_close_out
309 struct coda_out_hdr out; member in struct:coda_setattr_out
319 struct coda_out_hdr out; member in struct:coda_access_out
360 struct coda_out_hdr out; member in struct:coda_remove_out
371 struct coda_out_hdr out; member in struct:coda_link_out
383 struct coda_out_hdr out; member in struct:coda_rename_out
406 struct coda_out_hdr out; member in struct:coda_rmdir_out
418 struct coda_out_hdr out; member in struct:coda_symlink_out
438 struct coda_out_hdr out; member in struct:coda_fsync_out
571 void __user *out; member in struct:ViceIoctl
[all...]
/development/tools/axl/
H A Dchewperf.py31 out = []
39 out.append("%s %d" % (line, (tm - last)))
42 out.append(line)
43 print "\n".join(out)
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DTextSwitcher1.java53 Animation out = AnimationUtils.loadAnimation(this,
56 mSwitcher.setOutAnimation(out);
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DImageFetcher.java144 BufferedOutputStream out = null;
151 out = new BufferedOutputStream(new FileOutputStream(cacheFile), Utils.IO_BUFFER_SIZE);
155 out.write(b);
166 if (out != null) {
168 out.close();
/development/tools/yuv420sp2rgb/
H A Dyuv420sp2rgb.c136 unsigned char *out = ctx->buffer; local
165 out += offset;
167 if (alpha) out[i++] = 0xff;
168 out[i++] = r;
169 out[i++] = g;
170 out[i] = b;
199 void *in, *out; local
250 out = mmap(0, outsize, PROT_WRITE, MAP_SHARED, ofd, 0);
251 FAILIF(out == MAP_FAILED, "could not mmap output file: %s (%d)\n",
262 out
[all...]
/development/tools/mkstubs/src/com/android/mkstubs/
H A DMain.java108 System.out.println(String.format(msg, params));
114 System.out.println(String.format(msg, params));
253 System.out.println("ERROR: " + error);
256 System.out.println("Usage: mkstub [--h|--s|--v] input.jar output.jar [excluded-class @excluded-classes-file ...]");
258 System.out.println("Options:\n" +
263 System.out.println("Include syntax:\n" +
268 System.out.println("Exclude syntax:\n" +
281 * <li> Filter out all classes that should not be included or that should be excluded.

Completed in 211 milliseconds

123