Searched defs:in (Results 276 - 300 of 354) sorted by last modified time

<<1112131415

/frameworks/base/core/java/com/android/internal/net/
H A DVpnProfile.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
73 public VpnProfile(Parcel in) { argument
74 key = in.readString();
75 name = in.readString();
76 type = in.readInt();
77 server = in.readString();
78 username = in.readString();
79 password = in.readString();
80 dnsServers = in
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.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
82 * battery life. All times are represented in microseconds except where indicated
99 // Maximum number of items we will record in the history.
102 // No, really, THIS is the maximum number of items we will record in the history.
107 // in to one common name.
328 * in to power.
427 * Used as a buffer for reading in data from /proc/wakelocks before it is processed and added
615 public void readSummaryFromParcel(Parcel in) { argument
616 mUptime = in
625 readFromParcel(Parcel in) argument
662 Counter(TimeBase timeBase, Parcel in) argument
751 readSummaryFromParcelLocked(Parcel in) argument
760 SamplingCounter(TimeBase timeBase, Parcel in) argument
781 LongSamplingCounter(TimeBase timeBase, Parcel in) argument
855 readSummaryFromParcelLocked(Parcel in) argument
910 Timer(int type, TimeBase timeBase, Parcel in) argument
1049 readSummaryFromParcelLocked(Parcel in) argument
1100 SamplingTimer(TimeBase timeBase, Parcel in) argument
1212 readSummaryFromParcelLocked(Parcel in) argument
1242 BatchTimer(Uid uid, int type, TimeBase timeBase, Parcel in) argument
1383 StopwatchTimer(Uid uid, int type, ArrayList<StopwatchTimer> timerPool, TimeBase timeBase, Parcel in) argument
1561 readSummaryFromParcelLocked(Parcel in) argument
4583 makeProcessState(int i, Parcel in) argument
4635 makeWifiBatchedScanBin(int i, Parcel in) argument
5062 readFromParcelLocked(TimeBase timeBase, TimeBase screenOffTimeBase, Parcel in) argument
5237 readTimerFromParcel(int type, ArrayList<StopwatchTimer> pool, TimeBase timeBase, Parcel in) argument
5274 readFromParcelLocked(TimeBase timeBase, TimeBase screenOffTimeBase, Parcel in) argument
5340 readTimerFromParcel(TimeBase timeBase, Parcel in) argument
5361 readFromParcelLocked(TimeBase timeBase, Parcel in) argument
5588 readExcessivePowerFromParcelLocked(Parcel in) argument
5645 readFromParcelLocked(Parcel in) argument
5846 readFromParcelLocked(Parcel in) argument
6007 readFromParcelLocked(Parcel in) argument
6245 readSyncSummaryFromParcelLocked(String name, Parcel in) argument
6251 readJobSummaryFromParcelLocked(String name, Parcel in) argument
6257 readWakeSummaryFromParcelLocked(String wlName, Parcel in) argument
7759 readHistory(Parcel in, boolean andOldHistory) argument
7829 readOldHistory(Parcel in) argument
7885 readSummaryFromParcel(Parcel in) argument
8474 readFromParcel(Parcel in) argument
8478 readFromParcelLocked(Parcel in) argument
[all...]
H A DZygoteInit.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
149 * This throw gets caught in ZygoteInit.main(), which responds
151 * clears up all the stack frames that were required in setting
260 // Ask the WebViewFactory to do any initialization that must run in the zygote process,
284 * a few will allocate a dozen Kbytes (in one case, 500+K).
358 Log.i(TAG, "...preloaded " + count + " classes in "
367 // Fill in dex caches with classes, fields, and methods brought in by preloading.
379 * Load in commonl
844 reopenStdio(FileDescriptor in, FileDescriptor out, FileDescriptor err) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIcon.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
61 public StatusBarIcon(Parcel in) { argument
62 readFromParcel(in);
65 public void readFromParcel(Parcel in) { argument
66 this.iconPackage = in.readString();
67 this.user = (UserHandle) in.readParcelable(null);
68 this.iconId = in.readInt();
69 this.iconLevel = in.readInt();
70 this.visible = in
[all...]
H A DStatusBarIconList.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
31 public StatusBarIconList(Parcel in) { argument
32 readFromParcel(in);
35 public void readFromParcel(Parcel in) { argument
36 this.mSlots = in.readStringArray();
37 final int N = in.readInt();
43 if (in.readInt() != 0) {
44 mIcons[i] = new StatusBarIcon(in);
/frameworks/base/core/java/com/android/internal/util/
H A DFileRotator.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
44 * enables atomic rewriting of file contents in
69 public void read(InputStream in) throws IOException; argument
93 * @param rotateAgeMillis Age in milliseconds beyond which an active file
95 * @param deleteAgeMillis Age in milliseconds beyond which a rotated file
197 public void read(InputStream in) throws IOException {
198 reader.read(in);
H A DXmlUtils.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
720 * @param in The InputStream from which to read.
730 public static final HashMap<String, ?> readMapXml(InputStream in) argument
734 parser.setInput(in, null);
742 * @param in The InputStream from which to read.
751 public static final ArrayList readListXml(InputStream in) argument
755 parser.setInput(in, null);
764 * @param in The InputStream from which to read.
775 public static final HashSet readSetXml(InputStream in) argument
1485 readIntAttribute(XmlPullParser in, String name, int defaultValue) argument
1494 readIntAttribute(XmlPullParser in, String name) argument
1508 readLongAttribute(XmlPullParser in, String name, long defaultValue) argument
1517 readLongAttribute(XmlPullParser in, String name) argument
1531 readFloatAttribute(XmlPullParser in, String name) argument
1545 readBooleanAttribute(XmlPullParser in, String name) argument
1550 readBooleanAttribute(XmlPullParser in, String name, boolean defaultValue) argument
1565 readUriAttribute(XmlPullParser in, String name) argument
1577 readStringAttribute(XmlPullParser in, String name) argument
1588 readByteArrayAttribute(XmlPullParser in, String name) argument
1604 readBitmapAttribute(XmlPullParser in, String name) argument
1654 readThisUnknownObjectXml(XmlPullParser in, String tag) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.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
60 /** Maximum number of items to show in the icon menu. */
113 * top-most). Each value contains the number of items in that row.
115 * The length of this array should not be used to get the number of rows in
121 * The number of rows in the current layout.
166 // This is so we'll receive the MENU key in touch mode
216 * @param numItems The total number of items (across all rows) contained in
321 * just computes positions for each child, and then stores them in the child's layout params.
515 * position is the number of items in tha
720 SavedState(Parcel in) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.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
328 // Allow full screen width in split mode.
410 // Allow full screen width in split mode.
570 * <p>As this encompasses the icon/logo, title and subtitle all in one, we need
615 // a bit easier for developers in the common case.
843 // Don't show while in expanded mode or with empty text
859 * @return True if any characters in the title were truncated
1054 // action bar rather than in the available space.
1112 // In LTR mode, we start from left padding and go to the right; in RT
1368 SavedState(Parcel in) argument
[all...]
H A DLockPatternView.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
50 * Is also capable of displaying a static pattern in "in progress", "wrong" or
90 * in which case we use this to hold the cells we are drawing for the in
96 * the in progress point:
129 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
174 throw new IllegalArgumentException("row must be in range 0-2");
177 throw new IllegalArgumentException("column must be in rang
1083 SavedState(Parcel in) argument
[all...]
H A DResolverDrawerLayout.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
51 * Max total visible height of views not marked always-show when in the closed/initial state
56 * Max total visible height of views not marked always-show when in the closed/initial state
64 * Move views down from the top by this much in px
433 * since it is only used in contexts where this doesn't affect the outcome.
488 // ResolverDrawerLayout lays out vertically in child order;
800 private SavedState(Parcel in) { argument
801 super(in);
802 open = in
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.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
817 * @param in a pointer to a ETC1_DECODED_BLOCK_SIZE array of bytes that represent a
818 * 4 x 4 square of 3-byte pixels in form R, G, B. Byte (3 * (x + 4 * y) is the R
828 jobject in, jint validPixelMask, jobject out) {
833 BufferHelper inB(env, in);
835 if (inB.checkPointer("in") && outB.checkPointer("out")) {
837 doThrowIAE(env, "in's remaining data < DECODED_BLOCK_SIZE");
850 * @param in an ETC1 compressed version of the data.
853 * 4 x 4 square of 3-byte pixels in for
827 etc1_encodeBlock(JNIEnv *env, jclass clazz, jobject in, jint validPixelMask, jobject out) argument
856 etc1_decodeBlock(JNIEnv *env, jclass clazz, jobject in, jobject out) argument
886 etc1_encodeImage(JNIEnv *env, jclass clazz, jobject in, jint width, jint height, jint pixelSize, jint stride, jobject out) argument
918 etc1_decodeImage(JNIEnv *env, jclass clazz, jobject in, jobject out, jint width, jint height, jint pixelSize, jint stride) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.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
451 "Early EOF encountered in skip, not enough pixel data for image of size %u",
457 "Error encountered while skip bytes in input stream.");
648 ALOGE("%s: moveEntries failed, entry %u not found in IFD %u", __FUNCTION__, tagId,
734 * For each color plane, find the corresponding noise profile coefficients given in the
735 * per-channel noise profile. If multiple channels in the CFA correspond to a color in the color
741 * numChannels - the number of noise profile coefficient pairs and color channels given in
743 * planeColors - the color planes in th
1955 sp<JniInputStream> in = new JniInputStream(env, inStream); local
[all...]
H A Dandroid_os_Debug.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
169 * Any graphics memory reported in /proc/pid/smaps is not included here.
205 * Retrieves the graphics memory that is unaccounted for in /proc/pid/smaps.
745 // these are implemented in android_util_Binder.cpp
812 * them, we can do this in place.
877 FILE* in = fopen(maps, "r"); local
878 if (in == NULL) {
883 while (size_t n = fread(buf, sizeof(char), BUFSIZ, in)) {
886 fclose(in);
[all...]
H A Dandroid_view_GraphicBuffer.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
119 GB_LOGW("createGraphicBufferAlloc() failed in GraphicBuffer.create()");
126 GB_LOGW("createGraphicBuffer() failed in GraphicBuffer.create()");
248 jobject in) {
250 Parcel* parcel = parcelForJavaObject(env, in);
247 android_view_GraphiceBuffer_read(JNIEnv* env, jobject clazz, jobject in) argument
H A Dcom_android_internal_os_ZygoteInit.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
92 jobject clazz, jobject in, jobject out, jobject errfd)
97 fd = jniGetFDFromFileDescriptor(env, in);
91 com_android_internal_os_ZygoteInit_reopenStdio(JNIEnv* env, jobject clazz, jobject in, jobject out, jobject errfd) argument
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DWifiConfigurationHelper.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
169 public static List<WifiConfiguration> parseJson(String in) { argument
171 JSONArray jsonConfigs = new JSONArray(in);
/frameworks/base/core/java/android/accounts/
H A DAccount.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
24 * Value type that represents an Account in the {@link AccountManager}. This object is
57 public Account(Parcel in) { argument
58 this.name = in.readString();
59 this.type = in.readString();
/frameworks/base/core/java/android/app/
H A DAlarmManager.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
33 * to schedule your application to be run at some point in the future. When
43 * Alarm Manager releases this wake lock. This means that the phone will in some
59 * the OS will shift alarms in order to minimize wakeups and battery use. There are
63 * is earlier than API 19 will continue to see the previous behavior in which all
76 * Alarm time in {@link System#currentTimeMillis System.currentTimeMillis()}
77 * (wall clock time in UTC), which will wake up the device when
82 * Alarm time in {@link System#currentTimeMillis System.currentTimeMillis()}
83 * (wall clock time in UT
616 AlarmClockInfo(Parcel in) argument
[all...]
H A DApplicationErrorReport.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
43 * is stored in {@link #crashInfo}.
45 * ANR is stored in {@link #anrInfo}.
47 * battery. Information about the battery use is stored in {@link #batteryInfo}.
49 * unneeded serive running. Information about the battery use is stored in
155 ApplicationErrorReport(Parcel in) { argument
156 readFromParcel(in);
161 // check if error reporting is enabled in secure settings
170 // look for receiver in th
255 readFromParcel(Parcel in) argument
378 CrashInfo(Parcel in) argument
454 AnrInfo(Parcel in) argument
513 BatteryInfo(Parcel in) argument
564 RunningServiceInfo(Parcel in) argument
[all...]
H A DBackStackRecord.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
103 public BackStackState(Parcel in) { argument
104 mOps = in.createIntArray();
105 mTransition = in.readInt();
106 mTransitionStyle = in.readInt();
107 mName = in.readString();
108 mIndex = in.readInt();
109 mBreadCrumbTitleRes = in.readInt();
110 mBreadCrumbTitleText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
[all...]
H A DFragment.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
82 public FragmentState(Parcel in) { argument
83 mClassName = in.readString();
84 mIndex = in.readInt();
85 mFromLayout = in.readInt() != 0;
86 mFragmentId = in.readInt();
87 mContainerId = in.readInt();
88 mTag = in.readString();
89 mRetainInstance = in
514 SavedState(Parcel in, ClassLoader loader) argument
[all...]
H A DFragmentManager.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
60 * While the FragmentManager API was introduced in
139 * in the state, and if changes are made after the state is saved then they
144 /** @hide -- remove once prebuilts are in. */
166 * from XML or as the container ID when added in a transaction. This first
176 * from XML or as supplied when added in a transaction. This first
257 * Return the number of entries currently in the back stack.
262 * Return the BackStackEntry at index <var>index</var> in the back stack;
279 * Put a reference to a fragment in
365 FragmentManagerState(Parcel in) argument
[all...]
H A DNotification.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
141 * A timestamp related to this notification, in milliseconds since the epoch.
146 * corresponds to the time the event happened (or will happen, in the case of events that have
156 * <li>Notification of an upcoming meeting should be stamped with the time the meeting will begin (that is, in the future).</li>
165 * The resource id of a drawable to use as the icon in the status bar.
171 * If the icon in the status bar is to have more than one level, you can set this. Otherwise,
180 * The number of events that this notification represents. For example, in a new mail
185 * superimposed over the icon in the status bar. Starting with
187 * {@link Notification.Builder} has displayed the number in th
907 Action(Parcel in) argument
[all...]
H A DPendingIntent.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
67 * with Intents that only vary in their "extra" contents, expecting to get
136 * extra data in the Intent; by canceling the previous pending intent,
144 * then keep it but replace its extra data with what is in this new
229 * Intent.FLAG_ACTIVITY_NEW_TASK} launch flag in the Intent.
236 * @param context The Context in which this PendingIntent should start
260 * Intent.FLAG_ACTIVITY_NEW_TASK} launch flag in the Intent.
267 * @param context The Context in which this PendingIntent should start
330 * array of Intents to be supplied. The last Intent in th
984 readPendingIntentOrNullFromParcel(@onNull Parcel in) argument
[all...]

Completed in 400 milliseconds

<<1112131415