/external/wpa_supplicant_8/src/eap_common/ |
eap_fast_common.c | 100 u8 *rnd = NULL, *out; local 107 out = os_malloc(block_size + len); 108 if (out == NULL) 111 if (tls_connection_prf(ssl_ctx, conn, label, 1, out, block_size + len) 113 os_memmove(out, out + block_size, len); 114 return out; 132 keys.server_random_len, out, block_size + len)) 135 os_memmove(out, out + block_size, len) [all...] |
/frameworks/av/media/libeffects/testlibs/ |
EffectsMath.c | 114 int32_t out = 0; local 123 out = 0x4000; 133 tmp = (out << i) + (1 << ((i - 1)*2)); 136 out += 1 << (i-1); 141 return out;
|
/frameworks/av/media/libstagefright/foundation/ |
base64.cpp | 47 uint8_t *out = buffer->data(); local 76 out[j++] = (accum >> 16); 78 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; } 79 if (j < outLen) { out[j++] = accum & 0xff; } 103 const void *_data, size_t size, AString *out) { 104 out->clear(); 114 out->append(encode6Bit(x1 >> 2)); 115 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 116 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f)); 117 out->append(encode6Bit(x3 & 0x3f)) [all...] |
/frameworks/base/core/java/android/ddm/ |
DdmHandleAppName.java | 93 ByteBuffer out = ByteBuffer.allocate( local 97 out.order(ChunkHandler.CHUNK_ORDER); 98 out.putInt(appName.length()); 99 putString(out, appName); 100 out.putInt(userId); 102 Chunk chunk = new Chunk(CHUNK_APNM, out);
|
/frameworks/base/core/java/android/net/ |
ScoredNetwork.java | 54 * the scorer may choose to issue an out-of-band update at any time. 76 public void writeToParcel(Parcel out, int flags) { 77 networkKey.writeToParcel(out, flags); 79 out.writeByte((byte) 1); 80 rssiCurve.writeToParcel(out, flags); 82 out.writeByte((byte) 0);
|
/frameworks/base/media/mca/filterpacks/native/base/ |
vec_types.h | 33 // out of boundary not checked 37 // out of boundary not checked 60 Vec<T, dim> out; local 62 out.data[i] = x.data[i] + y.data[i]; 63 return out; 68 Vec<T, dim> out; local 70 out.data[i] = x.data[i] - y.data[i]; 71 return out; 76 Vec<T, dim> out; local 78 out.data[i] = x.data[i] * y.data[i] 84 Vec<T, dim> out; local 92 T out = 0; local 100 Vec<T, dim> out; local 108 Vec<T, dim> out; local 116 Vec<T, dim> out; local [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
LaunchWarningWindow.java | 41 TypedValue out = new TypedValue(); local 42 getContext().getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true); 43 getWindow().setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, out.resourceId);
|
/frameworks/compile/mclinker/lib/Script/ |
Assignment.cpp | 90 SectionMap::reference out = script.sectionMap().back(); local 92 if (!isLhsDot && out->dotAssignments().empty()) { 100 out->dotAssignments().push_back(assign); 103 if (!out->dotAssignments().empty()) { 104 Assignment& prevDotAssign = out->dotAssignments().back(); 121 out->dotAssignments().push_back(*this);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicLUT.cpp | 61 uchar *out = (uchar *)p->out; local 72 out[0] = tr[in[0]]; 73 out[1] = tg[in[1]]; 74 out[2] = tb[in[2]]; 75 out[3] = ta[in[3]]; 77 out += 4;
|
/frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/ |
HelloComputeNDK.java | 34 native void nativeMono(String cacheDir, int X, int Y, Bitmap in, Bitmap out); 48 ImageView out = (ImageView) findViewById(R.id.displayout); local 49 out.setImageBitmap(mBitmapOut);
|
/libcore/dex/src/main/java/com/android/dex/ |
Leb128.java | 128 * Writes {@code value} as an unsigned integer to {@code out}, starting at 131 public static void writeUnsignedLeb128(ByteOutput out, int value) { 135 out.writeByte((byte) ((value & 0x7f) | 0x80)); 140 out.writeByte((byte) (value & 0x7f)); 144 * Writes {@code value} as a signed integer to {@code out}, starting at 147 public static void writeSignedLeb128(ByteOutput out, int value) { 156 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1GeneralizedTime.java | 74 public void encodeContent(BerOutputStream out) { 75 out.encodeGeneralizedTime(); 86 public void setEncodingContent(BerOutputStream out) { 89 String temp = sdf.format(out.content); 102 out.content = (temp + "Z").getBytes(StandardCharsets.UTF_8); 103 out.length = ((byte[]) out.content).length;
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLClassLoaderTest.java | 84 FileOutputStream out = new FileOutputStream(test1); local 85 out.write(resValues[0].getBytes()); 86 out.flush(); 87 out.close(); 93 out = new FileOutputStream(test2); 94 out.write(resValues[1].getBytes()); 95 out.flush(); 96 out.close();
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestTrustManager.java | 37 private static final PrintStream out = LOG ? System.out : new NullPrintStream(); field in class:TestTrustManager 57 out.println("TestTrustManager.<init> trustManager=" + trustManager); 63 out.print("TestTrustManager.checkClientTrusted " 69 out.println("OK"); 71 e.printStackTrace(out); 84 out.print("TestTrustManager.checkServerTrusted " 90 out.println("OK"); 92 e.printStackTrace(out); 112 out.print("TestTrustManager.getAcceptedIssuers result=" + result.length) [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();
|
/cts/common/host-side/java-scanner/tests/src/com/android/compatibility/common/scanner/ |
JavaScannerTest.java | 29 private static final String JAR = "out/host/linux-x86/framework/compatibility-java-scanner_v2.jar"; 98 final PrintWriter out = new PrintWriter(f); local 99 out.print(content); 100 out.flush(); 101 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/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
CtsApiCoverage.java | 47 System.out.println("Usage: cts-api-coverage [OPTION]... [APK]..."); 48 System.out.println(); 49 System.out.println("Generates a report about what Android framework methods are called "); 50 System.out.println("from the given APKs."); 51 System.out.println(); 52 System.out.println("Use the Makefiles rules in CtsTestCoverage.mk to generate the report "); 53 System.out.println("rather than executing this directly. If you still want to run this "); 54 System.out.println("directly, then this must be used from the $ANDROID_BUILD_TOP "); 55 System.out.println("directory and dexdeps must be built via \"make dexdeps\"."); 56 System.out.println() 194 OutputStream out = outputFile != null local [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/ |
JPDADebuggeeSynchronizer.java | 42 * TCP/IP sockets. All operations can be timed out according to default timeout. 54 protected DataOutputStream out; field in class:JPDADebuggeeSynchronizer 85 out.writeUTF(message); 86 out.flush(); 199 out = new DataOutputStream(clientSocket.getOutputStream()); 220 out = new DataOutputStream(clientSocket.getOutputStream()); 234 if (out != null) 235 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();
|
/external/doclava/src/com/google/doclava/ |
ClearPage.java | 142 System.out.println("error: " + e.getMessage() + "; when writing file: " + filename); 163 FileOutputStream out; local 175 out = new FileOutputStream(to); 199 out.write(buf, 0, size); 211 out.close();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
BuildMachineManager.java | 76 System.out.println("Marker already exists: "+markerName+".marker"); 112 PrintWriter out = new PrintWriter(new FileWriter(markerFile)); local 113 out.println(markerKey+"=" + machineName); 114 out.flush(); 115 out.close();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
FetchBaseTask.java | 164 PrintWriter out = new PrintWriter(new FileWriter(new File(outputFile))); local 165 out.print(script); 166 out.flush(); 167 out.close();
|