Searched refs:in (Results 76 - 100 of 723) sorted by path

1234567891011>>

/frameworks/base/cmds/installd/
H A DAndroid.mk7 # Static library used in testing and executable
/frameworks/base/cmds/ip-up-vpn/
H A Dip-up-vpn.c5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
23 #include <netinet/in.h>
50 * parameter occupies one line in the file, and it can be an empty string or
/frameworks/base/core/java/android/accessibilityservice/
H A DIAccessibilityServiceClient.aidl5 ** you may not use this file except in compliance with the License.
10 ** Unless required by applicable law or agreed to in writing, software
29 void setConnection(in IAccessibilityServiceConnection connection, int connectionId);
31 void onAccessibilityEvent(in AccessibilityEvent event);
H A DIAccessibilityServiceConnection.aidl5 * 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 void setServiceInfo(in AccessibilityServiceInfo info);
55 * The match is case insensitive containment. The search is performed in the window
77 * is performed in the window whose id is specified and starts from the node whose
99 * focus type. The search is performed in the window whose id is specified and starts from
120 * focus in the given direction. The search is performed in the window whose id is
130 * @param direction The direction in which to search for focusable.
158 int action, in Bundl
[all...]
/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();
H A DIAccountAuthenticator.aidl5 * 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 void addAccount(in IAccountAuthenticatorResponse response, String accountType,
32 String authTokenType, in String[] requiredFeatures, in Bundle options);
37 void confirmCredentials(in IAccountAuthenticatorResponse response, in Account account,
38 in Bundle options);
43 void getAuthToken(in IAccountAuthenticatorResponse response, in Accoun
[all...]
H A DIAccountAuthenticatorResponse.aidl5 * 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 void onResult(in Bundle value);
H A DIAccountManager.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
30 String getPassword(in Account account);
31 String getUserData(in Account account, String key);
35 void hasFeatures(in IAccountManagerResponse response, in Account account, in String[] features);
36 void getAccountsByFeatures(in IAccountManagerResponse response, String accountType, in String[] features);
37 boolean addAccount(in Accoun
[all...]
H A DIAccountManagerResponse.aidl5 * 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 void onResult(in Bundle value);
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.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 IActivityManager in =
63 if (in != null) {
64 return in;
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
42 * is stored in {@link #crashInfo}.
44 * ANR is stored in {@link #anrInfo}.
46 * battery. Information about the battery use is stored in {@link #batteryInfo}.
48 * unneeded serive running. Information about the battery use is stored in
154 ApplicationErrorReport(Parcel in) { argument
155 readFromParcel(in);
160 // check if error reporting is enabled in secure settings
169 // look for receiver in th
244 readFromParcel(Parcel in) argument
365 CrashInfo(Parcel in) argument
430 AnrInfo(Parcel in) argument
489 BatteryInfo(Parcel in) argument
540 RunningServiceInfo(Parcel in) argument
[all...]
H A DApplicationThreadNative.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
54 IApplicationThread in =
56 if (in != null) {
57 return in;
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
83 public BackStackState(Parcel in) { argument
84 mOps = in.createIntArray();
85 mTransition = in.readInt();
86 mTransitionStyle = in.readInt();
87 mName = in.readString();
88 mIndex = in.readInt();
89 mBreadCrumbTitleRes = in.readInt();
90 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
75 public FragmentState(Parcel in) { argument
76 mClassName = in.readString();
77 mIndex = in.readInt();
78 mFromLayout = in.readInt() != 0;
79 mFragmentId = in.readInt();
80 mContainerId = in.readInt();
81 mTag = in.readString();
82 mRetainInstance = in
492 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
55 * While the FragmentManager API was introduced in
134 * in the state, and if changes are made after the state is saved then they
139 /** @hide -- remove once prebuilts are in. */
161 * from XML or as the container ID when added in a transaction. This first
171 * from XML or as supplied when added in a transaction. This first
252 * Return the number of entries currently in the back stack.
257 * Return the BackStackEntry at index <var>index</var> in the back stack;
274 * Put a reference to a fragment in
360 FragmentManagerState(Parcel in) argument
[all...]
H A DIActivityController.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
23 * Testing interface to monitor what is happening in the activity manager
33 boolean activityStarting(in Intent intent, String pkg);
42 * An application process has crashed (in Java). Return true for the
H A DIActivityPendingResult.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
25 boolean sendResult(int code, String data, in Bundle ex);
H A DIAlarmManager.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
32 void remove(in PendingIntent operation);
H A DIBackupAgent.aidl5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
23 * Interface presented by applications being asked to participate in the
51 void doBackup(in ParcelFileDescriptor oldState,
52 in ParcelFileDescriptor data,
53 in ParcelFileDescriptor newState,
79 void doRestore(in ParcelFileDescriptor data, int appVersionCode,
80 in ParcelFileDescriptor newState, int token, IBackupManager callbackBinder);
99 void doFullBackup(in ParcelFileDescriptor data, int token, IBackupManager callbackBinder);
116 void doRestoreFile(in ParcelFileDescripto
[all...]
H A DIInstrumentationWatcher.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
26 void instrumentationStatus(in ComponentName name, int resultCode,
27 in Bundle results);
28 void instrumentationFinished(in ComponentName name, int resultCode,
29 in Bundle results);
H A DINotificationManager.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
32 in Notification notification, inout int[] idReceived, int userId);
H A DISearchManager.aidl5 * 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 SearchableInfo getSearchableInfo(in ComponentName launchActivity);
H A DIServiceConnection.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
24 void connected(in ComponentName name, IBinder service);
H A DIThumbnailReceiver.aidl6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
H A DIWallpaperManager.aidl5 * 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 void setWallpaperComponent(in ComponentName name);
63 void setDimensionHints(in int width, in int height);

Completed in 176 milliseconds

1234567891011>>