Searched defs:handle (Results 1 - 25 of 149) sorted by relevance

123456

/frameworks/base/opengl/java/android/opengl/
H A DEGLConfig.java25 private EGLConfig(long handle) { argument
26 super(handle);
H A DEGLContext.java25 private EGLContext(long handle) { argument
26 super(handle);
H A DEGLDisplay.java25 private EGLDisplay(long handle) { argument
26 super(handle);
H A DEGLSurface.java25 private EGLSurface(long handle) { argument
26 super(handle);
H A DEGLObjectHandle.java32 protected EGLObjectHandle(int handle) { argument
33 mHandle = handle;
35 protected EGLObjectHandle(long handle) { argument
36 mHandle = handle;
50 * Returns the native handle of the wrapped EGL object. This handle can be
53 * For example, EGLDisplay dpy = (EGLDisplay)handle;
55 * @return the native handle of the wrapped EGL object.
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLConfig.java25 private EGLConfig(long handle) { argument
26 super(handle);
H A DEGLContext.java25 private EGLContext(long handle) { argument
26 super(handle);
H A DEGLDisplay.java25 private EGLDisplay(long handle) { argument
26 super(handle);
H A DEGLSurface.java25 private EGLSurface(long handle) { argument
26 super(handle);
H A DEGLObjectHandle.java32 protected EGLObjectHandle(int handle) { argument
33 mHandle = handle;
35 protected EGLObjectHandle(long handle) { argument
36 mHandle = handle;
50 * Returns the native handle of the wrapped EGL object. This handle can be
53 * For example, EGLDisplay dpy = (EGLDisplay)handle;
55 * @return the native handle of the wrapped EGL object.
/frameworks/base/core/jni/
H A Dandroid_database_SQLiteCommon.cpp23 /* throw a SQLiteException with a message appropriate for the error in handle */
24 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle) { argument
25 throw_sqlite3_exception(env, handle, NULL);
33 /* throw a SQLiteException with a message appropriate for the error in handle
36 void throw_sqlite3_exception(JNIEnv* env, sqlite3* handle, const char* message) { argument
37 if (handle) {
42 throw_sqlite3_exception(env, sqlite3_extended_errcode(handle),
43 sqlite3_errmsg(handle), message);
/frameworks/av/media/mtp/
H A DMtpObjectInfo.cpp27 MtpObjectInfo::MtpObjectInfo(MtpObjectHandle handle) argument
28 : mHandle(handle),
/frameworks/base/include/androidfw/
H A DZipFileRO.h159 ZipFileRO(ZipArchiveHandle handle, char* fileName) : mHandle(handle), argument
/frameworks/base/media/java/android/media/
H A DAudioMixPort.java29 AudioMixPort(AudioHandle handle, int role, int[] samplingRates, int[] channelMasks, argument
31 super(handle, role, samplingRates, channelMasks, formats, gains);
H A DAudioDevicePort.java39 AudioDevicePort(AudioHandle handle, int[] samplingRates, int[] channelMasks, argument
41 super(handle,
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallInfo.java31 private String handle; field in class:CallInfo
33 public CallInfo(String handle) { argument
34 this.handle = handle;
38 return handle;
75 destination.writeString(handle);
/frameworks/native/services/sensorservice/
H A DBatteryService.cpp41 bool BatteryService::addSensor(uid_t uid, int handle) { argument
43 Info key(uid, handle);
53 bool BatteryService::removeSensor(uid_t uid, int handle) { argument
55 ssize_t index = mActivations.indexOf(Info(uid, handle));
63 void BatteryService::enableSensorImpl(uid_t uid, int handle) { argument
65 if (addSensor(uid, handle)) {
67 mBatteryStatService->noteStartSensor(uid, handle);
72 void BatteryService::disableSensorImpl(uid_t uid, int handle) { argument
74 if (removeSensor(uid, handle)) {
76 mBatteryStatService->noteStopSensor(uid, handle);
[all...]
H A DBatteryService.h33 void enableSensorImpl(uid_t uid, int handle);
34 void disableSensorImpl(uid_t uid, int handle);
39 int handle; member in struct:android::BatteryService::Info
41 Info() : uid(0), handle(0), count(0) { }
42 Info(uid_t uid, int handle) : uid(uid), handle(handle), count(0) { } argument
44 return (uid == rhs.uid) ? (handle < rhs.handle) : (uid < rhs.uid);
50 bool addSensor(uid_t uid, int handle);
54 enableSensor(uid_t uid, int handle) argument
57 disableSensor(uid_t uid, int handle) argument
[all...]
H A DSensorInterface.h40 virtual status_t setDelay(void* ident, int handle, int64_t ns) = 0;
43 virtual status_t batch(void* ident, int handle, int /*flags*/, int64_t samplingPeriodNs, argument
46 return setDelay(ident, handle, samplingPeriodNs);
51 virtual status_t flush(void* /*ident*/, int /*handle*/) {
57 virtual void autoDisable(void* /*ident*/, int /*handle*/) { }
76 virtual status_t batch(void* ident, int handle, int flags, int64_t samplingPeriodNs,
78 virtual status_t setDelay(void* ident, int handle, int64_t ns);
79 virtual status_t flush(void* ident, int handle);
82 virtual void autoDisable(void *ident, int handle);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetMessage.java41 public BluetoothMasRequestGetMessage(String handle, CharsetType charset, boolean attachment) { argument
43 mHeaderSet.setHeader(HeaderSet.NAME, handle);
H A DBluetoothMasRequestSetMessageStatus.java34 public BluetoothMasRequestSetMessageStatus(String handle, StatusIndicator statusInd, argument
38 mHeaderSet.setHeader(HeaderSet.NAME, handle);
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapCard.java35 public final String handle; field in class:BluetoothPbapCard
44 public BluetoothPbapCard(String handle, String name) { argument
45 this.handle = handle;
67 json.put("handle", handle);
/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.java30 public MediaProjectionInfo(String packageName, UserHandle handle) { argument
32 mUserHandle = handle;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java53 public void append(int handle, int property, int type, long value) { argument
58 mObjectHandles[index] = handle;
64 public void append(int handle, int property, String value) { argument
69 mObjectHandles[index] = handle;
/frameworks/base/services/core/java/com/android/server/am/
H A DUserStartedState.java43 public UserStartedState(UserHandle handle, boolean initial) { argument
44 mHandle = handle;

Completed in 1032 milliseconds

123456