/frameworks/base/services/tests/servicestests/src/com/android/server/net/ |
NetworkStatsCollectionTest.java | 161 OutputStream out = null; local 164 out = new FileOutputStream(file); 165 Streams.copy(in, out); 168 IoUtils.closeQuietly(out);
|
/frameworks/base/telephony/java/android/telephony/ |
PreciseDataConnectionState.java | 169 public void writeToParcel(Parcel out, int flags) { 170 out.writeInt(mState); 171 out.writeInt(mNetworkType); 172 out.writeString(mAPNType); 173 out.writeString(mAPN); 174 out.writeString(mReason); 175 out.writeParcelable(mLinkProperties, flags); 176 out.writeString(mFailCause);
|
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/ |
HugeAgent.java | 128 // out of the buffering stream object and send it off. 190 * Write out the new state file: the version number, followed by the 195 DataOutputStream out = new DataOutputStream(outstream); local 197 out.writeInt(AGENT_VERSION); 198 out.writeInt(mFilling); 199 out.writeBoolean(mAddMayo); 200 out.writeBoolean(mAddTomato); 207 * be running while we change its data out from under it. That, in 208 * turn, means that there is no need to send out any sort of notification
|
/frameworks/base/tools/preload/ |
PrintCsv.java | 42 printHeaders(System.out); 51 printRow(System.out, baseline, loadedClass); 55 static void printHeaders(PrintStream out) { 56 out.println("Name" 70 static void printRow(PrintStream out, MemoryUsage baseline, 72 out.print(loadedClass.name); 73 out.print(','); 74 out.print(loadedClass.preloaded); 75 out.print(','); 76 out.print(loadedClass.medianLoadTimeMicros()) [all...] |
Root.java | 135 FileOutputStream out = new FileOutputStream(fileName); local 137 new BufferedOutputStream(out));
|
/frameworks/compile/mclinker/lib/Object/ |
SectionMap.cpp | 164 iterator out, outBegin = begin(), outEnd = end(); local 165 for (out = outBegin; out != outEnd; ++out) { 166 if (*out != NULL) { 167 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); 172 delete *out; 181 const_iterator out, outBegin = begin(), outEnd = end(); local 182 for (out = outBegin; out != outEnd; ++out) 195 iterator out, outBegin = begin(), outEnd = end(); local 209 const_iterator out, outBegin = begin(), outEnd = end(); local 220 iterator out, outBegin = begin(), outEnd = end(); local 233 iterator out, outBegin = begin(), outEnd = end(); local 266 iterator out, outBegin = begin(), outEnd = end(); local [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicConvolve3x3.cpp | 91 static void ConvolveOneU4(const RsForEachStubParamStruct *p, uint32_t x, uchar4 *out, 110 *out = o; 113 static void ConvolveOneU2(const RsForEachStubParamStruct *p, uint32_t x, uchar2 *out, 131 *out = convert_uchar2(px); 134 static void ConvolveOneU1(const RsForEachStubParamStruct *p, uint32_t x, uchar *out, 150 *out = clamp(px, 0.f, 255.f); 153 static void ConvolveOneF4(const RsForEachStubParamStruct *p, uint32_t x, float4 *out, 159 *out = (py0[x1] * coeff[0]) + (py0[x] * coeff[1]) + (py0[x2] * coeff[2]) + 164 static void ConvolveOneF2(const RsForEachStubParamStruct *p, uint32_t x, float2 *out, 170 *out = (py0[x1] * coeff[0]) + (py0[x] * coeff[1]) + (py0[x2] * coeff[2]) 204 uchar4 *out = (uchar4 *)p->out; local 251 uchar2 *out = (uchar2 *)p->out; local 296 uchar *out = (uchar *)p->out; local 341 float4 *out = (float4 *)p->out; local 386 float2 *out = (float2 *)p->out; local 430 float *out = (float *)p->out; local [all...] |
rsCpuIntrinsicYuvToRGB.cpp | 126 uchar4 *out = (uchar4 *)p->out + xstart; local 160 *out = rsYuvToRGBA_uchar4(Y[x1], u[cx], v[cx]); 161 out++; 169 rsdIntrinsicYuv2_K(p->out, Y, u, v, x1, x2); 171 out += len; 178 rsdIntrinsicYuv_K(p->out, Y, v, x1, x2); 180 out += len; 182 rsdIntrinsicYuvR_K(p->out, Y, u, x1, x2); 184 out += len [all...] |
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UnitTest.java | 124 String out = name; local 126 out += " - PASSED"; 129 out += " - FAILED"; 131 return out;
|