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

1234567891011>>

/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 reinterpret_cast<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/av/media/libmediaplayerservice/nuplayer/
H A DStreamingSource.cpp37 const sp<IStreamSource> &source)
39 mSource(source),
212 sp<MediaSource> source = mTSParser->getSource( local
215 return static_cast<AnotherPacketSource *>(source.get());
219 sp<AnotherPacketSource> source = getSource(audio); local
221 if (source == NULL) {
225 return source->getFormat();
230 sp<AnotherPacketSource> source = getSource(audio); local
232 if (source == NULL) {
241 if (!source
35 StreamingSource( const sp<AMessage> &notify, const sp<IStreamSource> &source) argument
[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.java328 public WifiP2pDevice(WifiP2pDevice source) { argument
329 if (source != null) {
330 deviceName = source.deviceName;
331 deviceAddress = source.deviceAddress;
332 primaryDeviceType = source.primaryDeviceType;
333 secondaryDeviceType = source.secondaryDeviceType;
334 wpsConfigMethodsSupported = source.wpsConfigMethodsSupported;
335 deviceCapability = source.deviceCapability;
336 groupCapability = source.groupCapability;
337 status = source
[all...]
/frameworks/native/libs/input/
H A DInputDevice.cpp160 int32_t axis, uint32_t source) const {
164 if (range.axis == axis && range.source == source) {
171 void InputDeviceInfo::addSource(uint32_t source) { argument
172 mSources |= source;
175 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, argument
177 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
/frameworks/av/cmds/stagefright/
H A Drecord.cpp118 sp<MediaSource> source;
142 source = extractor->getTrack(i);
146 return source;
191 sp<MediaSource> source = createSource(argv[1]);
193 if (source == NULL) {
198 sp<MetaData> meta = source->getFormat();
201 client.interface(), meta, false /* createEncoder */, source);
267 CameraSource *source = CameraSource::Create(
269 source->start();
271 printf("source
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java123 public CursorAnchorInfo(final Parcel source) { argument
124 mSelectionStart = source.readInt();
125 mSelectionEnd = source.readInt();
126 mComposingTextStart = source.readInt();
127 mComposingText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
128 mInsertionMarkerFlags = source.readInt();
129 mInsertionMarkerHorizontal = source.readFloat();
130 mInsertionMarkerTop = source.readFloat();
131 mInsertionMarkerBaseline = source.readFloat();
132 mInsertionMarkerBottom = source
[all...]
H A DInputMethodSubtype.java284 InputMethodSubtype(Parcel source) { argument
286 mSubtypeNameResId = source.readInt();
287 mSubtypeIconResId = source.readInt();
288 s = source.readString();
290 s = source.readString();
292 s = source.readString();
294 mIsAuxiliary = (source.readInt() == 1);
295 mOverridesImplicitlyEnabledSubtype = (source.readInt() == 1);
296 mSubtypeHashCode = source.readInt();
297 mSubtypeId = source
[all...]
/frameworks/base/core/java/android/os/
H A DDebug.java353 public void readFromParcel(Parcel source) { argument
354 dalvikPss = source.readInt();
355 dalvikSwappablePss = source.readInt();
356 dalvikPrivateDirty = source.readInt();
357 dalvikSharedDirty = source.readInt();
358 dalvikPrivateClean = source.readInt();
359 dalvikSharedClean = source.readInt();
360 dalvikSwappedOut = source.readInt();
361 nativePss = source.readInt();
362 nativeSwappablePss = source
387 MemoryInfo(Parcel source) argument
[all...]
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp36 AMRSource(const sp<DataSource> &source,
100 static status_t getFrameSizeByOffset(const sp<DataSource> &source, argument
103 if (source->readAt(offset, &header, 1) < 1) {
116 AMRExtractor::AMRExtractor(const sp<DataSource> &source) argument
117 : mDataSource(source),
143 if (getFrameSizeByOffset(source, offset, mIsWide, &frameSize) != OK) {
203 const sp<DataSource> &source, const sp<MetaData> &meta,
205 : mDataSource(source),
330 const sp<DataSource> &source, String8 *mimeType, float *confidence,
334 if (source
202 AMRSource( const sp<DataSource> &source, const sp<MetaData> &meta, bool isWide, const off64_t *offset_table, size_t offset_table_length) argument
329 SniffAMR( const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *) argument
[all...]
H A DAACExtractor.cpp39 AACSource(const sp<DataSource> &source,
95 static size_t getAdtsFrameLength(const sp<DataSource> &source, off64_t offset, size_t* headerSize) { argument
103 if (source->readAt(offset, &syncword, 2) != 2) {
111 if (source->readAt(offset + 1, &protectionAbsent, 1) < 1) {
117 if (source->readAt(offset + 3, &header, 3) < 3) {
136 const sp<DataSource> &source, const sp<AMessage> &_meta)
137 : mDataSource(source),
176 if ((frameSize = getAdtsFrameLength(source, offset, NULL)) == 0) {
236 const sp<DataSource> &source, const sp<MetaData> &meta,
239 : mDataSource(source),
135 AACExtractor( const sp<DataSource> &source, const sp<AMessage> &_meta) argument
235 AACSource( const sp<DataSource> &source, const sp<MetaData> &meta, const Vector<uint64_t> &offset_vector, int64_t frame_duration_us) argument
334 SniffAAC( const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *meta) argument
[all...]
H A DWVMExtractor.cpp47 WVMExtractor::WVMExtractor(const sp<DataSource> &source) argument
48 : mDataSource(source)
62 if (source->DrmInitialization(
64 mImpl = (*getInstanceFunc)(source);
169 const sp<DataSource> &source, String8 *mimeType, float *confidence,
184 if ((*snifferFunc)(source)) {
168 SniffWVM( const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *) argument
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextDriver.cpp67 sp<TimedTextSource> source; local
68 source = mTextSourceVector.valueFor(index);
69 mPlayer->setDataSource(source);
192 sp<TimedTextSource> source = local
194 if (source == NULL) {
198 mTextSourceVector.add(trackIndex, source);
238 sp<TimedTextSource> source; local
240 source = TimedTextSource::CreateTimedTextSource(
244 if (source == NULL) {
245 ALOGE("Failed to create timed text source");
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageItemInfo.java314 protected PackageItemInfo(Parcel source) { argument
315 name = source.readString();
316 packageName = source.readString();
317 labelRes = source.readInt();
319 = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
320 icon = source.readInt();
321 logo = source.readInt();
322 metaData = source.readBundle();
323 banner = source.readInt();
324 showUserIcon = source
[all...]
/frameworks/native/include/input/
H A DInputTransport.h67 int32_t source; member in struct:android::InputMessage::Body::Key
85 int32_t source; member in struct:android::InputMessage::Body::Motion
212 int32_t source,
233 int32_t source,
355 // Batched motion events per device and source.
361 // Touch state per device and source, only for sources of class pointer.
385 int32_t source; member in struct:android::InputConsumer::TouchState
391 void initialize(int32_t deviceId, int32_t source) { argument
393 this->source = source;
[all...]
/frameworks/native/services/inputflinger/
H A DInputListener.cpp45 NotifyKeyArgs::NotifyKeyArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, argument
49 eventTime(eventTime), deviceId(deviceId), source(source), policyFlags(policyFlags),
55 eventTime(other.eventTime), deviceId(other.deviceId), source(other.source),
69 NotifyMotionArgs::NotifyMotionArgs(nsecs_t eventTime, int32_t deviceId, uint32_t source, argument
75 eventTime(eventTime), deviceId(deviceId), source(source), policyFlags(policyFlags),
86 eventTime(other.eventTime), deviceId(other.deviceId), source(other.source),
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
H A DCropView.java72 final float imageWidth = mRenderer.source.getImageWidth();
73 final float imageHeight = mRenderer.source.getImageHeight();
90 float initialCenterX = mRenderer.source.getImageWidth() / 2f;
91 float initialCenterY = mRenderer.source.getImageHeight() / 2f;
134 return new Point(mRenderer.source.getImageWidth(), mRenderer.source.getImageHeight());
137 public void setTileSource(TileSource source, Runnable isReadyCallback) { argument
138 super.setTileSource(source, isReadyCallback);
145 updateMinScale(getWidth(), getHeight(), source, true);
149 updateMinScale(w, h, mRenderer.source, fals
158 updateMinScale(int w, int h, TileSource source, boolean resetScale) argument
[all...]
/frameworks/base/core/java/android/net/
H A DIpConfiguration.java89 public IpConfiguration(IpConfiguration source) { argument
91 if (source != null) {
92 init(source.ipAssignment, source.proxySettings,
93 source.staticIpConfiguration, source.httpProxy);
H A DStaticIpConfiguration.java59 public StaticIpConfiguration(StaticIpConfiguration source) { argument
61 if (source != null) {
63 ipAddress = source.ipAddress;
64 gateway = source.gateway;
65 dnsServers.addAll(source.dnsServers);
66 domains = source.domains;
/frameworks/base/telecomm/java/android/telecom/
H A DDisconnectCause.java177 public DisconnectCause createFromParcel(Parcel source) {
178 int code = source.readInt();
179 CharSequence label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
180 CharSequence description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
181 String reason = source.readString();
182 int tone = source.readInt();
/frameworks/base/core/java/android/text/
H A DLoginFilter.java44 * of <code>source</code>. Returns the CharSequence that we want
50 public CharSequence filter(CharSequence source, int start, int end, argument
66 char c = source.charAt(i);
75 modification = new SpannableStringBuilder(source, start, end);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DOneTouchPlayAction.java35 // source device can simply send <Text|Image View On> and <Active Source> in succession
55 static OneTouchPlayAction create(HdmiCecLocalDevicePlayback source, argument
57 if (source == null || callback == null) {
61 return new OneTouchPlayAction(source, targetAddress,
/frameworks/base/tools/aapt/tests/
H A DCrunchCache_test.cpp29 String8 source("res");
49 data.add(source,sourceData);
52 CrunchCache cc(source,dest,ff);
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DAesCtrDecryptor.h34 const uint8_t* source, uint8_t* destination,
/frameworks/av/include/media/nbaio/
H A DSourceAudioBufferProvider.h30 SourceAudioBufferProvider(const sp<NBAIO_Source>& source);
43 const sp<NBAIO_Source> mSource; // the wrapped source

Completed in 1212 milliseconds

1234567891011>>