HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2576 - 2600 of 5424) sorted by null

<<101102103104105106107108109110>>

  /frameworks/base/core/java/android/os/
BaseBundle.java 452 ArrayList out = new ArrayList(N); local
454 out.add(deepCopyValue(from.get(i)));
456 return out;
    [all...]
Binder.java 143 * Warn if any blocking binder transactions are made out from this process.
485 ParcelFileDescriptor out = data.readFileDescriptor(); local
491 if (out != null) {
493 out.getFileDescriptor(),
494 err != null ? err.getFileDescriptor() : out.getFileDescriptor(),
499 IoUtils.closeQuietly(out);
582 * @param out The raw file descriptor that normal command messages should be written to.
590 public void shellCommand(@Nullable FileDescriptor in, @Nullable FileDescriptor out,
594 onShellCommand(in, out, err, args, callback, resultReceiver);
605 public void onShellCommand(@Nullable FileDescriptor in, @Nullable FileDescriptor out,
    [all...]
  /frameworks/base/core/jni/
AndroidRuntime.cpp 430 std::string out = language; local
432 out = out + "-" + country;
436 out = out + "-" + variant;
439 return out;
592 * buffer goes out of scope the option may be overwritten. It's best
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/service/
RemediationHandler.java 67 * Network configs change: Re-evaluate set of HomeSPs and recalculate next time-out.
249 Log.d(OSUManager.TAG, "Next time-out at " + toExpiry(next));
397 try (BufferedWriter out = new BufferedWriter(new FileWriter(file, false))) {
401 out.write(event.toString());
402 out.newLine();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ExpandHelper.java 204 float out = target; local
205 out = out < mSmallSize ? mSmallSize : out;
206 out = out > mNaturalHeight ? mNaturalHeight : out;
207 return out;
  /frameworks/base/tools/aapt2/compile/
Png.cpp 275 png_bytep out = outRows[j]; local
329 *out++ = idx;
413 png_bytep out = outRows[j]; local
421 *out++ = rr;
423 *out++ = (png_byte)(rr * 0.2126f + gg * 0.7152f + bb * 0.0722f);
426 *out++ = aa;
    [all...]
  /frameworks/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 116 PathParser_Delegate out = sManager.getDelegate(outDataPtr); local
119 if (out == null || from == null || to == null) {
129 if (out.mPathDataNodes.length != length) {
130 out.mPathDataNodes = new PathDataNode[length];
133 if (out.mPathDataNodes[i] == null) {
134 out.mPathDataNodes[i] = new PathDataNode(from.mPathDataNodes[i]);
136 out.mPathDataNodes[i].interpolatePathDataNode(from.mPathDataNodes[i],
160 PathParser_Delegate out = sManager.getDelegate(outDataPtr); local
162 if (from == null || out == null) {
165 out.mPathDataNodes = deepCopyNodes(from.mPathDataNodes)
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 305 ComposerState* const out = mComposerStates.editArray(); local
306 return &(out[index].state);
    [all...]
  /frameworks/native/opengl/libagl/
primitives.cpp 600 // being culled out. So it's okay to light the vertices here, even though
873 vertex_t* out[2][MAX_CLIPPING_PLANES + MAX_VERTICES + 2]; local
895 vertex_t** const ovl = &out[outi][0];
961 vertex_t** const ovl = &out[outi][0];
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 195 ostringstream out; local
197 out << '[' << _l << ", " << _u << ']';
199 return out.str();
629 // are laid out on a diagonal starting from the upper left corner. With
1355 ostringstream out; local
1452 ostringstream out; local
1476 ostringstream out; local
    [all...]
  /frameworks/native/services/inputflinger/
EventHub.cpp 89 String8 out; local
91 out.appendFormat("%02x", digest[i]);
93 return out;
    [all...]
  /frameworks/native/services/sensorservice/
SensorService.cpp 585 sensors_event_t out; local
592 if (si->process(&out, event[i])) {
593 mSensorEventBuffer[count + k] = out;
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RRuleTest.java 46 String[] out = new String[dates.length]; local
51 out[i] = time.format2445().substring(0, 8); // Just YYMMDD
53 out[i] = time.format2445().substring(0, 15); // YYMMDDThhmmss
57 return out;
118 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */), local
126 String[] actual = getFormattedDates(out, outCal, truncate);
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WificondControlTest.java 514 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
515 out.write(TEST_INFO_ELEMENT_SSID);
516 out.write(TEST_INFO_ELEMENT_RSN);
518 nativeScanResult.infoElement = out.toByteArray();
    [all...]
  /frameworks/rs/rsov/driver/
rsovRuntimeStubs.cpp 444 snprintf(buf, sizeof(buf), "Out range ElementAt X %i of %i", x,
451 snprintf(buf, sizeof(buf), "Out range ElementAt Y %i of %i", y,
458 snprintf(buf, sizeof(buf), "Out range ElementAt Z %i of %i", z,
670 Allocation *out = hasOutput ? (Allocation *)allocs[numInputs].p : nullptr; local
671 rsrForEach(rsc, s, slot, numInputs, numInputs > 0 ? inputs : nullptr, out,
676 rsForEach(::rs_script script, ::rs_allocation in, ::rs_allocation out,
680 (Allocation *)out.p, usr, 0, (RsScriptCall *)call);
684 rsForEach(::rs_script script, ::rs_allocation in, ::rs_allocation out,
688 (Allocation *)out.p, usr, 0, nullptr);
692 rsForEach(::rs_script script, ::rs_allocation in, ::rs_allocation out) {
    [all...]
  /frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/
MediaRouterJellybean.java 57 List out = new ArrayList(count); local
59 out.add(router.getRouteAt(i));
61 return out;
68 List out = new ArrayList(count); local
70 out.add(router.getCategoryAt(i));
72 return out;
207 List out = new ArrayList(count); local
209 out.add(group.getRouteAt(i));
211 return out;
266 ArrayList out = new ArrayList() local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
stress_iio.c 508 bool g, a, out; local
525 out = rand()%2;
526 enable_quaternion(out);
527 enable_gyro_output(!out);
626 bool g, a, out; local
643 enable_gyro_output(!out);
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 204 * card A pointer to a variable to receive the parsed-out card number.
205 * device A pointer to a variable to receive the parsed-out device number.
283 * following order: hw device > out stream
287 * OUT functions
303 const struct stream_out* out = (const struct stream_out*)stream; local
305 proxy_get_period_size(&out->proxy) * audio_stream_out_frame_size(&(out->stream));
311 const struct stream_out *out = (const struct stream_out*)stream; local
312 return out->hal_channel_mask;
333 struct stream_out *out = (struct stream_out *)stream local
364 struct stream_out *out = (struct stream_out *)stream; local
405 struct stream_out *out = (struct stream_out *)stream; local
438 struct stream_out *out = (struct stream_out *)stream; local
501 struct stream_out *out = (struct stream_out *)stream; \/\/ discard const qualifier local
537 struct stream_out *out; local
668 struct stream_out *out = (struct stream_out *)stream; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest1.java 124 private void writeObject(java.io.ObjectOutputStream out)
127 out.writeObject(FOO);
149 public void writeObject(java.io.ObjectOutputStream out)
152 out.writeObject(FOO);
195 private void writeObject(java.io.ObjectOutputStream out)
198 out.defaultWriteObject();
295 private void writeObject(java.io.ObjectOutputStream out)
321 private void writeObject(java.io.ObjectOutputStream out)
359 private void writeObject(java.io.ObjectOutputStream out)
379 System.out.println("Obj = " + objToSave)
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 168 // We have to generate short primes ourselves, because OpenSSL bottoms out at 16 bits.
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
System.java 83 * System.out.println(data)
99 public final static PrintStream out; field in class:System
110 * variable <code>out</code>, has been redirected to a file or other
162 * @param out the new standard output stream
174 public static void setOut(PrintStream out) {
175 setOut0(out);
252 private static native void setOut0(PrintStream out);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Formatter.java 114 * // Writes a formatted string to System.out.
115 * System.out.format("Local time: %tT", Calendar.getInstance());
285 * out.toUpperCase() </pre>
694 * out.toUpperCase() </pre>
2320 public Appendable out() { method in class:Formatter
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
AlgorithmId.java 139 public final void encode(DerOutputStream out) throws IOException {
140 derEncode(out);
147 * @param out
152 public void derEncode (OutputStream out) throws IOException {
166 // Changes backed out for compatibility with Solaris
197 out.write(tmp.toByteArray());
205 DerOutputStream out = new DerOutputStream(); local
206 derEncode(out);
207 return out.toByteArray();
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 1097 PrintStream out = System.out; local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapUtils.java 371 char out[] = new char[text.length()]; local
376 out[o++] = c;
383 return new String(out,0,o);
496 int in, out, stopCnt = input.length-2; // Leave room for peaking the next two bytes local
501 for(in=0, out=0; in < stopCnt; in++){
525 output[out++] = (byte)(b1<<4 | b2); // valid hex char, append
526 if(V)Log.v(TAG, "Resulting value: " + String.format("0x%2x", output[out-1]));
533 output[out++] = b0;
537 output[out++] = b0;
545 output[out++] = input[in++]
    [all...]

Completed in 1288 milliseconds

<<101102103104105106107108109110>>