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

123456

/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
H A DSyncStats.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 * that was specified in the request. The user needs to take some action to resolve
48 * increment this value although it may still do so in order to record that it had to
108 public SyncStats(Parcel in) { argument
109 numAuthExceptions = in.readLong();
110 numIoExceptions = in.readLong();
111 numParseExceptions = in.readLong();
112 numConflictDetectedExceptions = in.readLong();
113 numInserts = in
[all...]
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dshellsort.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
87 ; Declare functions defined elsewhere and referenced in this module
92 ; Declare variables used in this module but defined elsewhere
100 void shellsort(Int32 in[], Int32 n) argument
119 v = in[i-1];
121 while (in[j-inc-1] > v)
123 in[j-1] = in[j-inc-1];
130 in[
[all...]
/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/tools/localize/
H A DConfiguration.cpp50 split_locale(const string& in, string* language, string* region) argument
52 const int len = in.length();
54 if (isalpha(in[0]) && isalpha(in[1])) {
55 *language = in;
63 if (isalpha(in[0]) && isalpha(in[1]) && (in[2] == '_' || in[2] == '-')
64 && isalpha(in[
[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();
/frameworks/base/core/java/android/app/backup/
H A DRestoreSet.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 RestoreSet createFromParcel(Parcel in) {
74 return new RestoreSet(in);
82 private RestoreSet(Parcel in) { argument
83 name = in.readString();
84 device = in.readString();
85 token = in.readLong();
/frameworks/base/core/java/android/nfc/
H A DApduList.java30 public ApduList createFromParcel(Parcel in) {
31 return new ApduList(in);
40 private ApduList(Parcel in) { argument
41 int count = in.readInt();
45 int length = in.readInt();
47 in.readByteArray(cmd);
/frameworks/base/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.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 * Mandatory byte array extra field in {@link #ACTION_AID_SELECTED}.
111 public byte[] transceive(byte[] in) throws IOException { argument
114 b = mExtras.getService().transceive(in);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DToneSettings.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
37 private ToneSettings(Parcel in) { argument
38 duration = in.readParcelable(null);
39 tone = in.readParcelable(null);
40 vibrate = in.readInt() == 1;
54 public ToneSettings createFromParcel(Parcel in) {
55 return new ToneSettings(in);
H A DItem.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 public Item(Parcel in) { argument
43 id = in.readInt();
44 text = in.readString();
45 icon = in.readParcelable(null);
59 public Item createFromParcel(Parcel in) {
60 return new Item(in);
/frameworks/base/vpn/java/android/net/vpn/
H A DL2tpIpsecPskProfile.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 protected void readFromParcel(Parcel in) { argument
45 super.readFromParcel(in);
46 mPresharedKey = in.readString();
H A DPptpProfile.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
46 protected void readFromParcel(Parcel in) { argument
47 super.readFromParcel(in);
48 mEncryption = in.readInt() > 0;
H A DL2tpIpsecProfile.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
53 protected void readFromParcel(Parcel in) { argument
54 super.readFromParcel(in);
55 mCaCertificate = in.readString();
56 mUserCertificate = in.readString();
H A DL2tpProfile.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
56 protected void readFromParcel(Parcel in) { argument
57 super.readFromParcel(in);
58 mSecret = in.readInt() > 0;
59 mSecretString = in.readString();
/frameworks/base/core/java/android/app/
H A DResultInfo.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 public ResultInfo createFromParcel(Parcel in) {
68 return new ResultInfo(in);
76 public ResultInfo(Parcel in) { argument
77 mResultWho = in.readString();
78 mRequestCode = in.readInt();
79 mResultCode = in.readInt();
80 if (in.readInt() != 0) {
81 mData = Intent.CREATOR.createFromParcel(in);
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.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 * Describes the meta data for an installed AppWidget provider. The fields in this class
25 * correspond to the fields in the <code>&lt;appwidget-provider&gt;</code> xml tag.
31 * {@link android.appwidget as described in the AppWidget package documentation}.
33 * <p>This field corresponds to the <code>android:name</code> attribute in
34 * the <code>&lt;receiver&gt;</code> element in the AndroidManifest.xml file.
39 * Minimum width of the AppWidget, in dp.
41 * <p>This field corresponds to the <code>android:minWidth</code> attribute in
47 * Minimum height of the AppWidget, in d
120 AppWidgetProviderInfo(Parcel in) argument
[all...]
/frameworks/base/core/java/android/os/
H A DMessenger.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
22 * processes, by creating a Messenger pointing to a Handler in one process,
30 * objects sent through this Messenger will appear in the Handler as if
93 public Messenger createFromParcel(Parcel in) {
94 IBinder target = in.readStrongBinder();
122 * @param in The Parcel containing the written Messenger.
127 public static Messenger readMessengerOrNullFromParcel(Parcel in) { argument
128 IBinder b = in.readStrongBinder();
/frameworks/base/core/java/android/view/
H A DInputEvent.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
86 protected final void readBaseFromParcel(Parcel in) { argument
87 mDeviceId = in.readInt();
88 mSource = in.readInt();
99 public InputEvent createFromParcel(Parcel in) {
100 int token = in.readInt();
102 return KeyEvent.createFromParcelBody(in);
104 return MotionEvent.createFromParcelBody(in);
106 throw new IllegalStateException("Unexpected input event type token in parce
[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
64 public StatusBarIcon(Parcel in) { argument
65 readFromParcel(in);
68 public void readFromParcel(Parcel in) { argument
69 this.iconPackage = in.readString();
70 this.iconId = in.readInt();
71 this.iconLevel = in.readInt();
72 this.visible = in.readInt() != 0;
73 this.number = in
[all...]
/frameworks/base/include/private/media/
H A DVideoFrame.h6 ** you may not use this file except in compliance with the License.
11 ** Unless required by applicable law or agreed to in writing, software
37 FILE *in = fopen(url, "r"); local
38 if (!in) {
41 fseek(in, 0, SEEK_END);
42 mSize = ftell(in); // Allocating buffer of size equals to the external file size.
44 fclose(in);
50 rewind(in);
51 if (fread(mData, 1, mSize, in) != mSize) { // Read failed.
57 fclose(in);
[all...]
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.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
52 private static RandomBlock fromStream(InputStream in) throws IOException { argument
56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.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
81 private Socket in, out; field in class:Forwarder.SocketPipe
83 public SocketPipe(Socket in, Socket out) { argument
84 this.in = in;
91 InputStream is = in.getInputStream();
105 return "SocketPipe{" + in + "=>" + out + "}";
/frameworks/base/core/java/android/content/pm/
H A DLabeledIntent.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 * @param sourcePackage The package in which the label and icon live.
57 * @param sourcePackage The package in which the label and icon live.
74 * @param sourcePackage The package in which the label and icon live.
89 * @param sourcePackage The package in which the label and icon live.
131 * not have a label, null will be returned, in which case you will probably
149 * not have a icon, null will be returned, in which case you will probably
171 protected LabeledIntent(Parcel in) { argument
172 readFromParcel(in);
175 readFromParcel(Parcel in) argument
[all...]
H A DProviderInfo.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 /** If true, additional permissions to specific Uris in this content
56 * this field to be filled in.
69 * to run in different process. If false, a single instances is always
70 * run in {@link #processName}. */
74 * running in the same process. Higher goes first. */
120 public ProviderInfo createFromParcel(Parcel in) {
121 return new ProviderInfo(in);
134 private ProviderInfo(Parcel in) { argument
[all...]

Completed in 442 milliseconds

123456