Searched refs:target (Results 1 - 25 of 385) sorted by path

1234567891011>>

/frameworks/av/include/media/
H A DAudioTrack.h822 TargetTimeline target);
H A DIAudioTrack.h84 or Tungsten time. The values for target are defined in AudioTrack.h */
86 int target) = 0;
/frameworks/av/include/media/stagefright/foundation/
H A DAHandlerReflector.h27 AHandlerReflector(T *target) argument
28 : mTarget(target) {
33 sp<T> target = mTarget.promote(); local
34 if (target != NULL) {
35 target->onMessageReceived(msg);
H A DAMessage.h33 AMessage(uint32_t what = 0, ALooper::handler_id target = 0);
41 void setTarget(ALooper::handler_id target);
42 ALooper::handler_id target() const;
81 // Posts the message to its target and waits for a response (or error)
/frameworks/av/media/libmedia/
H A DAudioTrack.cpp1515 TargetTimeline target)
1517 return mAudioTrack->setMediaTimeTransform(xform, target);
1514 setMediaTimeTransform(const LinearTransform& xform, TargetTimeline target) argument
H A DCharacterEncodingDetector.cpp227 char* target = buffer; local
229 ucnv_convertEx(mUtf8Conv, conv, &target, target + targetLength,
238 *target = 0;
240 while (--target > buffer && *target == ' ') {
241 *target = 0;
H A DIAudioTrack.cpp151 int target) {
158 data.writeInt32(target);
263 int target = data.readInt32(); local
264 reply->writeInt32(setMediaTimeTransform(xform, target));
150 setMediaTimeTransform(const LinearTransform& xform, int target) argument
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp113 void setCodec(const sp<OMXCodec> &target) { argument
114 mTarget = target;
835 // Check whether the target color format is supported.
1069 // Are the target profile and level supported by the encoder?
2377 "returning output buffer at target timestamp "
/frameworks/av/media/libstagefright/foundation/
H A DALooperRoster.cpp103 sp<ALooper> looper = findLooper(msg->target());
118 ssize_t index = mHandlers.indexOfKey(msg->target());
131 msg->target());
162 sp<ALooper> looper = findLooper(msg->target());
167 msg->target());
H A DAMessage.cpp39 AMessage::AMessage(uint32_t what, ALooper::handler_id target) argument
41 mTarget(target),
61 ALooper::handler_id AMessage::target() const { function in class:android::AMessage
441 tmp = StringPrintf(", target = %d", mTarget);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h489 int target);
H A DAudioMixer.cpp737 * @param newVolume set volume target in floating point [0.0, 1.0].
740 * @param pIntSetVolume pointer to the U4.12 integer target volume, set on return.
743 * @param pSetVolume pointer to the float target volume, set on return.
790 void AudioMixer::setParameter(int name, int target, int param, void *value) argument
799 switch (target) {
889 target == RAMP_VOLUME ? mState.frameCount : 0,
893 target == VOLUME ? "VOLUME" : "RAMP_VOLUME", track.auxLevel);
900 target == RAMP_VOLUME ? mState.frameCount : 0,
906 target == VOLUME ? "VOLUME" : "RAMP_VOLUME", param - VOLUME0,
917 LOG_ALWAYS_FATAL("setParameter: bad target
[all...]
H A DAudioMixer.h77 // for target TRACK
85 // for target RESAMPLE
97 // for target RAMP_VOLUME and VOLUME (8 channels max)
120 void setParameter(int name, int target, int param, void *value);
H A DPlaybackTracks.h207 TimedAudioTrack::TargetTimeline target);
H A DTracks.cpp338 const LinearTransform& xform, int target) {
346 xform, static_cast<TimedAudioTrack::TargetTimeline>(target));
1355 const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) {
1359 target);
1361 if (!(target == TimedAudioTrack::LOCAL_TIME ||
1362 target == TimedAudioTrack::COMMON_TIME)) {
1368 mMediaTimeTransformTarget = target;
337 setMediaTimeTransform( const LinearTransform& xform, int target) argument
1354 setMediaTimeTransform( const LinearTransform& xform, TimedAudioTrack::TargetTimeline target) argument
/frameworks/av/services/audiopolicy/
H A DAudioPolicyManager.cpp3326 String8 target; local
3327 if (param.get(String8("target"), target) != NO_ERROR) {
3328 target = "Manager";
3358 if (target == "Manager") {
3377 if (target == "Manager") {
3390 if (target == "Manager") {
/frameworks/base/cmds/app_process/
H A DAndroid.mk27 # depending on the target configuration.
/frameworks/base/cmds/bmgr/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/idmap/
H A Dscan.cpp94 String16 target; local
102 target = String16(p, len);
114 if (target == String16(target_package_name)) {
229 ALOGE("error: failed to create idmap for target=%s overlay=%s idmap=%s\n",
/frameworks/base/cmds/ime/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/input/
H A DAndroid.mk13 $(transform-prebuilt-to-target)
/frameworks/base/cmds/pm/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/svc/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/core/java/android/animation/
H A DAnimator.java388 * ObjectAnimator object will use the information it has about its target object
391 * information (such as a target object) to gather these values.
400 * ObjectAnimator object will use the information it has about its target object
403 * information (such as a target object) to gather these values.
409 * Sets the target object whose property will be animated by this animation. Not all subclasses
410 * operate on target objects (for example, {@link ValueAnimator}, but this method
414 * @param target The object being animated
416 public void setTarget(Object target) { argument
H A DAnimatorSet.java225 * Sets the target object for all current {@link #getChildAnimations() child animations}
229 * @param target The object being animated
232 public void setTarget(Object target) { argument
236 ((AnimatorSet)animation).setTarget(target);
238 ((ObjectAnimator)animation).setTarget(target);

Completed in 307 milliseconds

1234567891011>>