Searched defs:in (Results 1 - 25 of 721) sorted by relevance

1234567891011>>

/frameworks/base/cmds/incident_helper/src/
H A DTextParserBase.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
26 status_t NoopParser::Parse(const int in, const int out) const argument
29 if (!ReadFdToString(in, &content)) {
41 status_t ReverseParser::Parse(const int in, const int out) const argument
44 if (!ReadFdToString(in, &content)) {
/frameworks/base/cmds/incident_helper/src/parsers/
H A DBatteryTypeParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 BatteryTypeParser::Parse(const int in, const int out) const argument
29 Reader reader(in);
40 fprintf(stderr, "Multiple lines in file. Unsure what to do.\n");
50 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
H A DKernelWakesParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 KernelWakesParser::Parse(const int in, const int out) const argument
29 Reader reader(in);
73 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
H A DCpuFreqParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
28 CpuFreqParser::Parse(const int in, const int out) const argument
30 Reader reader(in);
80 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
H A DEventLogTagsParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
25 EventLogTagsParser::Parse(const int in, const int out) const argument
27 Reader reader(in);
74 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
H A DPageTypeInfoParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 PageTypeInfoParser::Parse(const int in, const int out) const argument
29 Reader reader(in);
117 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
H A DProcrankParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 ProcrankParser::Parse(const int in, const int out) const argument
29 Reader reader(in);
102 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
H A DSystemPropertiesParser.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
42 SystemPropertiesParser::Parse(const int in, const int out) const argument
44 Reader reader(in);
200 // if the property name couldn't be found in proto definition or the value has mistype,
217 fprintf(stderr, "Bad read from fd %d: %s\n", in, line.c_str());
/frameworks/base/core/java/android/content/
H A DContentInsertHandler.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 * @param in InputStream
38 public void insert(ContentResolver contentResolver, InputStream in) argument
44 * @param in input string
47 public void insert(ContentResolver contentResolver, String in) argument
/frameworks/base/libs/services/include/android/os/
H A DStatsLogEventWrapper.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 StatsLogEventWrapper(StatsLogEventWrapper&& in) = default; member in class:android::os::StatsLogEventWrapper
37 android::status_t readFromParcel(const android::Parcel* in);
/frameworks/base/libs/services/src/os/
H A DStatsLogEventWrapper.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 status_t StatsLogEventWrapper::readFromParcel(const Parcel* in) { argument
40 in->readByteVector(&bytes);
/frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/testing/
H A DBundles.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 public static Bundle forceParceling(Bundle in) { argument
29 in.writeToParcel(parcel, 0);
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 static GesturePoint deserialize(DataInputStream in) throws IOException { argument
40 final float x = in.readFloat();
41 final float y = in.readFloat();
43 final long timeStamp = in.readLong();
/frameworks/base/core/java/android/os/
H A DPooledStringReader.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
21 * in conjunction with {@link android.os.PooledStringWriter}. This really needs
22 * to be pushed in to Parcel itself, but doing that is... complicated.
33 public PooledStringReader(Parcel in) { argument
34 mIn = in;
35 final int size = in.readInt();
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 public KeymasterBlobArgument(int tag, Parcel in) { argument
41 blob = in.createByteArray();
H A DKeymasterBooleanArgument.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 public KeymasterBooleanArgument(int tag, Parcel in) { argument
H A DKeymasterDateArgument.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 public KeymasterDateArgument(int tag, Parcel in) { argument
41 date = new Date(in.readLong());
H A DKeymasterIntArgument.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
41 public KeymasterIntArgument(int tag, Parcel in) { argument
43 value = in.readInt();
H A DKeymasterLongArgument.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
39 public KeymasterLongArgument(int tag, Parcel in) { argument
41 value = in.readLong();
/frameworks/base/libs/hwui/renderthread/
H A DFrame.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
24 void Frame::map(const SkRect& in, int32_t* out) const { argument
33 in.roundOut(&idirty);
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
H A DMain.java5 * in compliance with the License. You may obtain a copy of the License at
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
95 private static void convert(InputStream in, OutputStream out, List<LockTarget> targets) argument
97 ClassReader cr = new ClassReader(in);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiBackupDataParser.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
38 * @param in XmlPullParser instance pointing to the XML stream.
39 * @param outerTagDepth depth of the outer tag in the XML document.
43 List<WifiConfiguration> parseNetworkConfigurationsFromXml(XmlPullParser in, int outerTagDepth, argument
/frameworks/support/compat/src/main/java/androidx/core/os/
H A DParcelableCompatCreatorCallbacks.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
36 * @param in The Parcel to read the object's data from.
37 * @param loader The ClassLoader that this object is being created in.
40 T createFromParcel(Parcel in, ClassLoader loader); argument
/frameworks/av/media/libstagefright/foundation/tests/
H A DBase64_test.cpp5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
37 void verifyDecode(const AString* expected, const AString* in) { argument
45 int remainder = in[i].size() % 4;
46 String8 paddedText(in[i].c_str());
60 void verifyEncode(const AString* expected, const AString* in) { argument
67 encodeBase64Url(in[i].c_str(), in[i].size(), &out);
/frameworks/base/core/java/android/app/
H A DAuthenticationRequiredException.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
45 public AuthenticationRequiredException(Parcel in) { argument
46 this(new SecurityException(in.readString()), PendingIntent.CREATOR.createFromParcel(in));

Completed in 364 milliseconds

1234567891011>>