Searched refs:as (Results 1 - 25 of 36) 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.java91 IccCardApplicationStatus as,
94 if (DBG) log("Creating UiccApp: " + as);
96 mAppState = as.app_state;
97 mAppType = as.app_type;
99 mPersoSubState = as.perso_substate;
100 mAid = as.aid;
101 mAppLabel = as.app_label;
102 mPin1Replaced = (as.pin1_replaced != 0);
103 mPin1State = as.pin1;
104 mPin2State = as
90 UiccCardApplication(UiccCard uiccCard, IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
118 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.java47 * transport over Bluetooth. It is also known as the Serial Port Profile (SPP).
56 * <p>To create a {@link BluetoothSocket} as a server (or "host"), see the
59 * <p>Once the socket is connected, whether initiated as a client or accepted
60 * as a server, open the IO streams by calling {@link #getInputStream} and
185 BluetoothSocket as = new BluetoothSocket(this);
186 as.mSocketState = SocketState.CONNECTED;
191 as.close();
194 as.mSocket = new LocalSocket(fds[0]);
195 as.mSocketIS = as
[all...]
/frameworks/base/core/tests/coretests/
H A DAndroid.mk32 # intermediate dir to include all the test apks as raw resource
44 # Use R_file_stamp as dependency because we want the test apks in place before the R.java is generated.
/frameworks/rs/cpu_ref/
H A DAndroid.mk21 LOCAL_CFLAGS += -no-integrated-as
22 LOCAL_ASFLAGS += -no-integrated-as
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp88 // The reference is only used as a proxy for callbacks.
182 android_media_MediaRecorder_setAudioSource(JNIEnv *env, jobject thiz, jint as) argument
184 ALOGV("setAudioSource(%d)", as);
185 if (as < AUDIO_SOURCE_DEFAULT ||
186 (as >= AUDIO_SOURCE_CNT && as != AUDIO_SOURCE_FM_TUNER)) {
192 process_media_recorder_call(env, mr->setAudioSource(as), "java/lang/RuntimeException", "setAudioSource failed.");
/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/compile/slang/
H A DAndroid.mk92 LOCAL_MODULE := llvm-rs-as
98 llvm-rs-as.cpp
/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.h160 // The codes are distributed as follow:
220 status_t setAudioSource(int as);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.h37 virtual status_t setAudioSource(int as);
H A DMediaRecorderClient.cpp110 status_t MediaRecorderClient::setAudioSource(int as) argument
112 ALOGV("setAudioSource(%d)", as);
121 return mRecorder->setAudioSource((audio_source_t)as);
/frameworks/base/data/fonts/
H A DAndroid.mk36 # The following fonts are distributed as symlink only.
99 # Build the rest of font files as prebuilt.
102 # It also serves as the module name and the dest file name.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DarmVCM4P2_SetPredDir_s.s37 ; * 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.s37 ; * position as defined in subclause 6.1.3.8, of ISO/IEC
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimationDrawable.java35 * which can be used as a View object's background.
38 * file, placed in the res/drawable/ folder, and set it as the background to a View object. Then, call
422 final AnimationState as = new AnimationState(state, this, res);
423 setConstantState(as);
H A DLevelListDrawable.java49 * <p>With this XML saved into the res/drawable/ folder of the project, it can be referenced as
241 final LevelListState as = new LevelListState(state, this, res);
242 setConstantState(as);
/frameworks/base/media/mca/filterfw/jni/
H A DAndroid.mk46 # it's difficult to do this for applications that are not supplied as
/frameworks/base/services/
H A DAndroid.mk18 # Services that will be built as part of services.jar
/frameworks/av/media/libmedia/
H A DIMediaRecorder.cpp121 status_t setAudioSource(int as) argument
123 ALOGV("setAudioSource(%d)", as);
126 data.writeInt32(as);
367 int as = data.readInt32(); local
368 reply->writeInt32(setAudioSource(as));
H A Dmediarecorder.cpp145 status_t MediaRecorder::setAudioSource(int as) argument
147 ALOGV("setAudioSource(%d)", as);
168 status_t ret = mMediaRecorder->setAudioSource(as);

Completed in 2653 milliseconds

12