Searched refs:out (Results 51 - 75 of 484) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBarService.aidl40 void registerStatusBar(IStatusBar callbacks, out StatusBarIconList iconList,
41 out List<IBinder> notificationKeys, out List<StatusBarNotification> notifications,
42 out int[] switches, out List<IBinder> binders);
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dlevels.rsh24 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
31 out->xyz = convert_uchar3(pixel);
32 out->w = 0xff;
35 void root4(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
42 out->xyzw = convert_uchar4(pixel);
/frameworks/base/tools/preload/
H A DWritePreloadedClassFile.java57 Writer out = new BufferedWriter(new OutputStreamWriter(
61 out.write("# Classes which are preloaded by"
63 out.write("# Automatically generated by frameworks/base/tools/preload/"
65 out.write("# MIN_LOAD_TIME_MICROS=" + MIN_LOAD_TIME_MICROS + "\n");
66 out.write("# MIN_PROCESSES=" + MIN_PROCESSES + "\n");
93 System.out.println(initialSize
109 System.out.println("Added " + (toPreload.size() - initialSize)
112 System.out.println(toPreload.size()
121 out.write(loadedClass.name + "\n");
124 out
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp243 int32 * out = in + (band * FILTERBANK_BANDS); local
250 pvmp3_mdct_18(out, history, normal_win);
256 pvmp3_mdct_18(out, history, start_win);
262 pvmp3_mdct_18(out, history, stop_win);
273 Scratch_mem[i ] = out[(i*3)];
274 Scratch_mem[6 +i] = out[(i*3) + 1];
275 Scratch_mem[12 +i] = out[(i*3) + 2];
288 out[i] = temp;
293 out[i+6] = fxp_mul32_Q32(Scratch_mem[i] << 1, short_win[i]);
294 out[
334 int32 * out = in + (band * FILTERBANK_BANDS); local
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.cpp43 audio_coef_t out[]) {
56 getCoefRecurse(index, fracCoord, out, 0);
61 audio_coef_t out[], size_t dim) {
63 memcpy(out, mTable + index, mNumOutDims * sizeof(audio_coef_t));
65 getCoefRecurse(index, fracCoord, out, dim + 1);
72 out[d] = interp(out[d], tempCoef[d], fracCoord[dim]);
42 getCoef(const int intCoord[], uint32_t fracCoord[], audio_coef_t out[]) argument
59 getCoefRecurse(size_t index, const uint32_t fracCoord[], audio_coef_t out[], size_t dim) argument
H A DAudioBiquadFilter.cpp65 void AudioBiquadFilter::process(const audio_sample_t in[], audio_sample_t out[], argument
67 (this->*mCurProcessFunc)(in, out, frameCount);
140 audio_sample_t * out,
143 if (CC_UNLIKELY(in != out)) {
144 memcpy(out, in, frameCount * mNumChannels * sizeof(audio_sample_t));
149 audio_sample_t * out,
174 (*out++) = y0;
183 audio_sample_t * out,
188 process_normal_mono(in, out, frameCount);
192 audio_sample_t * out,
139 process_bypass(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
148 process_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
182 process_transition_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
191 process_transition_bypass_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
200 process_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
240 process_transition_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
249 process_transition_bypass_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
[all...]
H A DAudioCoefInterpolator.h26 // This class provides support for out-of-range indexes.
53 // out An array for the output value. Should be of size nOutDims.
54 void getCoef(const int intCoord[], uint32_t fracCoord[], audio_coef_t out[]);
82 // out Where the output should be written. Needs to be of size
87 audio_coef_t out[], size_t dim);
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java40 * @param out the OutputStream to write the encoded data to
44 public Base64OutputStream(OutputStream out, int flags) { argument
45 this(out, flags, true);
53 * @param out the OutputStream to write the encoded data to
60 public Base64OutputStream(OutputStream out, int flags, boolean encode) { argument
61 super(out);
80 // internal buffer full; write it out.
115 out.close();
117 out.flush();
141 out
[all...]
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java67 RandomAccessFile out = null;
69 out = new RandomAccessFile(filename, sync ? "rws" : "rw");
70 toDataOut(out);
71 truncateIfPossible(out);
73 close(out);
87 private void toDataOut(DataOutput out) throws IOException { argument
88 out.write(block);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleThread.java160 ByteBuffer out = ByteBuffer.allocate(bufferSize);
161 out.putInt(0);
162 out.putInt(threadId);
163 out.putInt(trace.length);
165 out.putInt(elem.getClassName().length());
166 putString(out, elem.getClassName());
167 out.putInt(elem.getMethodName().length());
168 putString(out, elem.getMethodName());
170 out.putInt(elem.getFileName().length());
171 putString(out, ele
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java503 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) { argument
504 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
505 out.print(" mDestroyed="); out.println(mDestroyed);
506 out.print(prefix); out.print("mVisible="); out.print(mVisible);
507 out
1160 dump(FileDescriptor fd, PrintWriter out, String[] args) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java117 OutputStream out = new FileOutputStream(
123 dump(new File(processDirectory, "stat"), out);
129 dump(file, out);
132 closeQuietly(out);
151 private void dump(File from, OutputStream out) throws IOException { argument
152 writeHeader(from, out);
159 out.write(buffer, 0, count);
169 private static void writeHeader(File file, OutputStream out) argument
172 out.write(header.getBytes());
/frameworks/base/nfc-extras/tests/src/com/android/nfc_extras/tests/
H A DBasicNfcEeTest.java60 byte[] out = mEe.transceive(SELECT_CARD_MANAGER_COMMAND);
61 assertTrue(out.length >= SELECT_CARD_MANAGER_RESPONSE.length);
62 byte[] trailing = Arrays.copyOfRange(out,
63 out.length - SELECT_CARD_MANAGER_RESPONSE.length,
64 out.length);
79 byte[] out = mEe.transceive(SELECT_CARD_MANAGER_COMMAND);
80 byte[] trailing = Arrays.copyOfRange(out,
81 out.length - SELECT_CARD_MANAGER_RESPONSE.length,
82 out.length);
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp881 ResTable_config* out)
884 if (out) out->mcc = 0;
905 if (out) out->mcc = d;
913 ResTable_config* out)
916 if (out) out->mcc = 0;
935 if (out) {
936 out
880 getMccName(const char* name, ResTable_config* out) argument
912 getMncName(const char* name, ResTable_config* out) argument
949 getLocaleName(const char* fileName, ResTable_config* out) argument
991 getLayoutDirectionName(const char* name, ResTable_config* out) argument
1013 getScreenLayoutSizeName(const char* name, ResTable_config* out) argument
1046 getScreenLayoutLongName(const char* name, ResTable_config* out) argument
1069 getOrientationName(const char* name, ResTable_config* out) argument
1089 getUiModeTypeName(const char* name, ResTable_config* out) argument
1122 getUiModeNightName(const char* name, ResTable_config* out) argument
1145 getDensityName(const char* name, ResTable_config* out) argument
1217 getTouchscreenName(const char* name, ResTable_config* out) argument
1237 getKeysHiddenName(const char* name, ResTable_config* out) argument
1264 getKeyboardName(const char* name, ResTable_config* out) argument
1284 getNavHiddenName(const char* name, ResTable_config* out) argument
1308 getNavigationName(const char* name, ResTable_config* out) argument
1331 getScreenSizeName(const char* name, ResTable_config* out) argument
1366 getSmallestScreenWidthDpName(const char* name, ResTable_config* out) argument
1391 getScreenWidthDpName(const char* name, ResTable_config* out) argument
1414 getScreenHeightDpName(const char* name, ResTable_config* out) argument
1437 getVersionName(const char* name, ResTable_config* out) argument
[all...]
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapFactoryTest.java35 ByteArrayOutputStream out = new ByteArrayOutputStream();
36 bitmap1.compress(Bitmap.CompressFormat.PNG, 100, out);
37 ParcelFileDescriptor pfd = ParcelFileDescriptor.fromData(out.toByteArray(), null);
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DIntFloat.java31 public void writeToParcel(Parcel out, int flags) { argument
32 out.writeInt(index);
33 out.writeFloat(value);
H A DStringFloat.java32 public void writeToParcel(Parcel out, int flags) { argument
33 out.writeString(key);
34 out.writeFloat(value);
H A DStringString.java32 public void writeToParcel(Parcel out, int flags) { argument
33 out.writeString(key);
34 out.writeString(value);
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp45 Point out; local
46 out.x_ = x_ + other.x_;
47 out.y_ = y_ + other.y_;
48 return out;
52 Point out; local
53 out.x_ = x_ - other.x_;
54 out.y_ = y_ - other.y_;
55 return out;
59 Point out; local
60 out
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dsad_halfpel_inline.h83 register int32 out; local
92 : "=&r"(out),
97 return out;
103 register int32 out; local
112 : "=&r"(out),
117 return out;
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java82 private Socket in, out; field in class:Forwarder.SocketPipe
84 public SocketPipe(Socket in, Socket out) { argument
86 this.out = out;
93 OutputStream os = out.getOutputStream();
106 return "SocketPipe{" + in + "=>" + out + "}";
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs31 void root(uchar4 *out, uint32_t x, uint32_t y) {
40 out->xyz = convert_uchar3(rsSample(sourceAlloc, allocSampler, uv*2.0f).xyz);
41 out->w = 0xff;
/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java102 FileOutputStream out = null;
113 out = new FileOutputStream(outFile);
130 if (out != null) {
132 out.write(buffer, 0, got);
137 out.close();
138 out = null;
144 if (out != null) out.close();
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DFilePart.java184 * @param out The output stream
189 protected void sendDispositionHeader(OutputStream out) argument
191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
192 super.sendDispositionHeader(out);
195 out.write(FILE_NAME_BYTES);
196 out.write(QUOTE_BYTES);
197 out.write(EncodingUtils.getAsciiBytes(filename));
198 out.write(QUOTE_BYTES);
204 * @param out The output stream.
209 protected void sendData(OutputStream out) throw argument
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.java94 public void writeToParcel(Parcel out, int flags) { argument
95 out.writeString(key);
96 out.writeString(name);
97 out.writeInt(type);
98 out.writeString(server);
99 out.writeString(username);
100 out.writeString(password);
101 out.writeString(dnsServers);
102 out.writeString(searchDomains);
103 out
[all...]

Completed in 8239 milliseconds

1234567891011>>