Searched defs:set (Results 1 - 25 of 260) sorted by path

1234567891011

/frameworks/av/camera/
H A DCameraParameters.cpp238 void CameraParameters::set(const char *key, const char *value) function in class:android::CameraParameters
254 void CameraParameters::set(const char *key, int value) function in class:android::CameraParameters
258 set(key, str);
265 set(key, str);
351 set(KEY_PREVIEW_SIZE, str);
381 set(KEY_VIDEO_SIZE, str);
400 set(KEY_PREVIEW_FRAME_RATE, fps);
418 set(KEY_PREVIEW_FORMAT, format);
430 set(KEY_PICTURE_SIZE, str);
450 set(KEY_PICTURE_FORMA
[all...]
H A DCameraParameters2.cpp92 void CameraParameters2::set(const char *key, const char *value) function in class:android::CameraParameters2
110 void CameraParameters2::set(const char *key, int value)
114 set(key, str);
121 set(key, str);
165 ALOGW("%s: Key1 (%s) was not set", __FUNCTION__, key1);
168 ALOGW("%s: Key2 (%s) was not set", __FUNCTION__, key2);
239 set(CameraParameters::KEY_PREVIEW_SIZE, str);
269 set(CameraParameters::KEY_VIDEO_SIZE, str);
288 set(CameraParameters::KEY_PREVIEW_FRAME_RATE, fps);
307 set(CameraParameter
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DAData.h47 * data.set(5);
52 * data.set(6.0f);
61 * objdata.set(buf);
69 * objdata.set(obj); // storing as sp<RefBase>
437 * Container that can store an arbitrary object of a set of specified types.
763 bool set(const T &data) { function in struct:android::AData::Custom
794 bool set(T &&data) { function in struct:android::AData::Custom
H A DMutexed.h120 inline void set(T& o) const { get() = o; } function in class:android::Mutexed::Locked
/frameworks/av/media/libaudioclient/
H A DAudioEffect.cpp55 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
88 mStatus = set(pType, pUuid, priority, cbf, user, sessionId, io);
91 status_t AudioEffect::set(const effect_uuid_t *type, function in class:android::AudioEffect
103 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type->timeLow : 0);
112 ALOGE("set(): Could not get audioflinger");
138 ALOGE("set(): AudioFlinger could not create effect, status: %d", mStatus);
161 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d pid %d", this, mDescriptor.name, mId,
H A DAudioRecord.cpp102 mStatus = set(inputSource, sampleRate, format, channelMask, frameCount, cbf, user,
135 status_t AudioRecord::set( function in class:android::AudioRecord
152 ALOGV("set(): inputSource %d, sampleRate %u, format %#x, channelMask %#x, frameCount %zu, "
181 // invariant that mAudioRecord != 0 is true only after set() returns successfully
237 ALOGV("set(): mSessionId %d", mSessionId);
693 // invariant that mAudioRecord != 0 is true only after set() returns successfully
1010 // These fields don't need to be cached, because they are assigned only by set():
H A DAudioTrack.cpp221 mStatus = set(streamType, sampleRate, format, channelMask,
253 mStatus = set(streamType, sampleRate, format, channelMask,
287 status_t AudioTrack::set( function in class:android::AudioTrack
308 ALOGV("set(): streamType %d, sampleRate %u, format %#x, channelMask %#x, frameCount %zu, "
355 ALOGV("set() streamType %d frameCount %zu flags %04x", streamType, frameCount, flags);
357 // invariant that mAudioTrack != 0 is true only after set() returns successfully
936 //set effective rates
1103 // current position, compute a new position or loop parameters, and then set that position or
1354 // Same comment as below about ignoring frameCount parameter for set()
1384 // But when initializing a shared buffer AudioTrack via set(),
[all...]
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerDyn.cpp117 // set class member vars
162 void AudioResamplerDyn<TC, TI, TO>::Constants::set( function in class:android::AudioResamplerDyn::Constants
187 mConstants.set(128, 8, mSampleRate, mSampleRate); // TODO: set better
237 // create and set filter
392 mConstants.set(phases, halfLength, inSampleRate, mSampleRate);
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp161 void set(const TYPE& value, uint32_t pos) { function in struct:android::MPEG4Writer::Track::ListTableEntries
315 // Sequence parameter set or picture parameter set
644 // The default MIN_MOOV_BOX_SIZE is set to 0.6% x 1MB / 2,
658 // Max file size limit is set
663 // Max file duration limit is set
669 // When both file size and duration limits are set,
675 // Only max file duration limit is set
710 * user does not ask to set it explicitly.
729 // If file size is set t
[all...]
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DAData.h47 * data.set(5);
52 * data.set(6.0f);
61 * objdata.set(buf);
69 * objdata.set(obj); // storing as sp<RefBase>
437 * Container that can store an arbitrary object of a set of specified types.
763 bool set(const T &data) { function in struct:android::AData::Custom
794 bool set(T &&data) { function in struct:android::AData::Custom
H A DMutexed.h120 inline void set(T& o) const { get() = o; } function in class:android::Mutexed::Locked
/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp175 data.set(5);
180 data.set(6.0f);
189 objdata.set(buf);
197 objdata.set(obj); // storing as sp<RefBase>
241 EXPECT_TRUE(u.set<int>(4));
253 EXPECT_TRUE(u.set<int>(5));
254 EXPECT_TRUE(u.set<int>(6));
258 EXPECT_TRUE(u.set<const char *>("hello"));
269 EXPECT_TRUE(u.set<const char *>("world"));
270 EXPECT_TRUE(u.set<cons
280 void set(std::unique_ptr<int> &dst, std::unique_ptr<int> &&src) { function
284 void set(std::unique_ptr<int> &dst, std::unique_ptr<int> &src) { function
[all...]
/frameworks/av/media/libstagefright/include/foundation/
H A DAData.h47 * data.set(5);
52 * data.set(6.0f);
61 * objdata.set(buf);
69 * objdata.set(obj); // storing as sp<RefBase>
437 * Container that can store an arbitrary object of a set of specified types.
763 bool set(const T &data) { function in struct:android::AData::Custom
794 bool set(T &&data) { function in struct:android::AData::Custom
H A DMutexed.h120 inline void set(T& o) const { get() = o; } function in class:android::Mutexed::Locked
/frameworks/av/media/mtp/
H A DMtpStringBuffer.cpp37 set(src);
44 set(src);
58 void MtpStringBuffer::set(const char* src) { function in class:android::MtpStringBuffer
103 void MtpStringBuffer::set(const uint16_t* src) { function in class:android::MtpStringBuffer
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DInputSource.cpp47 status_t Element<audio_source_t>::set(audio_devices_t devices) function in class:android::audio_policy::Element
53 ALOGE("%s: trying to set an invalid device 0x%X for input source %s",
H A DStrategy.cpp47 status_t Element<routing_strategy>::set<audio_devices_t>(audio_devices_t devices) function in class:android::audio_policy::Element
50 ALOGE("%s: trying to set an invalid device 0x%X for strategy %s",
H A DStream.cpp45 * @return NO_ERROR if the strategy is set correctly, error code otherwise.
48 status_t Element<audio_stream_type_t>::set<routing_strategy>(routing_strategy strategy) function in class:android::audio_policy::Element
66 status_t Element<audio_stream_type_t>::set<audio_stream_type_t>(audio_stream_type_t volumeProfile) function in class:android::audio_policy::Element
H A DUsage.cpp37 status_t Element<audio_usage_t>::set<routing_strategy>(routing_strategy strategy) function in class:android::audio_policy::Element
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp122 params.set(CameraParameters::KEY_PREFERRED_PREVIEW_SIZE_FOR_VIDEO,
134 params.set(CameraParameters::KEY_SUPPORTED_PREVIEW_SIZES,
145 params.set(CameraParameters::KEY_SUPPORTED_VIDEO_SIZES,
154 params.set(CameraParameters::KEY_PREVIEW_FORMAT,
214 params.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FORMATS,
226 params.set(CameraParameters::KEY_PREVIEW_FRAME_RATE,
233 params.set(CameraParameters::KEY_PREVIEW_FPS_RANGE,
250 params.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FPS_RANGE,
284 params.set(CameraParameters::KEY_SUPPORTED_PREVIEW_FRAME_RATES,
309 params.set(CameraParameter
1261 status_t Parameters::set(const String8& paramString) { function in class:android::camera2::Parameters
[all...]
/frameworks/av/services/mediaanalytics/
H A DMediaAnalyticsService.cpp125 MediaAnalyticsService::SummarizerSet *set = new MediaAnalyticsService::SummarizerSet(); local
127 set->setStarted(now);
129 set->appendSummarizer(new MetricsSummarizerExtractor("extractor"));
130 set->appendSummarizer(new MetricsSummarizerCodec("codec"));
131 set->appendSummarizer(new MetricsSummarizerPlayer("nuplayer"));
132 set->appendSummarizer(new MetricsSummarizerRecorder("recorder"));
135 set->appendSummarizer(new MetricsSummarizer(NULL));
137 // inject this set at the BACK of the list.
138 mSummarizerSets->push_back(set);
139 mCurrentSet = set;
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java252 * The Android package of the caller will be set in the options bundle by the
262 * Boolean, if set and 'customTokens' the authenticator is responsible for
296 * Account visibility was not set. Default visibility value will be used.
375 * Key to set visibility for applications which satisfy one of the following conditions:
387 * See {@link #getAccountVisibility}. If the value was not set by authenticator
394 * Key to set default visibility for applications which don't satisfy conditions in
395 * {@link PACKAGE_NAME_KEY_LEGACY_VISIBLE}. If the value was not set by authenticator
900 * @param visibility Map from packageName to visibility values which will be set before account
919 * Returns package names and visibility which were explicitly set for given account.
1368 * @param account The account whose password is to be set
2248 protected void set(Bundle bundle) { method in class:AccountManager.AmsTask
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java35 * This class plays a set of {@link Animator} objects in the specified order. Animations
36 * can be set up to play together, in sequence, or after a specified delay.
41 * a set of animations all at once, or the {@link AnimatorSet#play(Animator)} can be
46 * <p>It is possible to set up a <code>AnimatorSet</code> with circular dependencies between
47 * its animations. For example, an animation a1 could be set up to start before animation a2, a2
91 * starting the set, and the nodes are placed in sorted order into the
114 // Root of the dependency tree of all the animators in the set. In this tree, parent-child
121 // simply means that there is no duration set on the AnimatorSet. When a real duration is
122 // set, it is passed along to the child animations.
125 // Records the interpolator for the set
748 isEmptySet(AnimatorSet set) argument
[all...]
/frameworks/base/core/java/android/app/
H A DAlarmManager.java187 * time the alarm is set to the time it is delivered, or delivery will fail. Only
188 * one-shot alarms can be set using this mechanism, not repeating alarms.
346 public void set(@AlarmType int type, long triggerAtMillis, PendingIntent operation) { method in class:AlarmManager
352 * Direct callback version of {@link #set(int, long, PendingIntent)}. Rather than
373 public void set(@AlarmType int type, long triggerAtMillis, String tag, OnAlarmListener listener, method in class:AlarmManager
385 * <p>Like {@link #set}, except you can also supply a period at which
396 * set a recurring alarm for the top of every hour but the phone was asleep
422 * @see #set
442 * is similar to {@link #set(int, long, PendingIntent)}, but allows the
455 * {@link #set(in
601 public void set(@AlarmType int type, long triggerAtMillis, long windowMillis, method in class:AlarmManager
617 public void set(@AlarmType int type, long triggerAtMillis, long windowMillis, method in class:AlarmManager
636 public void set(@AlarmType int type, long triggerAtMillis, long windowMillis, method in class:AlarmManager
[all...]
H A DApplicationPackageManager.java379 // depending on what the current runtime's instruction set is.
383 // Get the instruction set that the libraries of secondary Abi is supported.
390 // Everything will be set up correctly because info.nativeLibraryDir will
2191 int match, ComponentName[] set, ComponentName activity) {
2193 mPM.addPreferredActivity(filter, match, set, activity, mContext.getUserId());
2201 ComponentName[] set, ComponentName activity, int userId) {
2203 mPM.addPreferredActivity(filter, match, set, activity, userId);
2211 int match, ComponentName[] set, ComponentName activity) {
2213 mPM.replacePreferredActivity(filter, match, set, activity, mContext.getUserId());
2221 int match, ComponentName[] set, ComponentNam
2190 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
2200 addPreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
2210 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
2220 replacePreferredActivityAsUser(IntentFilter filter, int match, ComponentName[] set, ComponentName activity, int userId) argument
[all...]

Completed in 232 milliseconds

1234567891011