Searched defs:as (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp142 status_t MediaRecorder::setAudioSource(int as) argument
144 ALOGV("setAudioSource(%d)", as);
165 status_t ret = mMediaRecorder->setAudioSource(as);
H A DIMediaRecorder.cpp119 status_t setAudioSource(int as) argument
121 ALOGV("setAudioSource(%d)", as);
124 data.writeInt32(as);
365 int as = data.readInt32(); local
366 reply->writeInt32(setAudioSource(as));
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp109 status_t MediaRecorderClient::setAudioSource(int as) argument
111 ALOGV("setAudioSource(%d)", as);
120 return mRecorder->setAudioSource((audio_source_t)as);
H A DStagefrightRecorder.cpp99 status_t StagefrightRecorder::setAudioSource(audio_source_t as) { argument
100 ALOGV("setAudioSource: %d", as);
101 if (as < AUDIO_SOURCE_DEFAULT ||
102 as >= AUDIO_SOURCE_CNT) {
103 ALOGE("Invalid audio source: %d", as);
107 if (as == AUDIO_SOURCE_DEFAULT) {
110 mAudioSource = as;
238 // We don't actually support this at all, as the media_server process
349 // The target bit rate may not be exactly the same as the requested.
350 // It depends on many factors, such as rat
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp86 // The reference is only used as a proxy for callbacks.
176 android_media_MediaRecorder_setAudioSource(JNIEnv *env, jobject thiz, jint as) argument
178 ALOGV("setAudioSource(%d)", as);
179 if (as < AUDIO_SOURCE_DEFAULT || as >= AUDIO_SOURCE_CNT) {
185 process_media_recorder_call(env, mr->setAudioSource(as), "java/lang/RuntimeException", "setAudioSource failed.");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCardApplication.java80 IccCardApplicationStatus as,
83 if (DBG) log("Creating UiccApp: " + as);
85 mAppState = as.app_state;
86 mAppType = as.app_type;
87 mPersoSubState = as.perso_substate;
88 mAid = as.aid;
89 mAppLabel = as.app_label;
90 mPin1Replaced = (as.pin1_replaced != 0);
91 mPin1State = as.pin1;
92 mPin2State = as
79 UiccCardApplication(UiccCard uiccCard, IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
105 update(IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
[all...]
/frameworks/base/graphics/java/android/renderscript/
H A DElement.java43 * android.renderscript.Element.DataKind#USER} cannot be used as input for a
47 * as {@link android.renderscript.Element#RGBA_8888} or {@link
114 * which are treated as a single unit for packing and alignment
118 * as 32 bits for alignment purposes.
190 * Return if a element is too complex for use as a data source for a Mesh or
208 * Elements could be simple, such as an int or a float, or a
209 * structure with multiple sub elements, such as a collection of
762 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) { argument
768 mArraySizes = as;
879 // Support only primitive integer/float/boolean types as vector
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DElement.java46 * be used as input for a {@link android.support.v8.renderscript.Sampler}. In
49 * should use bitmap-derived Elements such as
122 * which are treated as a single unit for packing and alignment
126 * as 32 bits for alignment purposes.
192 * Return if a element is too complex for use as a data source for a Mesh or
210 * Elements could be simple, such as an int or a float, or a
211 * structure with multiple sub elements, such as a collection of
709 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) { argument
715 mArraySizes = as;
792 // Support only primitive integer/float/boolean types as vector
[all...]
/frameworks/base/media/java/android/media/
H A DMediaFocusControl.java88 VolumeController volumeCtrl, AudioService as) {
93 mAudioService = as;
489 // matter as all entries respond to the same external focus gain
672 // stack and respond as if we had a new focus owner
1072 * No value wrap-around issues as we only act on equal values.
1309 * synchronized on mRCStack, but also BEFORE on mFocusLock as any change in either
1399 * Remove any entry in the remote control stack that has the same package name as packageName
1594 // traversal order doesn't matter here as we update all entries)
1678 * a single RemoteControlDisplay, NOT all of them, as with MSG_RCDISPLAY_UPDATE.
1767 // stack would make the entry disappear from the RemoteControlDisplay in conditions such as
87 MediaFocusControl(Looper looper, Context cntxt, VolumeController volumeCtrl, AudioService as) argument
[all...]

Completed in 250 milliseconds