HomeSort by relevance Sort by last modified time
    Searched defs:power (Results 76 - 100 of 151) sorted by null

1 2 34 5 6 7

  /frameworks/base/services/java/com/android/server/power/
Notifier.java 17 package com.android.server.power;
45 * Sends broadcasts about important power state changes.
47 * This methods of this class may be called by the power manager service while
86 // The current power state.
94 // The currently broadcasted power state. This reflects what other parts of the
369 // Broadcasted power state is unknown. Send wake up.
373 // Broadcasted power state is awake. Send asleep if needed.
383 // Broadcasted power state is asleep. Send awake if needed.
ShutdownThread.java 18 package com.android.server.power;
108 // ensure that only one thread is trying to power down.
268 * Shuts off power regardless of radio and bluetooth state if the alloted time has passed.
515 // Shutdown power
ElectronBeam.java 17 package com.android.server.power;
DisplayPowerController.java 17 package com.android.server.power;
47 * Controls the power state of the display.
52 * This component acts independently of the rest of the power manager service.
54 * via asynchronous callbacks to inform the power manager that something has
60 * Note that the power manager service guarantees that it will hold a suspend
173 // Asynchronous callbacks into the power manager service.
221 // The pending power request.
230 // True if the pending power request or wait for negative proximity flag
235 // Set to true when the important parts of the pending power request have been applied.
241 // Set to true if a power state update is required
    [all...]
PowerManagerService.java 17 package com.android.server.power;
71 * The power manager service is responsible for coordinating power management
81 // Message: Sent when a user activity timeout occurs to update the power state.
96 // Dirty bit: actual display power state was updated asynchronously
186 // A bitfield that indicates what parts of the power state have
191 // This is distinct from the screen power state, which is managed separately.
228 // The desired display power state. The actual state may lag behind the
229 // requested because it is updated asynchronously by the display power controller.
235 // True if the display power state has been fully applied, which means the displa
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 111 * save power, unless batch mode is active, in which case they must
544 * A note on false positive / false negative / power consumption tradeoff
545 * - The goal of this sensor is to save power.
547 * in terms of power, so it should be avoided.
563 * The whole point of this sensor type is to save power by keeping the
593 * This sensor must be low power. That is, if the step detection cannot be
645 * This sensor must be low power. That is, if the step detection cannot be
650 * The whole point of this sensor type is to save power by keeping the
856 /* rough estimate of this sensor's power consumption in mA */
857 float power; member in struct:sensor_t
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 2 * linux/sound/soc-dapm.h -- ALSA SoC Dynamic Audio Power Management
25 * SoC dynamic audio power managment
27 * We can have upto 4 power domains
30 * at stream time if power is not needed for sidetone, etc.
140 power) \
163 #define SND_SOC_DAPM_PRE_PMU 0x1 /* before widget power up */
164 #define SND_SOC_DAPM_POST_PMU 0x2 /* after widget power up */
165 #define SND_SOC_DAPM_PRE_PMD 0x4 /* before widget power down */
166 #define SND_SOC_DAPM_POST_PMD 0x8 /* after widget power down */
220 snd_soc_dapm_micbias, /* microphone bias (power) */
263 unsigned char power:1; \/* block power status *\/ member in struct:snd_soc_dapm_widget
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
soc-dapm.h 2 * linux/sound/soc-dapm.h -- ALSA SoC Dynamic Audio Power Management
25 * SoC dynamic audio power managment
27 * We can have upto 4 power domains
30 * at stream time if power is not needed for sidetone, etc.
140 power) \
163 #define SND_SOC_DAPM_PRE_PMU 0x1 /* before widget power up */
164 #define SND_SOC_DAPM_POST_PMU 0x2 /* after widget power up */
165 #define SND_SOC_DAPM_PRE_PMD 0x4 /* before widget power down */
166 #define SND_SOC_DAPM_POST_PMD 0x8 /* after widget power down */
220 snd_soc_dapm_micbias, /* microphone bias (power) */
263 unsigned char power:1; \/* block power status *\/ member in struct:snd_soc_dapm_widget
    [all...]
  /dalvik/vm/compiler/codegen/x86/
LowerAlu.cpp 999 int power = isPowerOfTwo(imm); local
1000 if(power < 1) return 0;
1003 //if imm is 2, power will be 1
1004 if(power == 1) {
1016 //power > 1
1018 sarl $power-1, tmp1
1019 shrl 32-$power, tmp1
1021 sarl $power, tmp1 */
1023 alu_binary_imm_reg(OpndSize_32, sar_opc, power-1, 1, false);
1024 alu_binary_imm_reg(OpndSize_32, shr_opc, 32-power, 1, false)
    [all...]
  /external/speex/libspeex/
