Searched refs:level (Results 251 - 275 of 371) sorted by relevance

<<1112131415

/frameworks/av/media/libmedia/include/media/
H A Dmediaplayer.h262 status_t setAuxEffectSendLevel(float level);
/frameworks/av/media/libmedia/
H A Dmediaplayer.cpp738 status_t MediaPlayer::setAuxEffectSendLevel(float level) argument
740 ALOGV("MediaPlayer::setAuxEffectSendLevel(%f)", level);
742 mSendLevel = level;
744 return mPlayer->setAuxEffectSendLevel(level);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h179 status_t setParamVideoEncoderLevel(int32_t level);
H A DStagefrightRecorder.cpp84 static const char *kRecorderVideoLevel = "android.media.mediarecorder.video-encoder-level";
649 status_t StagefrightRecorder::setParamVideoEncoderLevel(int32_t level) { argument
650 ALOGV("setParamVideoEncoderLevel: %d", level);
654 mVideoEncoderLevel = level;
823 } else if (key == "video-param-encoder-level") {
824 int32_t level; local
825 if (safe_strtoi32(value.string(), &level)) {
826 return setParamVideoEncoderLevel(level);
1693 format->setInt32("level", mVideoEncoderLevel);
2171 snprintf(buffer, SIZE, " Encoder level
[all...]
H A DMediaPlayerService.h123 status_t setAuxEffectSendLevel(float level);
338 virtual status_t setAuxEffectSendLevel(float level);
/frameworks/base/core/java/android/util/
H A DLog.java200 * Checks to see whether or not a log for the specified tag is loggable at the specified level.
202 * The default level of any tag is set to INFO. This means that any level above and including
204 * if your tag should be logged. You can change the default level by setting a system property:
206 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS will
213 * @param level The level to check.
217 * tag limit of concern after this API level.
219 public static native boolean isLoggable(String tag, int level); argument
254 * The error will always be logged at level ASSER
[all...]
/frameworks/base/libs/hwui/
H A DRenderNode.h251 void output(std::ostream& output, uint32_t level);
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.h64 // TODO: Rename to Renderer or some other per-window, top-level manager
146 static void trimMemory(RenderThread& thread, int level);
/frameworks/base/media/java/android/media/
H A DSoundPool.java86 * play. For each level, there is a set of unique sounds that are used only
87 * by that level. In this case, the game logic should create a new SoundPool
88 * object when the first level is loaded. The level data itself might contain
89 * the list of sounds to be used by this level. The loading logic iterates
108 * <p>In our example, when the player has completed the level, the game
111 * another level, a new SoundPool is created, sounds are loaded, and play
412 int playerSetAuxEffectSendLevel(boolean muting, float level) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLightBarController.java203 public void onBatteryLevelChanged(int level, boolean pluggedIn, boolean charging) { argument
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DAutofillManagerService.java386 void setLogLevel(int level) { argument
387 Slog.i(TAG, "setLogLevel(): " + level);
392 if (level == AutofillManager.FLAG_ADD_CLIENT_VERBOSE) {
394 } else if (level == AutofillManager.FLAG_ADD_CLIENT_DEBUG) {
/frameworks/base/services/core/java/com/android/server/
H A DBatteryService.java66 * <p>BatteryService monitors the charging status, and charge level of the device
74 * <p>&quot;scale&quot; - int, the maximum value for the charge level</p>
75 * <p>&quot;level&quot; - int, charge level, from 0 through &quot;scale&quot; inclusive</p>
273 * - is just un-plugged (previously was plugged) and battery level is
275 * - is not plugged and battery level falls to WARNING boundary
368 // Let the battery stats keep track of the current level.
398 // battery level has changed; so don't log until it does.
449 // absolutely check to see if we are now above the warning level.
559 Slog.d(TAG, "Sending ACTION_BATTERY_CHANGED. level
648 getIconLocked(int level) argument
[all...]
/frameworks/base/wifi/tests/src/android/net/wifi/
H A DWifiNetworkScoreCacheTest.java81 0 /* level */,
168 result.level = rssi;
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp161 SLpermille level = 0; local
163 result = (*caller)->GetFillLevel(caller, &level);
168 printf("prefetch level=%d status=0x%x event=%d\n", level, status, event);
171 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c96 XApermille level = 0; local
98 result = (*caller)->GetFillLevel(caller, &level);
104 printf("PrefetchEventCallback: Buffer fill level is = %d\n", level);
111 && (level == 0) && (status == XA_PREFETCHSTATUS_UNDERFLOW)) {
/frameworks/av/media/libaudioclient/
H A DAudioTrack.cpp808 status_t AudioTrack::setAuxEffectSendLevel(float level) argument
811 if (isnanf(level) || level < GAIN_FLOAT_ZERO || level > GAIN_FLOAT_UNITY) {
816 mSendLevel = level;
817 mProxy->setSendLevel(level);
822 void AudioTrack::getAuxEffectSendLevel(float* level) const
824 if (level != NULL) {
825 *level = mSendLevel;
2054 // buffer fill level
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp88 static void setLogLevel(int level) { argument
89 android_atomic_write(level, &gLogLevel);
1016 " API level, evicting prior client...");
2170 bool CameraService::BasicClient::canCastToApiClient(apiLevel level) const {
2172 return level == API_2;
2298 bool CameraService::Client::canCastToApiClient(apiLevel level) const {
2299 return level == API_1;
2571 // change logging level
2574 int level = atoi(levelStr.string()); local
2575 dprintf(fd, "\nSetting log level t
[all...]
H A DCameraService.h71 // The effective API level. The Camera2 API running in LEGACY mode counts as API_1.
231 // Check what API level is used for this client. This is used to determine which
233 virtual bool canCastToApiClient(apiLevel level) const;
344 // Check what API level is used for this client. This is used to determine which
346 virtual bool canCastToApiClient(apiLevel level) const;
658 * Add a event log message that a serious service-level error has occured
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerShellCommand.java1686 int level;
1689 level = ComponentCallbacks2.TRIM_MEMORY_UI_HIDDEN;
1692 level = ComponentCallbacks2.TRIM_MEMORY_RUNNING_MODERATE;
1695 level = ComponentCallbacks2.TRIM_MEMORY_BACKGROUND;
1698 level = ComponentCallbacks2.TRIM_MEMORY_RUNNING_LOW;
1701 level = ComponentCallbacks2.TRIM_MEMORY_MODERATE;
1704 level = ComponentCallbacks2.TRIM_MEMORY_RUNNING_CRITICAL;
1707 level = ComponentCallbacks2.TRIM_MEMORY_COMPLETE;
1710 getErrPrintWriter().println("Error: Unknown level option: " + levelArg);
1713 if (!mInterface.setProcessMemoryTrimLevel(proc, userId, level)) {
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2661 A: battery level changed and an int follows with battery data.
2678 Battery level int: if A in the first token is set,
2685 L: the battery level (out of 100).
2722 History step details struct: if D in the battery level int is set,
2734 // Flag in delta int: a new battery level int follows.
2761 // from a battery level change.
3265 // record changes to the battery level and the most interesting states.
3267 // record changes to the battery level.
3383 // record changes to the battery level and the most interesting states.
3385 // record changes to the battery level
10388 setOnBatteryLocked(final long mSecRealtime, final long mSecUptime, final boolean onBattery, final int oldStatus, final int level, final int chargeUAh) argument
10553 setBatteryStateLocked(int status, int health, int plugType, int level, int temp, int volt, int chargeUAh, int chargeFullUAh) argument
[all...]
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java794 private void printGroupTree(VGroup currentGroup, int level) { argument
796 for (int i = 0; i < level; i++) {
807 printGroupTree((VGroup) child, level + 1);
809 ((VPath) child).printVPath(level + 1);
1136 // Mi the local matrix at level i of the group tree.
1522 public void printVPath(int level) { argument
1524 for (int i = 0; i < level; i++) {
/frameworks/av/media/libstagefright/omx/
H A DOMXNodeInstance.cpp60 #define CLOGI_(level, fn, fmt, ...) \
61 ALOGI_IF(DEBUG >= (level), #fn "(%p:%s, " fmt ")", mHandle, mName, ##__VA_ARGS__)
62 #define CLOGD_(level, fn, fmt, ...) \
63 ALOGD_IF(DEBUG >= (level), #fn "(%p:%s, " fmt ")", mHandle, mName, ##__VA_ARGS__)
354 ALOGV("debug level for %s is %d", name, DEBUG);
530 // bump internal-state debug level for 2 input and output frames past a command
1661 // if logging at internal state level
1744 // bump internal-state debug level for 2 input frames past a buffer with CSD
2082 ADebug::Level level = ADebug::kDebugInternalState; local
2090 level
[all...]
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHalHidl.cpp397 halLevels[i].levelPercent = extra->levels[i].level;
547 extra->levels[i].level = halExtra->levels[i].levelPercent;
/frameworks/base/core/java/android/app/
H A DIApplicationThread.aidl128 void scheduleTrimMemory(int level);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DRecentsTaskLoader.java410 public synchronized void onTrimMemory(int level) { argument
411 switch (level) {

Completed in 721 milliseconds

<<1112131415