Searched refs:source (Results 101 - 125 of 474) sorted by relevance

1234567891011>>

/frameworks/base/tests/HugeBackup/
H A DAndroid.mk6 # Only compile source java files in this apk.
/frameworks/ex/variablespeed/jni/
H A Dmacros.h56 inline Dest bit_cast(const Source& source) { argument
62 memcpy(&dest, &source, sizeof(dest));
H A Dring_buffer.cc132 void RingBuffer::MergeBack(int reader, const float* source, int num_frames) { argument
133 // If the source pointer is not the temporary buffer,
136 if (source == temp_read_buffer_) {
139 memcpy(samples_ + (pos * num_channels_), source,
140 num_channels_ * num_frames * sizeof(source[0]));
143 memcpy(samples_ + (pos * num_channels_), source,
144 num_channels_ * wrapped * sizeof(source[0]));
146 memcpy(samples_, source + (wrapped * num_channels_),
147 num_channels_ * remaining * sizeof(source[0]));
/frameworks/support/v4/java/android/support/v4/os/
H A DParcelableCompat.java50 public T createFromParcel(Parcel source) { argument
51 return mCallbacks.createFromParcel(source, null);
/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp151 sp<MediaSource> source = extractor->getTrack(kTrackToDecode); local
152 if (source == 0) {
153 SL_LOGE("AacBqToPcmCbRenderer::onPrepare: error getting source from extractor");
163 source = OMXCodec::Create(
165 source);
167 if (source == NULL) {
173 meta = source->getFormat();
177 if (source->start() != OK) {
178 SL_LOGE("AacBqToPcmCbRenderer::onPrepare() Failed to start source/decoder.");
207 // The data source, an
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DInputPort.java31 public void setSourcePort(OutputPort source) { argument
35 mSourcePort = source;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java587 public WifiConfiguration(WifiConfiguration source) { argument
588 if (source != null) {
589 networkId = source.networkId;
590 status = source.status;
591 disableReason = source.disableReason;
592 SSID = source.SSID;
593 BSSID = source.BSSID;
594 preSharedKey = source.preSharedKey;
598 wepKeys[i] = source.wepKeys[i];
600 wepTxKeyIndex = source
[all...]
H A DWifiInfo.java95 public WifiInfo(WifiInfo source) { argument
96 if (source != null) {
97 mSupplicantState = source.mSupplicantState;
98 mBSSID = source.mBSSID;
99 mWifiSsid = source.mWifiSsid;
100 mNetworkId = source.mNetworkId;
101 mHiddenSSID = source.mHiddenSSID;
102 mRssi = source.mRssi;
103 mLinkSpeed = source.mLinkSpeed;
104 mIpAddress = source
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
H A DMP4Source.cpp30 StreamSource(const sp<IStreamSource> &source) argument
31 : mListener(new NuPlayer::NuPlayerStreamListener(source, 0)),
107 MP4Source::MP4Source(const sp<IStreamSource> &source) argument
108 : mSource(source),
/frameworks/av/media/libstagefright/include/
H A DVBRISeeker.h31 const sp<DataSource> &source, off64_t post_id3_pos);
H A DID3.h38 ID3(const sp<DataSource> &source);
81 bool parseV1(const sp<DataSource> &source);
82 bool parseV2(const sp<DataSource> &source);
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG2TSAssembler.cpp47 const sp<ARTPSource> &source) {
48 return addPacket(source);
52 const sp<ARTPSource> &source) {
53 List<sp<ABuffer> > *queue = source->queue();
46 assembleMore( const sp<ARTPSource> &source) argument
51 addPacket( const sp<ARTPSource> &source) argument
/frameworks/base/core/java/android/content/pm/
H A DManifestDigest.java48 private ManifestDigest(Parcel source) { argument
49 mDigest = source.createByteArray();
121 public ManifestDigest createFromParcel(Parcel source) {
122 return new ManifestDigest(source);
/frameworks/base/tests/RenderScriptTests/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/base/tools/aapt/
H A DImages.h21 status_t preProcessImageToCache(const Bundle* bundle, const String8& source, const String8& dest);
H A DCacheUpdater.h21 * mirror cache where the source tree is duplicated and filled with processed
36 // Process an image from source out to dest
37 virtual void processImage(String8 source, String8 dest) = 0;
95 // Process an image from source out to dest
96 virtual void processImage(String8 source, String8 dest) argument
101 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/core/java/android/os/
H A DParcelUuid.java112 public ParcelUuid createFromParcel(Parcel source) {
113 long mostSigBits = source.readLong();
114 long leastSigBits = source.readLong();
H A DMessage.java466 public Message createFromParcel(Parcel source) {
468 msg.readFromParcel(source);
506 private void readFromParcel(Parcel source) { argument
507 what = source.readInt();
508 arg1 = source.readInt();
509 arg2 = source.readInt();
510 if (source.readInt() != 0) {
511 obj = source.readParcelable(getClass().getClassLoader());
513 when = source.readLong();
514 data = source
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java68 private ContentProviderOperation(Parcel source) { argument
69 mType = source.readInt();
70 mUri = Uri.CREATOR.createFromParcel(source);
71 mValues = source.readInt() != 0 ? ContentValues.CREATOR.createFromParcel(source) : null;
72 mSelection = source.readInt() != 0 ? source.readString() : null;
73 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null;
74 mExpectedCount = source
[all...]
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java129 public CharSequence filter(CharSequence source, int start, int end, argument
131 CharSequence out = super.filter(source, start, end, dest, dstart, dend);
138 source = out;
171 * If it does, we must strip them out from the source.
180 char c = source.charAt(i);
205 stripped = new SpannableStringBuilder(source, start, end);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pWfdInfo.java156 public WifiP2pWfdInfo(WifiP2pWfdInfo source) { argument
157 if (source != null) {
158 mDeviceInfo = source.mDeviceInfo;
159 mCtrlPort = source.mCtrlPort;
160 mMaxThroughput = source.mMaxThroughput;
H A DWifiP2pDevice.java307 public WifiP2pDevice(WifiP2pDevice source) { argument
308 if (source != null) {
309 deviceName = source.deviceName;
310 deviceAddress = source.deviceAddress;
311 primaryDeviceType = source.primaryDeviceType;
312 secondaryDeviceType = source.secondaryDeviceType;
313 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported;
314 deviceCapability = source.deviceCapability;
315 groupCapability = source.groupCapability;
316 status = 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
35 _exceptionMessage = "source == null";
47 source = source_base + sourceOffset;
53 (char *)source
70 /* void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source ) */
73 (JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) {
88 (char *)source
95 /* void glGetShaderSource ( GLuint shader, GLsizei bufsize, GLsizei *length, char *source ) */
72 android_glGetShaderSource__IILjava_nio_IntBuffer_2B(JNIEnv *_env, jobject _this, jint shader, jint bufsize, jobject length_buf, jbyte source) argument
/frameworks/base/libs/androidfw/
H A DInputDevice.cpp159 int32_t axis, uint32_t source) const {
163 if (range.axis == axis && range.source == source) {
170 void InputDeviceInfo::addSource(uint32_t source) { argument
171 mSources |= source;
174 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, argument
176 MotionRange range = { axis, source, min, max, flat, fuzz };

Completed in 588 milliseconds

1234567891011>>