mdf.c 161 spx_word32_t Davg1; /* 1st recursive average of the residual power difference */
162 spx_word32_t Davg2; /* 2nd recursive average of the residual power difference */
166 spx_word32_t *power; /* Power of the far-end signal */ member in struct:SpeexEchoState_
167 spx_float_t *power_1;/* Inverse power of far-end */
233 /** Compute power spectrum of a half-complex (packed) vector */
245 /** Compute power spectrum of a half-complex (packed) vector and accumulate */
257 /** Compute cross-power spectrum of a half-complex (packed) vectors and add to acc */
336 /** Compute weighted cross-power spectrum of a half-complex (packed) vector with conjugate */
465 st->power = (spx_word32_t*)speex_alloc((frame_size+1)*sizeof(spx_word32_t))
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInt.java 330 BigInt power = new BigInt(); local
331 power.putLongInt(p);
332 return bigExp(a, power);
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 48 * Provides control of power-related settings from a widget.
853 IPowerManager power = IPowerManager.Stub.asInterface( local
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 412 final int power = 1 - (int) d; local
413 final float magnitude = (float) Math.pow(10, power);
    [all...]
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 67 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/);
275 float step, power; local
276 ThresholdingParam(img, nLayers / 2, iMinLevel, iMaxLevel, step, power, 4);
613 void ThresholdingParam(IplImage *imgGray, int iNumLayers, int &iMinLevel, int &iMaxLevel, float &step, float& power, int iHistMin /*= HIST_MIN*/)
647 // power
654 power = float(black) / float(2 * white);
    [all...]
  /hardware/ti/wlan/mac80211/ti-utils/
plt.h 98 (NUMBER_OF_RADIO_CHANNEL_INDEXS_E /* for Per Channel power Gain Offset tabl */))
221 __le32 power; member in struct:wl1271_cmd_cal_tx_tone
255 __le32 power; member in struct:wl1271_cmd_pkt_params
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageSummary.java 70 * Displays a list of apps and subsystems that consume power, ordered by how much power was
458 double power = 0; local
461 //mUsageList.add(new AppUsage(u.getUid(), new double[] {power}));
493 Log.i(TAG, String.format("process %s, cpu power=%.2f",
496 power += processPower;
514 power /= 1000;
515 if (DEBUG && power != 0) Log.i(TAG, String.format("total cpu power=%.2f", power));
656 double power = (wakeTimeMillis local
677 double power = 0; local
694 R.drawable.ic_settings_display, power); local
698 double power = 0; local
790 double power = mUserPower.get(userId); local
    [all...]
  /bionic/libc/kernel/common/linux/
wireless.h 436 struct iw_param power; member in union:iwreq_data
  /development/ndk/platforms/android-3/include/linux/
wireless.h 431 struct iw_param power; member in union:iwreq_data
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
  /external/kernel-headers/original/linux/
hid.h 663 int (*power)(struct hid_device *hdev, int level); member in struct:hid_ll_driver
wireless.h 120 * - Support for unicast and multicast power saving
273 #define SIOCSIWTXPOW 0x8B26 /* set transmit power (dBm) */
274 #define SIOCGIWTXPOW 0x8B27 /* get transmit power (dBm) */
281 /* Power saving stuff (power management, unicast and multicast) */
282 #define SIOCSIWPOWER 0x8B2C /* set Power Management settings */
283 #define SIOCGIWPOWER 0x8B2D /* get Power Management settings */
475 /* Power management flags available (along with the value, if any) */
480 #define IW_POWER_MODE 0x0F00 /* Power Management mode */
491 /* Transmit Power flags available *
888 struct iw_param power; \/* PM duration\/timeout *\/ member in union:iwreq_data
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
wireless.h 120 * - Support for unicast and multicast power saving
217 * - Power/Retry relative values no longer * 100000
285 #define SIOCSIWTXPOW 0x8B26 /* set transmit power (dBm) */
286 #define SIOCGIWTXPOW 0x8B27 /* get transmit power (dBm) */
293 /* Power saving stuff (power management, unicast and multicast) */
294 #define SIOCSIWPOWER 0x8B2C /* set Power Management settings */
295 #define SIOCGIWPOWER 0x8B2D /* get Power Management settings */
488 /* Power management flags available (along with the value, if any) */
493 #define IW_POWER_MODE 0x0F00 /* Power Management mode *
915 struct iw_param power; \/* PM duration\/timeout *\/ member in union:iwreq_data
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
wireless.h 120 * - Support for unicast and multicast power saving
217 * - Power/Retry relative values no longer * 100000
285 #define SIOCSIWTXPOW 0x8B26 /* set transmit power (dBm) */
286 #define SIOCGIWTXPOW 0x8B27 /* get transmit power (dBm) */
293 /* Power saving stuff (power management, unicast and multicast) */
294 #define SIOCSIWPOWER 0x8B2C /* set Power Management settings */
295 #define SIOCGIWPOWER 0x8B2D /* get Power Management settings */
488 /* Power management flags available (along with the value, if any) */
493 #define IW_POWER_MODE 0x0F00 /* Power Management mode *
915 struct iw_param power; \/* PM duration\/timeout *\/ member in union:iwreq_data
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
wireless.h 120 * - Support for unicast and multicast power saving
217 * - Power/Retry relative values no longer * 100000
285 #define SIOCSIWTXPOW 0x8B26 /* set transmit power (dBm) */
286 #define SIOCGIWTXPOW 0x8B27 /* get transmit power (dBm) */
293 /* Power saving stuff (power management, unicast and multicast) */
294 #define SIOCSIWPOWER 0x8B2C /* set Power Management settings */
295 #define SIOCGIWPOWER 0x8B2D /* get Power Management settings */
488 /* Power management flags available (along with the value, if any) */
493 #define IW_POWER_MODE 0x0F00 /* Power Management mode *
915 struct iw_param power; \/* PM duration\/timeout *\/ member in union:iwreq_data
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
wireless.h 431 struct iw_param power; member in union:iwreq_data

Completed in 1082 milliseconds

1 2 34 5 6 7