/frameworks/base/services/sensorservice/ |
SensorInterface.cpp | 49 status_t HardwareSensor::activate(void* ident, bool enabled) { function in class:android::HardwareSensor 50 return mSensorDevice.activate(ident, mSensor.getHandle(), enabled);
|
SensorInterface.h | 39 virtual status_t activate(void* ident, bool enabled) = 0; 60 virtual status_t activate(void* ident, bool enabled);
|
RotationVectorSensor.h | 43 virtual status_t activate(void* ident, bool enabled); 57 virtual status_t activate(void* ident, bool enabled);
|
LinearAccelerationSensor.h | 43 virtual status_t activate(void* ident, bool enabled);
|
OrientationSensor.h | 42 virtual status_t activate(void* ident, bool enabled);
|
CorrectedGyroSensor.cpp | 59 status_t CorrectedGyroSensor::activate(void* ident, bool enabled) { function in class:android::CorrectedGyroSensor 60 mSensorDevice.activate(this, mGyro.getHandle(), enabled); 61 return mSensorFusion.activate(this, enabled);
|
CorrectedGyroSensor.h | 43 virtual status_t activate(void* ident, bool enabled);
|
GravitySensor.h | 43 virtual status_t activate(void* ident, bool enabled);
|
RotationVectorSensor.cpp | 55 status_t RotationVectorSensor::activate(void* ident, bool enabled) { function in class:android::RotationVectorSensor 56 return mSensorFusion.activate(this, enabled); 104 status_t GyroDriftSensor::activate(void* ident, bool enabled) { function in class:android::GyroDriftSensor 105 return mSensorFusion.activate(this, enabled);
|
LinearAccelerationSensor.cpp | 53 status_t LinearAccelerationSensor::activate(void* ident, bool enabled) { function in class:android::LinearAccelerationSensor 54 return mGravitySensor.activate(this, enabled);
|
SensorDevice.h | 56 status_t activate(void* ident, int handle, int enabled);
|
SensorFusion.cpp | 77 status_t SensorFusion::activate(void* ident, bool enabled) { function in class:android::SensorFusion 80 "SensorFusion::activate(ident=%p, enabled=%d)", 94 mSensorDevice.activate(ident, mAcc.getHandle(), enabled); 95 mSensorDevice.activate(ident, mMag.getHandle(), enabled); 96 mSensorDevice.activate(ident, mGyro.getHandle(), enabled);
|
GravitySensor.cpp | 69 status_t GravitySensor::activate(void* ident, bool enabled) { function in class:android::GravitySensor 70 return mSensorFusion.activate(this, enabled);
|
OrientationSensor.cpp | 65 status_t OrientationSensor::activate(void* ident, bool enabled) { function in class:android::OrientationSensor 66 return mSensorFusion.activate(this, enabled);
|
/external/junit/src/junit/swingui/ |
TestRunView.java | 22 public void activate(); method in interface:TestRunView
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
lighttpd.conf | 48 dir-listing.activate = "enable"
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
EclipseUiHelper.java | 45 * @param activate True to force activate (i.e. takes focus), false to just make visible (i.e. 48 public static void showView(String viewId, boolean activate) { 56 activate ? IWorkbenchPage.VIEW_ACTIVATE : IWorkbenchPage.VIEW_VISIBLE);
|
/system/media/mca/filterfw/java/android/filterfw/core/ |
GraphRunner.java | 60 * Helper function for subclasses to activate the GL environment before running. 67 glEnv.activate();
|
/external/chromium/chrome/browser/ui/views/ |
browser_bubble_win.cc | 23 void ShowAndActivate(bool activate) { 26 if (activate) 133 void BrowserBubble::Show(bool activate) { 137 pop->ShowAndActivate(activate);
|
browser_bubble_gtk.cc | 32 void ShowAndActivate(bool activate) { 33 // TODO: honor activate. 134 void BrowserBubble::Show(bool activate) { 137 static_cast<BubbleWidget*>(popup_)->ShowAndActivate(activate);
|
/external/llvm/lib/CodeGen/ |
SpillPlacement.h | 137 void activate(unsigned);
|
SpillPlacement.cpp | 204 /// activate - mark node n as active if it wasn't already. 205 void SpillPlacement::activate(unsigned n) { function in class:SpillPlacement 229 activate(ib); 236 activate(ob); 252 activate(ib); 253 activate(ob);
|
/system/media/mca/filterfw/java/android/filterfw/ |
MffEnvironment.java | 63 * Set the environment's GL environment to the specified environment. This does not activate 71 * Create and activate a new GL environment for use in this filter context. 80 * Activate the GL environment for use in the current thread. A GL environment must have been 87 mContext.getGLEnvironment().activate(); 89 throw new NullPointerException("No GLEnvironment in place to activate!");
|
/external/webkit/Source/WebCore/rendering/ |
RenderMarquee.cpp | 203 bool activate = (m_totalLoops <= 0 || m_currentLoop < m_totalLoops); local 204 if (activate) { 257 bool activate = (m_totalLoops <= 0 || m_currentLoop < m_totalLoops); local 258 if (activate && !m_timer.isActive()) 260 else if (!activate && m_timer.isActive())
|
/hardware/libhardware/tests/nusensors/ |
nusensors.cpp | 104 err = device->activate(device, list[i].handle, 0); 113 err = device->activate(device, list[i].handle, 1); 115 printf("activate() for '%s'failed (%s)\n", 181 err = device->activate(device, list[i].handle, 0);
|