HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2551 - 2575 of 4549) sorted by null

<<101102103104105106107108109110>>

  /external/webrtc/talk/media/webrtc/
webrtcvideoengine2.cc 24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
182 std::stringstream out; local
183 out << '{';
185 out << codecs[i].ToString();
187 out << ", ";
190 out << '}';
191 return out.str();
551 // TODO(pbos): Figure out whether this can be removed.
557 // TODO(pbos): Probe encoder factory to figure out that the codec is supported
755 std::stringstream out; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 60 static size_t SSL_get_client_random(const SSL *ssl, unsigned char *out,
65 os_memcpy(out, ssl->s3->client_random, SSL3_RANDOM_SIZE);
70 static size_t SSL_get_server_random(const SSL *ssl, unsigned char *out,
75 os_memcpy(out, ssl->s3->server_random, SSL3_RANDOM_SIZE);
81 unsigned char *out, size_t outlen)
88 os_memcpy(out, session->master_key, outlen);
3680 BIO *out; local
3714 BIO *out; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
http_curl.c 173 BIO *out; local
177 out = BIO_new(BIO_s_mem());
178 if (!out)
181 X509_print_ex(out, cert, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
182 rlen = BIO_ctrl_pending(out);
185 int res = BIO_read(out, txt, rlen);
192 BIO_free(out);
590 static void i2r_HashAlgAndValue(HashAlgAndValue *hash, BIO *out, int indent)
595 BIO_printf(out, "%*shashAlg: ", indent, "");
596 i2a_ASN1_OBJECT(out, hash->hashAlg->algorithm)
750 BIO *out; local
904 BIO *out; local
920 BIO *in, *out; local
1055 BIO *out; local
    [all...]
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 252 * The window is filled until the cursor is exhausted or the window runs out
433 char[] out = new char[l << 1]; local
437 out[j++] = DIGITS[(0xF0 & input[i]) >>> 4 ];
438 out[j++] = DIGITS[ 0x0F & input[i] ];
441 return out;
463 * Prints the contents of a Cursor to System.out. The position is restored
469 dumpCursor(cursor, System.out);
528 * Prints the contents of a Cursor's current row to System.out.
533 dumpCurrentRow(cursor, System.out);
597 * Reads a String out of a field in a Cursor and writes it to a Map
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 532 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) {
533 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
534 out.print(" mDestroyed="); out.println(mDestroyed);
535 out.print(prefix); out.print("mVisible="); out.print(mVisible);
536 out.print(" mReportedVisible="); out.println(mReportedVisible)
    [all...]
  /frameworks/base/core/java/android/text/
TextUtils.java 1272 SpannableStringBuilder out = new SpannableStringBuilder(okFormat); local
    [all...]
  /frameworks/base/core/java/android/widget/
Spinner.java 643 // Clear out old views
712 * and fill out its layout paramters.
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 414 TypedValue out = new TypedValue(); local
415 mContext.getTheme().resolveAttribute(attrId, out, true);
416 return out.resourceId;
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 218 private static void extractText(TtmlNode node, long startUs, long endUs, StringBuilder out,
221 out.append(node.mText);
223 out.append("\n");
228 int length = out.length();
230 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag); local
232 if (pTag && length != out.length()) {
233 out.append("\n");
252 StringBuilder out) {
254 out.append(node.mText);
256 out.append("<br/>")
263 extractTtmlFragment(node.mChildren.get(i), startUs, endUs, out); local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
MOManager.java 464 throw new IOException("Failed to remove " + fqdn + " out of MO tree");
483 try (BufferedOutputStream out =
485 moTree.marshal(out);
486 out.flush();
623 // to do that so it is commented out:
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
FusedPrintersProvider.java 116 /** Last known location, can be null or out of date */
406 * Check if the location is acceptable. This is to filter out excessively old or inaccurate
1006 FileOutputStream out = null; local
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsState.java 453 FileOutputStream out = null; local
455 out = destination.startWrite();
458 serializer.setOutput(out, StandardCharsets.UTF_8.name());
478 destination.finishWrite(out);
489 destination.failWrite(out);
491 IoUtils.closeQuietly(out);
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 37 * Handles laying out, decoding, and drawing of tiles in GL
349 private void getRange(Rect out, int cX, int cY, int level, int rotation) {
350 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
359 private void getRange(Rect out,
385 out.set(left, top, right, bottom);
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 173 // Correctly read out the phone entry based on requested provider
202 * (filters out separators.)
2157 char[] out = input.toCharArray(); local
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 690 // Figure out the number of rows and columns in the N-patch
907 png_bytep out = outRows[j]; local
995 *out++ = idx;
1089 png_bytep out = outRows[j]; local
1117 png_bytep out = outRows[j]; local
    [all...]
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 875 // write out symbol
896 // write out symbol
1756 SectionMap::iterator out, prev, outBegin, outEnd; local
2079 SectionMap::iterator out, outBegin, outEnd; local
2115 SectionMap::iterator out, outBegin, outEnd; local
2358 SectionMap::iterator out, outBegin, outEnd; local
2416 SectionMap::iterator out, outBegin, outEnd; local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
PasspointManagementObjectManager.java 432 throw new IOException("Failed to remove " + fqdn + " out of MO tree");
456 try (BufferedOutputStream out =
458 moTree.marshal(out);
459 out.flush();
582 // to do that so it is commented out:
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduParser.java 1194 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 460 snprintf(buf, sizeof(buf), "Out range ElementAt X %i of %i", x, t->getLODDimX(0));
466 snprintf(buf, sizeof(buf), "Out range ElementAt Y %i of %i", y, t->getLODDimY(0));
472 snprintf(buf, sizeof(buf), "Out range ElementAt Z %i of %i", z, t->getLODDimZ(0));
668 Allocation* out = hasOutput ? (Allocation*)allocs[numInputs].p : nullptr; local
669 rsrForEach(rsc, s, slot, numInputs, numInputs > 0 ? inputs : nullptr, out,
675 ::rs_allocation out,
680 (Allocation *)out.p, usr, 0, (RsScriptCall *)call);
685 ::rs_allocation out,
688 rsrForEach(rsc, (Script *)script.p, 0, 1, (Allocation **)&in.p, (Allocation *)out.p,
694 ::rs_allocation out) {
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentActivity.java 700 StringBuilder out = new StringBuilder(128); local
701 out.append(view.getClass().getName());
702 out.append('{');
703 out.append(Integer.toHexString(System.identityHashCode(view)));
704 out.append(' ');
706 case View.VISIBLE: out.append('V'); break;
707 case View.INVISIBLE: out.append('I'); break;
708 case View.GONE: out.append('G'); break;
709 default: out.append('.'); break;
711 out.append(view.isFocusable() ? 'F' : '.')
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/app/
AlertController.java 375 TypedValue out = new TypedValue(); local
376 mContext.getTheme().resolveAttribute(attrId, out, true);
377 return out.resourceId;
    [all...]
  /hardware/qcom/audio/hal/
audio_hw.c 260 static void register_out_stream(struct stream_out *out)
262 struct audio_device *adev = out->dev;
263 if (out->usecase == USECASE_AUDIO_PLAYBACK_OFFLOAD)
270 out->handle,
271 out->flags);
276 if (out->realtime) {
278 out->handle,
279 out->pcm, &out->config);
304 static void request_out_focus(struct stream_out *out, long ns
1179 struct stream_out *out = (struct stream_out *) context; local
1604 struct stream_out *out = (struct stream_out *)stream; local
1616 struct stream_out *out = (struct stream_out *)stream; local
1627 struct stream_out *out = (struct stream_out *)stream; local
1634 struct stream_out *out = (struct stream_out *)stream; local
1646 struct stream_out *out = (struct stream_out *)stream; local
1683 struct stream_out *out = (struct stream_out *)stream; local
1747 struct stream_out *out = (struct stream_out *)stream; local
1841 struct stream_out *out = (struct stream_out *)stream; local
1881 struct stream_out *out = (struct stream_out *)stream; local
1901 struct stream_out *out = (struct stream_out *)stream; local
1942 struct stream_out *out = (struct stream_out *)stream; local
1976 struct stream_out *out = (struct stream_out *)stream; local
1992 struct stream_out *out = (struct stream_out *)stream; local
2090 struct stream_out *out = (struct stream_out *)stream; local
2129 struct stream_out *out = (struct stream_out *)stream; local
2175 struct stream_out *out = (struct stream_out *)stream; local
2187 struct stream_out *out = (struct stream_out *)stream; local
2203 struct stream_out *out = (struct stream_out *)stream; local
2220 struct stream_out *out = (struct stream_out *)stream; local
2236 struct stream_out *out = (struct stream_out *)stream; local
2610 struct stream_out *out; local
2856 struct stream_out *out = (struct stream_out *)stream; local
3311 struct stream_out out; local
    [all...]
audio_hw.h 230 struct stream_out *out; member in union:stream_ptr
315 snd_device_t last_logged_snd_device[AUDIO_USECASE_MAX][2]; /* [out, in] */
  /hardware/ti/omap4-aah/camera/
CameraHal.cpp 772 CAMHAL_LOGEB("ERROR: Manual Exposure = %s is out of range - "
783 CAMHAL_LOGEB("ERROR: Manual Exposure right = %s is out of range - "
794 CAMHAL_LOGEB("ERROR: Manual Gain = %s is out of range - "
2145 android::sp<DisplayAdapter> out; local
2156 android::sp<DisplayAdapter> out = new BufferSourceAdapter(); local
2258 android::sp<DisplayAdapter> out; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DecimalFormatTest.java 113 // into Long unless the value is out of the bound of Long or
521 // IllegalArgumentException will be thrown out
536 // NullPointerException will be thrown out.
563 StringBuffer out = format.format(new Long(Long.MAX_VALUE), new StringBuffer(), pos); local
564 assertTrue("Wrong result L1: " + out, out.toString().equals("9,223,372,036,854,775,807"));
568 out = format.format(new Long(Long.MIN_VALUE), new StringBuffer(), pos);
569 assertTrue("Wrong result L2: " + out, out.toString().equals("-9,223,372,036,854,775,808"));
573 out = format.format(new java.math.BigInteger(String.valueOf(Long.MAX_VALUE))
    [all...]

Completed in 2146 milliseconds

<<101102103104105106107108109110>>