Searched refs:source (Results 176 - 200 of 794) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG2TSAssembler.cpp49 const sp<ARTPSource> &source) {
50 return addPacket(source);
54 const sp<ARTPSource> &source) {
55 List<sp<ABuffer> > *queue = source->queue();
48 assembleMore( const sp<ARTPSource> &source) argument
53 addPacket( const sp<ARTPSource> &source) argument
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DAbstractStatementRetriever.java65 * Returns the statements made by the {@code source} asset with ttl.
69 public abstract Result retrieveStatements(AbstractAsset source) argument
/frameworks/base/tools/aapt/
H A DSymbol.h52 SourcePos source; member in struct:SymbolDefinition
87 , source(src) {
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source);
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/tools/aapt/tests/
H A DMockCacheUpdater.h29 // Process an image from source out to dest
30 virtual void processImage(String8 source, String8 dest) { argument
/frameworks/base/tools/aapt2/
H A DLogger.h42 static std::ostream& error(const Source& source);
46 static std::ostream& warn(const Source& source);
50 static std::ostream& note(const Source& source);
59 SourceLogger(const Source& source);
H A DXmlFlattener.h61 Maybe<size_t> flattenAndLink(const Source& source, Node* root,
H A DMain.cpp70 Source source; member in struct:StaticLibraryData
167 configValue.source,
209 Source source; member in struct:CompileItem
216 Source source; member in struct:LinkItem
259 return table->addResource(item.name, item.config, item.source.line(0),
322 IdCollector(const Source& source, const std::shared_ptr<ResourceTable>& table) : argument
323 mSource(source), mTable(table) {
359 std::ifstream in(item.source.path, std::ifstream::binary);
361 Logger::error(item.source) << strerror(errno) << std::endl;
365 SourceLogger logger(item.source);
601 compileValues(const std::shared_ptr<ResourceTable>& table, const Source& source, const ConfigDescription& config) argument
625 extractResourcePathData(const Source& source) argument
695 addApkFilesToLinkQueue(const std::u16string& package, const Source& source, const std::shared_ptr<ResourceTable>& table, const std::unique_ptr<ZipFile>& apk, std::queue<LinkItem>* outLinkQueue) argument
1036 loadAppInfo(const Source& source, AppInfo* outInfo) argument
[all...]
/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs25 void setSampleData(rs_allocation dest, rs_allocation source, rs_sampler sampler) {
27 sourceAlloc = source;
/frameworks/support/percent/src/android/support/percent/
H A DPercentRelativeLayout.java113 public LayoutParams(ViewGroup.LayoutParams source) { argument
114 super(source);
117 public LayoutParams(MarginLayoutParams source) { argument
118 super(source);
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DAesCtrDecryptor.cpp30 const Iv iv, const uint8_t* source,
49 memcpy(destination + offset, source + offset,
55 AES_ctr128_encrypt(source + offset, destination + offset,
29 decrypt(const android::Vector<uint8_t>& key, const Iv iv, const uint8_t* source, uint8_t* destination, const SubSample* subSamples, size_t numSubSamples, size_t* bytesDecryptedOut) argument
/frameworks/av/media/libstagefright/include/
H A DID3.h38 ID3(const sp<DataSource> &source, bool ignoreV1 = false, off64_t offset = 0);
88 bool parseV1(const sp<DataSource> &source);
89 bool parseV2(const sp<DataSource> &source, off64_t offset);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DSessionRoute.h36 // source argument
42 audio_source_t source,
52 mSource(source)
103 // source argument.
108 audio_source_t source,
40 SessionRoute(audio_session_t session, audio_stream_type_t streamType, audio_source_t source, sp<DeviceDescriptor> deviceDescriptor, uid_t uid) argument
/frameworks/base/core/java/android/hardware/location/
H A DActivityChangedEvent.java52 public ActivityChangedEvent createFromParcel(Parcel source) {
53 int activityRecognitionEventsLength = source.readInt();
56 source.readTypedArray(activityRecognitionEvents, ActivityRecognitionEvent.CREATOR);
/frameworks/base/core/java/android/os/
H A DMessage.java525 public Message createFromParcel(Parcel source) {
527 msg.readFromParcel(source);
566 private void readFromParcel(Parcel source) { argument
567 what = source.readInt();
568 arg1 = source.readInt();
569 arg2 = source.readInt();
570 if (source.readInt() != 0) {
571 obj = source.readParcelable(getClass().getClassLoader());
573 when = source.readLong();
574 data = source
[all...]
H A DParcelUuid.java112 public ParcelUuid createFromParcel(Parcel source) {
113 long mostSigBits = source.readLong();
114 long leastSigBits = source.readLong();
/frameworks/base/core/java/android/printservice/
H A DPrintDocument.java74 ParcelFileDescriptor source = null;
78 source = fds[0];
81 return source;
/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/services/core/java/com/android/server/hdmi/
H A DDevicePowerStatusAction.java42 static DevicePowerStatusAction create(HdmiCecLocalDevice source, argument
44 if (source == null || callback == null) {
48 return new DevicePowerStatusAction(source, targetAddress, callback);
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/wifi/java/android/net/wifi/
H A DBatchedScanResult.java43 public BatchedScanResult(BatchedScanResult source) { argument
44 truncated = source.truncated;
45 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/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...]

Completed in 4050 milliseconds

1234567891011>>