Searched refs:source (Results 251 - 275 of 1101) sorted by relevance

<<11121314151617181920>>

/frameworks/base/core/java/android/service/carrier/
H A DMessagePdu.java78 public MessagePdu createFromParcel(Parcel source) {
79 int size = source.readInt();
86 pduList.add(source.createByteArray());
/frameworks/base/core/java/android/text/style/
H A DEasyEditSpan.java82 public EasyEditSpan(Parcel source) { argument
83 mPendingIntent = source.readParcelable(null);
84 mDeleteEnabled = (source.readByte() == 1);
/frameworks/base/core/java/android/view/textclassifier/
H A DEntityConfidence.java55 EntityConfidence(@NonNull EntityConfidence<T> source) { argument
56 Preconditions.checkNotNull(source);
57 mEntityConfidence.putAll(source.mEntityConfidence);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageCache.java23 * Cache for incoming message. It caches {@link HdmiCecMessage} with source address and opcode
48 * @param address a logical address of source device
65 * @param address a logical address of source device
90 int source = message.getSource();
91 SparseArray<HdmiCecMessage> messages = mCache.get(source);
94 mCache.put(source, messages);
/frameworks/base/tools/aapt/
H A DCacheUpdater.h24 * mirror cache where the source tree is duplicated and filled with processed
41 // Process an image from source out to dest
42 virtual void processImage(String8 source, String8 dest) = 0;
100 // Process an image from source out to dest
101 virtual void processImage(String8 source, String8 dest) argument
106 preProcessImageToCache(bundle, source, dest);
/frameworks/base/wifi/java/android/net/wifi/
H A DBatchedScanResult.java44 public BatchedScanResult(BatchedScanResult source) { argument
45 truncated = source.truncated;
46 for (ScanResult s : source.scanResults) scanResults.add(new ScanResult(s));
H A DScanSettings.java41 public ScanSettings(ScanSettings source) { argument
42 if (source.channelSet != null)
43 channelSet = new ArrayList<WifiChannel>(source.channelSet);
H A DWifiNetworkConnectionStatistics.java53 public WifiNetworkConnectionStatistics(WifiNetworkConnectionStatistics source) { argument
54 numConnection = source.numConnection;
55 numUsage = source.numUsage;
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
H A DUpdateParameter.java188 * @param source The source to copy from
190 public UpdateParameter(UpdateParameter source) { argument
191 if (source == null) {
194 mUpdateIntervalInMinutes = source.mUpdateIntervalInMinutes;
195 mUpdateMethod = source.mUpdateMethod;
196 mRestriction = source.mRestriction;
197 mServerUri = source.mServerUri;
198 mUsername = source.mUsername;
199 mBase64EncodedPassword = source
[all...]
/frameworks/base/wifi/java/android/net/wifi/hotspot2/
H A DPasspointConfiguration.java334 * @param source The source to copy from
336 public PasspointConfiguration(PasspointConfiguration source) { argument
337 if (source == null) {
341 if (source.mHomeSp != null) {
342 mHomeSp = new HomeSp(source.mHomeSp);
344 if (source.mCredential != null) {
345 mCredential = new Credential(source.mCredential);
347 if (source.mPolicy != null) {
348 mPolicy = new Policy(source
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java131 public CursorAnchorInfo(final Parcel source) { argument
132 mHashCode = source.readInt();
133 mSelectionStart = source.readInt();
134 mSelectionEnd = source.readInt();
135 mComposingTextStart = source.readInt();
136 mComposingText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
137 mInsertionMarkerFlags = source.readInt();
138 mInsertionMarkerHorizontal = source.readFloat();
139 mInsertionMarkerTop = source.readFloat();
140 mInsertionMarkerBaseline = source
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java74 private ContentProviderOperation(Parcel source) { argument
75 mType = source.readInt();
76 mUri = Uri.CREATOR.createFromParcel(source);
77 mValues = source.readInt() != 0 ? ContentValues.CREATOR.createFromParcel(source) : null;
78 mSelection = source.readInt() != 0 ? source.readString() : null;
79 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null;
80 mExpectedCount = source
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetShaderSource.cpp1 /* void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source ) */
13 char *source = (char *) 0; local
31 _exceptionMessage = "source == null";
43 source = source_base + sourceOffset;
49 (char *)source
66 /* void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source ) */
69 (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) {
84 reinterpret_cast<char *>(source)
91 /* void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source ) */
68 android_glGetShaderSource__IILjava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DStreamingSource.cpp40 const sp<IStreamSource> &source)
42 mSource(source),
231 sp<MediaSource> source = mTSParser->getSource( local
234 return static_cast<AnotherPacketSource *>(source.get());
238 sp<AnotherPacketSource> source = getSource(audio); local
241 if (source == NULL) {
246 sp<MetaData> meta = source->getFormat();
260 sp<AnotherPacketSource> source = getSource(audio); local
262 if (source == NULL) {
271 if (!source
38 StreamingSource( const sp<AMessage> &notify, const sp<IStreamSource> &source) argument
[all...]
H A DRTSPSource.cpp173 sp<AnotherPacketSource> source = getSource(audio); local
175 if (source == NULL) {
179 return source->getFormat();
224 sp<AnotherPacketSource> source = getSource(audio); local
226 if (source == NULL) {
231 if (!source->hasBufferAvailable(&finalResult)) {
234 // If other source already signaled EOS, this source should also return EOS
239 // If this source has detected near end, give it some time to retrieve more
243 if (source
272 sp<MediaSource> source = mTSParser->getSource( local
427 sp<AnotherPacketSource> source = getSource(audio); local
439 sp<AnotherPacketSource> source = getSource(audio); local
447 sp<AnotherPacketSource> source = getSource(audio); local
589 sp<AnotherPacketSource> source = getSource(true /* audio */); local
663 sp<AnotherPacketSource> source = info->mSource; local
704 sp<AnotherPacketSource> source = info->mSource; local
719 sp<AnotherPacketSource> source = info->mSource; local
791 sp<AnotherPacketSource> source = new AnotherPacketSource(format); local
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiDeviceInfo.java59 // Value indicating the device is not an active source.
63 * Logical address used to indicate the source comes from internal device. The logical address
69 * Physical address used to indicate the source comes from internal device. The physical address
90 // Type used to indicate the device that has relinquished its active source status.
122 public HdmiDeviceInfo createFromParcel(Parcel source) {
123 int hdmiDeviceType = source.readInt();
124 int physicalAddress = source.readInt();
125 int portId = source.readInt();
129 int logicalAddress = source.readInt();
130 int deviceType = source
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDevice.java339 public WifiP2pDevice(WifiP2pDevice source) { argument
340 if (source != null) {
341 deviceName = source.deviceName;
342 deviceAddress = source.deviceAddress;
343 primaryDeviceType = source.primaryDeviceType;
344 secondaryDeviceType = source.secondaryDeviceType;
345 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported;
346 deviceCapability = source.deviceCapability;
347 groupCapability = source.groupCapability;
348 status = source
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java989 public SessionParams(Parcel source) { argument
990 mode = source.readInt();
991 installFlags = source.readInt();
992 installLocation = source.readInt();
993 installReason = source.readInt();
994 sizeBytes = source.readLong();
995 appPackageName = source.readString();
996 appIcon = source.readParcelable(null);
997 appLabel = source.readString();
998 originatingUri = source
1260 SessionInfo(Parcel source) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DRecordingActivityMonitor.java53 public void onRecordingConfigurationChanged(int event, int session, int source, argument
55 if (MediaRecorder.isSystemOnlyAudioSource(source)) {
59 updateSnapshot(event, session, source, recordingInfo);
118 * @param source
125 private List<AudioRecordingConfiguration> updateSnapshot(int event, int session, int source, argument
152 new AudioRecordingConfiguration(session, source,
164 new AudioRecordingConfiguration(session, source,
170 Log.e(TAG, String.format("Unknown event %d for session %d, source %d",
171 event, session, source));
/frameworks/base/tools/aapt2/cmd/
H A DCompile.cpp55 Source source; member in struct:aapt::ResourcePathData
198 std::ifstream fin(path_data.source.path, std::ifstream::binary);
200 context->GetDiagnostics()->Error(DiagMessage(path_data.source)
215 ResourceParser res_parser(context->GetDiagnostics(), &table, path_data.source, path_data.config,
390 context->GetDiagnostics()->Note(DiagMessage(path_data.source) << "compiling XML");
395 std::ifstream fin(path_data.source.path, std::ifstream::binary);
397 context->GetDiagnostics()->Error(DiagMessage(path_data.source)
402 xmlres = xml::Inflate(&fin, context->GetDiagnostics(), path_data.source);
413 xmlres->file.source = path_data.source;
[all...]
/frameworks/base/tools/aapt2/link/
H A DXmlReferenceLinker.cpp74 XmlVisitor(const Source& source, const CallSite& callsite, IAaptContext* context, argument
76 : source_(source),
89 const Source source = source_.WithLine(el->line_number); variable
114 context_->GetDiagnostics()->Error(DiagMessage(source) << "attribute '"
127 attr.compiled_value->SetSource(source);
131 DiagMessage msg(source);
165 XmlVisitor visitor(resource->file.source, callsite, context, context->GetExternalSymbols());
/frameworks/native/libs/input/
H A DInputDevice.cpp170 int32_t axis, uint32_t source) const {
174 if (range.axis == axis && range.source == source) {
181 void InputDeviceInfo::addSource(uint32_t source) { argument
182 mSources |= source;
185 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, argument
187 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
/frameworks/av/cmds/stagefright/
H A Drecord.cpp120 sp<MediaSource> source;
144 source = extractor->getTrack(i);
148 return source;
188 sp<MediaSource> source = createSource(argv[1]);
190 if (source == NULL) {
195 sp<MetaData> meta = source->getFormat();
197 sp<MediaSource> decoder = SimpleDecodingSource::Create(source);
261 CameraSource *source = CameraSource::Create(
263 source->start();
265 printf("source
[all...]
/frameworks/base/tools/aapt2/
H A DFormat.proto70 optional Source source = 2;
126 optional Source source = 1;
139 optional Source source = 1;
152 optional Source source = 1;
161 optional Source source = 1;
179 optional Source source = 1;
205 optional Source source = 1;
/frameworks/compile/libbcc/lib/
H A DRSScriptGroupFusion.cpp39 const Function* getInvokeFunction(const Source& source, const int slot, argument
42 bcinfo::MetadataExtractor &metadata = *source.getMetadata();
52 getFunction(Module* mergedModule, const Source* source, const int slot, argument
55 bcinfo::MetadataExtractor &metadata = *source->getMetadata();
59 source->getName().c_str(), slot);
65 source->getName().c_str(), functionName);
98 for (const Source* source : sources) {
100 bcinfo::MetadataExtractor &metadata = *source->getMetadata();
104 source->getName().c_str(), slot);
111 source
319 renameInvoke(BCCContext& Context, const Source* source, const int slot, const std::string& newName, Module* module) argument
[all...]

Completed in 9189 milliseconds

<<11121314151617181920>>