Searched defs:out (Results 126 - 150 of 185) sorted by relevance

12345678

/frameworks/base/services/audioflinger/
H A DAudioDumpInterface.cpp106 void AudioDumpInterface::closeOutputStream(AudioStreamOut* out) argument
108 AudioStreamOutDump *dumpOut = (AudioStreamOutDump *)out;
115 LOGV("closeOutputStream() output %p", out);
H A DAudioMixer.cpp463 int32_t out; local
464 asm( "smlabb %[out], %[in], %[v], %[a] \n"
465 : [out]"=r"(out)
468 return out;
478 int32_t out; local
479 asm( "smulbb %[out], %[in], %[v] \n"
480 : [out]"=r"(out)
483 return out;
493 int32_t out; local
519 int32_t out; local
542 track__genericResample(track_t* t, int32_t* out, size_t outFrameCount, int32_t* temp, int32_t* aux) argument
575 track__nop(track_t* t, int32_t* out, size_t outFrameCount, int32_t* temp, int32_t* aux) argument
579 volumeRampStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) argument
621 volumeStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) argument
649 track__16BitsStereo(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) argument
739 track__16BitsMono(track_t* t, int32_t* out, size_t frameCount, int32_t* temp, int32_t* aux) argument
825 ditherAndClamp(int32_t* out, int32_t const *sums, size_t c) argument
918 int32_t *out = t1.mainBuffer; local
999 int32_t *out = t1.mainBuffer; local
1047 int32_t* out = t.mainBuffer; local
1123 int32_t* out = t0.mainBuffer; local
[all...]
/frameworks/base/services/sensorservice/
H A DSensorService.cpp195 sensors_event_t out; local
196 if (virtualSensors.valueAt(j)->process(&out, event[i])) {
197 buffer[count + k] = out;
485 // filter out events not for this connection
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DModelInterpreter.java147 OutputStream out; field in class:ModelInterpreter
167 ModelInterpreter (InputStream in, OutputStream out) argument
170 this.out = out;
214 out = s.getOutputStream();
234 //System.out.println("MI<< " + line);
656 //System.out.println("MI>> " + s);
658 out.write(bytes);
659 out.write('\r');
673 //System.out
[all...]
/frameworks/base/voip/java/android/net/sip/
H A DSipProfile.java189 * @throws IllegalArgumentException if the port number is out of range
320 public void writeToParcel(Parcel out, int flags) { argument
321 out.writeSerializable(mAddress);
322 out.writeString(mProxyAddress);
323 out.writeString(mPassword);
324 out.writeString(mDomain);
325 out.writeString(mProtocol);
326 out.writeString(mProfileName);
327 out.writeInt(mSendKeepAlive ? 1 : 0);
328 out
[all...]
/frameworks/base/cmds/keystore/
H A Dkeystore.c60 static int encode_key(char *out, uint8_t *in, int length) argument
63 for (i = length; i > 0; --i, ++in, ++out) {
65 *out = *in;
67 *out = '+' + (*in >> 6);
68 *++out = '0' + (*in & 0x3F);
72 *out = 0;
76 static int decode_key(uint8_t *out, char *in, int length) argument
79 for (i = 0; i < length; ++i, ++in, ++out) {
81 *out = *in;
83 *out
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothClass.java97 public void writeToParcel(Parcel out, int flags) { argument
98 out.writeInt(mClass);
H A DBluetoothDevice.java446 public void writeToParcel(Parcel out, int flags) { argument
447 out.writeString(mAddress);
/frameworks/base/core/java/android/text/
H A DHtml.java146 StringBuilder out = new StringBuilder();
147 withinHtml(out, text);
148 return out.toString();
151 private static void withinHtml(StringBuilder out, Spanned text) { argument
176 out.append("<div " + elements + ">");
179 withinDiv(out, text, i, next);
182 out.append("</div>");
187 private static void withinDiv(StringBuilder out, Spanned text, argument
195 out.append("<blockquote>");
198 withinBlockquote(out, tex
206 withinBlockquote(StringBuilder out, Spanned text, int start, int end) argument
230 withinParagraph(StringBuilder out, Spanned text, int start, int end, int nl, boolean last) argument
358 withinStyle(StringBuilder out, Spanned text, int start, int end) argument
[all...]
H A DStaticLayout.java30 * is laid out. Use {@link DynamicLayout} for text that may change.
455 v = out(source,
491 v = out(source,
506 v = out(source,
526 v = out(source,
573 v = out(source,
596 v = out(source,
620 * representing out-of-band embedding information. On output, the generated
937 System.out.print(label);
940 System.out
969 private int out(CharSequence text, int start, int end, method in class:StaticLayout
[all...]
/frameworks/base/core/java/android/view/
H A DSurfaceView.java656 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/frameworks/base/core/java/android/widget/
H A DProgressBar.java255 StateListDrawable out = new StateListDrawable();
258 out.addState(in.getStateSet(i), tileify(in.getStateDrawable(i), clip));
260 return out;
914 public void writeToParcel(Parcel out, int flags) { argument
915 super.writeToParcel(out, flags);
916 out.writeInt(progress);
917 out.writeInt(secondaryProgress);
H A DRemoteViews.java355 public void writeToParcel(Parcel out, int flags) { argument
356 out.writeInt(TAG);
357 out.writeInt(this.viewId);
358 out.writeString(this.methodName);
359 out.writeInt(this.type);
367 out.writeInt((Boolean) this.value ? 1 : 0);
370 out.writeByte((Byte) this.value);
373 out.writeInt((Short) this.value);
376 out.writeInt((Integer) this.value);
379 out
[all...]
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DLaunchpadActivity.java39 public void writeToParcel(Parcel out, int flags) { argument
40 out.writeString("I am bad");
236 //System.out.println("*** Launchpad is starting: comp=" + intent.component);
468 //System.out.println("Registering: " + mReceiver);
475 //System.out.println("Unregistering: " + mReceiver);
507 //System.out.println("Got receive: " + name);
508 //System.out.println(mNextReceiver + " in " + mExpectedReceivers);
541 // System.out.println("Too many intents received: now at "
545 finishBad("Receive out of order: got " + name + " but expected "
583 //System.out
[all...]
/frameworks/base/libs/rs/
H A DrsAllocation.cpp363 static void mip565(const Adapter2D &out, const Adapter2D &in) argument
365 uint32_t w = out.getDimX();
366 uint32_t h = out.getDimY();
369 uint16_t *oPtr = static_cast<uint16_t *>(out.getElement(0, y));
382 static void mip8888(const Adapter2D &out, const Adapter2D &in) argument
384 uint32_t w = out.getDimX();
385 uint32_t h = out.getDimY();
388 uint32_t *oPtr = static_cast<uint32_t *>(out.getElement(0, y));
401 static void mip8(const Adapter2D &out, const Adapter2D &in) argument
403 uint32_t w = out
420 mip(const Adapter2D &out, const Adapter2D &in) argument
[all...]
/frameworks/base/libs/ui/
H A DEventRecurrence.cpp178 parse_int(const char16_t* str, size_t len, int* out, argument
223 *out = n;
241 // out array.
283 // split it out later. it lets us reuse all the comma separated list code.
285 parse_byday(const char16_t* s, size_t len, int* out, argument
318 *out = (0xffff0000 & WEEKDAYPROC[index].value)
/frameworks/base/media/libstagefright/
H A DMP3Extractor.cpp320 // out, even if there _were_ 10 bytes of valid mp3 audio data...
641 MediaBuffer **out, const ReadOptions *options) {
642 *out = NULL;
747 *out = buffer;
640 read( MediaBuffer **out, const ReadOptions *options) argument
H A DMPEG2TSWriter.cpp179 sp<ABuffer> out = new ABuffer(1024); local
180 out->setRange(0, 0);
198 CHECK_LE(out->size() + 4 + length, out->capacity());
199 memcpy(out->data() + out->size(), "\x00\x00\x00\x01", 4);
200 memcpy(out->data() + out->size() + 4, ptr, length);
201 out->setRange(0, out
[all...]
/frameworks/base/media/libstagefright/rtsp/
H A DAPacketSource.cpp78 uint8_t *out = buffer->data(); local
97 *out++ = accum;
175 uint8_t *out = csd->data(); local
177 *out++ = 0x01; // configurationVersion
178 memcpy(out, profileLevelID->data(), 3);
179 out += 3;
180 *out++ = (0x3f << 2) | 1; // lengthSize == 2 bytes
181 *out++ = 0xe0 | numSeqParameterSets;
186 *out++ = nal->size() >> 8;
187 *out
678 read( MediaBuffer **out, const ReadOptions *) argument
[all...]
H A DARTSPConnection.cpp333 // Timed out. Not yet connected.
860 static void H(const AString &s, AString *out) { argument
861 out->clear();
877 out->append(&nibble, 1);
885 out->append(&nibble, 1);
917 AString out; local
918 encodeBase64(tmp.c_str(), tmp.size(), &out);
922 fragment.append(out);
H A DMyTransmitter.h236 void H(const AString &s, AString *out) { argument
237 out->clear();
253 out->append(&nibble, 1);
261 out->append(&nibble, 1);
/frameworks/base/services/java/com/android/server/
H A DDevicePolicyManagerService.java105 void writeToXml(XmlSerializer out) argument
107 out.startTag(null, "policies");
108 info.writePoliciesToXml(out);
109 out.endTag(null, "policies");
111 out.startTag(null, "password-quality");
112 out.attribute(null, "value", Integer.toString(passwordQuality));
113 out.endTag(null, "password-quality");
115 out.startTag(null, "min-password-length");
116 out.attribute(null, "value", Integer.toString(minimumPasswordLength));
117 out
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DUsageStatsService.java135 void writeToParcel(Parcel out) { argument
136 out.writeInt(count);
139 out.writeInt(localTimes[i]);
203 void writeToParcel(Parcel out) { argument
204 out.writeInt(mLaunchCount);
205 out.writeLong(mUsageTime);
207 out.writeInt(N);
210 out.writeString(ent.getKey());
212 times.writeToParcel(out);
470 Parcel out
481 writeStatsToParcelFLOCK(Parcel out) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DServiceState.java201 public void writeToParcel(Parcel out, int flags) { argument
202 out.writeInt(mState);
203 out.writeInt(mRoaming ? 1 : 0);
204 out.writeString(mOperatorAlphaLong);
205 out.writeString(mOperatorAlphaShort);
206 out.writeString(mOperatorNumeric);
207 out.writeInt(mIsManualNetworkSelection ? 1 : 0);
208 out.writeInt(mRadioTechnology);
209 out.writeInt(mCssIndicator ? 1 : 0);
210 out
[all...]
/frameworks/base/tools/localize/
H A DXMLHandler.cpp459 convert_attrs(const char** in, vector<XMLAttribute>* out) argument
465 out->push_back(attr);

Completed in 312 milliseconds

12345678