Searched defs:in (Results 176 - 200 of 591) sorted by relevance

1234567891011>>

/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.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 * properly. Passing in invalid parameters will generate a log warning.
157 public PhoneAccountHandle createFromParcel(Parcel in) {
158 return new PhoneAccountHandle(in);
167 private PhoneAccountHandle(Parcel in) { argument
168 this(ComponentName.CREATOR.createFromParcel(in),
169 in.readString(),
170 UserHandle.CREATOR.createFromParcel(in));
H A DStatusHints.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 * Contains status label and icon displayed in the in-call UI.
67 * @return The label displayed in the in-call UI.
87 * @return An icon displayed in the in-call UI.
124 public StatusHints createFromParcel(Parcel in) {
125 return new StatusHints(in);
133 StatusHints(Parcel in) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.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 * Immutable cell information from a point in time.
117 private CellInfoCdma(Parcel in) { argument
118 super(in);
119 mCellIdentityCdma = CellIdentityCdma.CREATOR.createFromParcel(in);
120 mCellSignalStrengthCdma = CellSignalStrengthCdma.CREATOR.createFromParcel(in);
127 public CellInfoCdma createFromParcel(Parcel in) {
128 in.readInt(); // Skip past token, we know what it is
129 return createFromParcelBody(in);
139 createFromParcelBody(Parcel in) argument
[all...]
H A DCellInfoGsm.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 * Immutable cell information from a point in time.
117 private CellInfoGsm(Parcel in) { argument
118 super(in);
119 mCellIdentityGsm = CellIdentityGsm.CREATOR.createFromParcel(in);
120 mCellSignalStrengthGsm = CellSignalStrengthGsm.CREATOR.createFromParcel(in);
126 public CellInfoGsm createFromParcel(Parcel in) {
127 in.readInt(); // Skip past token, we know what it is
128 return createFromParcelBody(in);
138 createFromParcelBody(Parcel in) argument
[all...]
H A DCellInfoLte.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 * Immutable cell information from a point in time.
122 private CellInfoLte(Parcel in) { argument
123 super(in);
124 mCellIdentityLte = CellIdentityLte.CREATOR.createFromParcel(in);
125 mCellSignalStrengthLte = CellSignalStrengthLte.CREATOR.createFromParcel(in);
132 public CellInfoLte createFromParcel(Parcel in) {
133 in.readInt(); // Skip past token, we know what it is
134 return createFromParcelBody(in);
144 createFromParcelBody(Parcel in) argument
[all...]
H A DCellInfoWcdma.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 * Immutable cell information from a point in time.
117 private CellInfoWcdma(Parcel in) { argument
118 super(in);
119 mCellIdentityWcdma = CellIdentityWcdma.CREATOR.createFromParcel(in);
120 mCellSignalStrengthWcdma = CellSignalStrengthWcdma.CREATOR.createFromParcel(in);
126 public CellInfoWcdma createFromParcel(Parcel in) {
127 in.readInt(); // Skip past token, we know what it is
128 return createFromParcelBody(in);
138 createFromParcelBody(Parcel in) argument
[all...]
H A DDataConnectionRealTimeInfo.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
29 private long mTime; // Time the info was collected since boot in nanos;
61 private DataConnectionRealTimeInfo(Parcel in) { argument
62 mTime = in.readLong();
63 mDcPowerState = in.readInt();
95 public DataConnectionRealTimeInfo createFromParcel(Parcel in) {
96 return new DataConnectionRealTimeInfo(in);
H A DIccOpenLogicalChannelResponse.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 * STATUS_UNKNOWN_ERROR: Unknown error in open channel command.
63 private IccOpenLogicalChannelResponse(Parcel in) { argument
64 mChannel = in.readInt();
65 mStatus = in.readInt();
66 int arrayLength = in.readInt();
69 in.readByteArray(mSelectResponse);
117 public IccOpenLogicalChannelResponse createFromParcel(Parcel in) {
118 return new IccOpenLogicalChannelResponse(in);
[all...]
H A DNeighboringCellInfo.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 * CID in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
56 * LAC in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
60 * Primary Scrambling Code in 9 bits format in UMT
162 NeighboringCellInfo(Parcel in) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCellNetworkScanResult.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 private CellNetworkScanResult(Parcel in) { argument
56 mStatus = in.readInt();
57 int len = in.readInt();
61 mOperators.add(OperatorInfo.CREATOR.createFromParcel(in));
118 public CellNetworkScanResult createFromParcel(Parcel in) {
119 return new CellNetworkScanResult(in);
H A DSmsCbLocation.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
40 * cell broadcasts saved in older versions of the database without location info.
71 public SmsCbLocation(Parcel in) { argument
72 mPlmn = in.readString();
73 mLac = in.readInt();
74 mCid = in.readInt();
169 * @param dest The Parcel in which the object should be written.
182 public SmsCbLocation createFromParcel(Parcel in) {
183 return new SmsCbLocation(in);
[all...]
/frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
H A DAppCompatibility.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
129 * @param in {@link ProcessErrorStateInfo} to parse.
132 private String getStackTrace(ProcessErrorStateInfo in) { argument
133 if (in == null) {
136 return in.stackTrace;
/frameworks/compile/mclinker/lib/Script/
H A DAssignment.cpp133 SectionMap::Output::reference in = script.sectionMap().back()->back(); local
135 if (in->dotAssignments().empty()) {
138 in->getSection()->getSectionData()->front());
141 in->dotAssignments().push_back(
145 Assignment& prevDotAssign = in->dotAssignments().back().second;
158 in->dotAssignments().push_back(std::make_pair(
159 in->getSection()->getSectionData()->front().getNextNode(), *this));
/frameworks/minikin/tests/util/
H A DUnicodeUtils.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 // Size is returned in an out parameter because gtest needs a void return for ASSERT to work.
48 // Unicode codepoint in hex syntax
91 std::vector<uint16_t> parseUnicodeStringWithOffset(const std::string& in, size_t* offset) { argument
92 std::unique_ptr<uint16_t[]> buffer(new uint16_t[in.size()]);
94 ParseUnicode(buffer.get(), in.size(), in.c_str(), &result_size, offset);
98 std::vector<uint16_t> parseUnicodeString(const std::string& in) { argument
99 return parseUnicodeStringWithOffset(in, nullpt
[all...]
/frameworks/native/services/surfaceflinger/
H A DGpuService.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 int in = data.readFileDescriptor(); local
56 status = shellCommand(in, out, err, args);
78 status_t GpuService::shellCommand(int /*in*/, int out, int err,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.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
58 private Input(Parcel in) { argument
59 text = in.readString();
60 defaultText = in.readString();
61 icon = in.readParcelable(null);
62 minLen = in.readInt();
63 maxLen = in.readInt();
64 ucs2 = in.readInt() == 1 ? true : false;
65 packed = in
[all...]
H A DMenu.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
57 private Menu(Parcel in) { argument
58 title = in.readString();
59 titleIcon = in.readParcelable(null);
62 int size = in.readInt();
64 Item item = in.readParcelable(null);
67 defaultItem = in.readInt();
68 softKeyPreferred = in.readInt() == 1 ? true : false;
69 helpAvailable = in
[all...]
H A DTextMessage.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 private TextMessage(Parcel in) { argument
37 title = in.readString();
38 text = in.readString();
39 icon = in.readParcelable(null);
40 iconSelfExplanatory = in.readInt() == 1 ? true : false;
41 isHighPriority = in.readInt() == 1 ? true : false;
42 responseNeeded = in.readInt() == 1 ? true : false;
43 userClear = in
[all...]
/frameworks/support/compat/java/android/support/v4/os/
H A DResultReceiver.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
87 * always asynchronously if the receiver has supplied a Handler in which
135 ResultReceiver(Parcel in) { argument
138 mReceiver = IResultReceiver.Stub.asInterface(in.readStrongBinder());
144 public ResultReceiver createFromParcel(Parcel in) {
145 return new ResultReceiver(in);
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPhotoItem.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
66 public PhotoItem createFromParcel(Parcel in) {
67 return new PhotoItem(in);
76 private PhotoItem(Parcel in) { argument
77 mTitle = in.readString();
78 mImageResourceId = in.readInt();
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaMetadataCompatApi21.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 public static Object createFromParcel(Parcel in) { argument
54 return MediaMetadata.CREATOR.createFromParcel(in);
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPhotoItem.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
66 public PhotoItem createFromParcel(Parcel in) {
67 return new PhotoItem(in);
76 private PhotoItem(Parcel in) { argument
77 mTitle = in.readString();
78 mImageResourceId = in.readInt();
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
H A DPhotoItem.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 PhotoItem createFromParcel(Parcel in) {
68 return new PhotoItem(in);
77 private PhotoItem(Parcel in) { argument
78 mTitle = in.readString();
79 mImageResourceId = in.readInt();
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DListPreferenceDialogFragmentCompat.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
85 private static CharSequence[] getCharSequenceArray(Bundle in, String key) { argument
86 final ArrayList<String> stored = in.getStringArrayList(key);
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.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
24 class MediaPlayerBase; // in media/MediaPlayerInterface.h
36 // TestPlayerStub::setDataSource loads the library in the test url. 2
46 // typical usage in a java test:
102 virtual status_t invoke(const android::Parcel& in, android::Parcel *out) { argument
103 return mPlayer->invoke(in, out);

Completed in 4312 milliseconds

1234567891011>>