Searched refs:as (Results 1 - 25 of 37) sorted by relevance

12

/frameworks/av/media/common_time/
H A DAndroid.mk4 # (binder marshalers for ICommonClock as well as common clock and local clock
/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/packages/WAPPushManager/
H A DAndroid.mk20 # This finds and builds the test apk as well, so a single make does both.
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSocket.java52 * transport over Bluetooth. It is also known as the Serial Port Profile (SPP).
61 * <p>To create a {@link BluetoothSocket} as a server (or "host"), see the
64 * <p>Once the socket is connected, whether initiated as a client or accepted
65 * as a server, open the IO streams by calling {@link #getInputStream} and
190 BluetoothSocket as = new BluetoothSocket(this);
191 as.mSocketState = SocketState.CONNECTED;
196 as.close();
199 as.mSocket = new LocalSocket(fds[0]);
200 as.mSocketIS = as
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLevelListDrawable.java47 * <p>With this XML saved into the res/drawable/ folder of the project, it can be referenced as
213 LevelListState as = new LevelListState(state, this, res);
214 mLevelListState = as;
215 setConstantState(as);
H A DAnimationDrawable.java32 * which can be used as a View object's background.
35 * file, placed in the res/drawable/ folder, and set it as the background to a View object. Then, call
357 AnimationState as = new AnimationState(state, this, res);
358 mAnimationState = as;
359 setConstantState(as);
H A DStateListDrawable.java327 StateListState as = new StateListState(state, this, res);
328 mStateListState = as;
329 setConstantState(as);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java210 final AnimatorSet as = mPressedAnim = new AnimatorSet();
217 as.playTogether(
221 as.setDuration(50);
225 as.playTogether(
230 as.setDuration(500);
232 as.start();
/frameworks/base/core/tests/coretests/
H A DAndroid.mk31 # intermediate dir to include all the test apks as raw resource
43 # Use R_file_stamp as dependency because we want the test apks in place before the R.java is generated.
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/
H A DAndroid.mk29 # Need to run as system app to get access to Settings. This test won't work for user builds.
/frameworks/base/media/mca/filterfw/
H A DAndroid.mk47 # it's difficult to do this for applications that are not supplied as
/frameworks/base/media/mca/filterfw/native/
H A DAndroid.mk42 # TODO: Build a shared library as well?
/frameworks/av/include/media/
H A DIMediaRecorder.h40 virtual status_t setAudioSource(int as) = 0;
H A DMediaRecorderBase.h36 virtual status_t setAudioSource(audio_source_t as) = 0;
H A Dmediarecorder.h152 // The codes are distributed as follow:
212 status_t setAudioSource(int as);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.h37 virtual status_t setAudioSource(int as);
H A DMediaRecorderClient.cpp109 status_t MediaRecorderClient::setAudioSource(int as) argument
111 ALOGV("setAudioSource(%d)", as);
120 return mRecorder->setAudioSource((audio_source_t)as);
/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/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s23 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s23 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk46 # it's difficult to do this for applications that are not supplied as
/frameworks/compile/slang/
H A DAndroid.mk133 LOCAL_MODULE := llvm-rs-as
139 llvm-rs-as.cpp
H A DSlangData.mk21 # LOCAL_MODULE -- set (as usual) to name the module being built
/frameworks/av/media/libmedia/
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));
H A Dmediarecorder.cpp142 status_t MediaRecorder::setAudioSource(int as) argument
144 ALOGV("setAudioSource(%d)", as);
165 status_t ret = mMediaRecorder->setAudioSource(as);

Completed in 677 milliseconds

12