Searched defs:id (Results 276 - 300 of 755) sorted by relevance

<<11121314151617181920>>

/frameworks/wilhelm/src/itf/
H A DIEngineCapabilities.c119 *pLEDDeviceID = id_descriptor->id;
128 SLuint32 id = *pLEDDeviceID; local
131 if (id == id_descriptor->id) {
161 *pVibraDeviceID = id_descriptor->id;
170 SLuint32 id = *pVibraDeviceID; local
173 if (id == id_descriptor->id) {
/frameworks/wilhelm/src/
H A Dlocks.c270 unsigned id = thiz->mInstanceID; local
271 if (0 != id) {
272 --id;
273 assert(MAX_INSTANCE > id);
277 thisEngine->mChangedMask |= 1 << id;
/frameworks/av/include/media/
H A DAudioEffect.h296 int32_t id() const { return mId; } function in class:android::AudioEffect
/frameworks/av/media/common_time/
H A DICommonClock.cpp167 virtual status_t getTimelineID(uint64_t* id) { argument
174 *id = static_cast<uint64_t>(reply.readInt64());
336 uint64_t id; local
337 status_t status = getTimelineID(&id);
340 reply->writeInt64(static_cast<int64_t>(id));
H A DICommonTimeConfig.cpp124 virtual status_t getMasterElectionGroupId(uint64_t *id) { argument
134 *id = static_cast<uint64_t>(reply.readInt64());
141 virtual status_t setMasterElectionGroupId(uint64_t id) { argument
144 data.writeInt64(id);
385 uint64_t id; local
386 status_t status = getMasterElectionGroupId(&id);
389 reply->writeInt64(id);
396 uint64_t id = static_cast<uint64_t>(data.readInt64()); local
397 status_t status = setMasterElectionGroupId(id);
/frameworks/av/services/camera/libcameraservice/
H A DCameraFlashlight.cpp167 String8 id = String8::format("%d", i); local
169 res = createFlashlightControl(id);
172 id.string());
174 res = mFlashControl->hasFlashUnit(id, &hasFlash);
178 id.string());
182 " (%d)", __FUNCTION__, id.string(), strerror(-res),
188 mHasFlashlightMap.add(id, hasFlash);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.cpp32 Camera3IOStreamBase::Camera3IOStreamBase(int id, camera3_stream_type_t type, argument
35 Camera3Stream(id, type,
H A DCamera3OutputStream.cpp34 Camera3OutputStream::Camera3OutputStream(int id, argument
39 Camera3IOStreamBase(id, CAMERA3_STREAM_OUTPUT, width, height,
57 Camera3OutputStream::Camera3OutputStream(int id, argument
62 Camera3IOStreamBase(id, CAMERA3_STREAM_OUTPUT, width, height, maxSize,
87 Camera3OutputStream::Camera3OutputStream(int id, camera3_stream_type_t type, argument
93 Camera3IOStreamBase(id, type, width, height,
H A DCamera3ZslStream.cpp113 Camera3ZslStream::Camera3ZslStream(int id, uint32_t width, uint32_t height, argument
115 Camera3OutputStream(id, CAMERA3_STREAM_BIDIRECTIONAL,
/frameworks/base/cmds/bootanimation/
H A DAudioPlayer.cpp43 uint32_t id; member in struct:chunk_header
246 switch (chunkHeader->id) {
/frameworks/base/cmds/hid/jni/
H A Dcom_android_commands_hid_Device.cpp85 Device* Device::open(int32_t id, const char* name, int32_t vid, int32_t pid, argument
123 return new Device(id, fd, std::move(callback), looper);
126 Device::Device(int32_t id, int fd, std::unique_ptr<DeviceCallback> callback, sp<Looper> looper) : argument
127 mId(id), mFd(fd), mDeviceCallback(std::move(callback)), mLooper(looper) {
186 static jlong openDevice(JNIEnv* env, jclass /* clazz */, jstring rawName, jint id, jint vid, jint pid, argument
200 id, reinterpret_cast<const char*>(name.c_str()), vid, pid,
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DDevice.java55 private static native long nativeOpenDevice(String name, int id, int vid, int pid, argument
60 public Device(int id, String name, int vid, int pid, byte[] descriptor, byte[] report) { argument
61 mId = id;
66 args.argi1 = id;
72 args.arg1 = id + ":" + vid + ":" + pid;
H A DEvent.java77 return "Event{id=" + mId
95 public void setId(int id) { argument
96 mEvent.mId = id;
129 throw new IllegalStateException("No event id");
167 case "id":
/frameworks/base/core/java/android/app/
H A DLocalActivityManager.java50 id = _id;
54 final String id; // Unique name of this record. field in class:LocalActivityManager.LocalActivityRecord
77 /** id -> record of all known activities. */
123 instanceObj = lastNonConfigurationInstances.get(r.id);
132 if (localLOGV) Log.v(TAG, r.id + ": starting " + r.intent);
137 mParent, r.id, r.intent, r.activityInfo, r, r.instanceState, instance);
146 if (localLOGV) Log.v(TAG, r.id + ": resuming");
163 if (localLOGV) Log.v(TAG, r.id + ": restarting");
168 if (localLOGV) Log.v(TAG, r.id + ": restarting and resuming");
178 if (localLOGV) Log.v(TAG, r.id
261 startActivity(String id, Intent intent) argument
386 destroyActivity(String id, boolean finish) argument
433 getActivity(String id) argument
[all...]
H A DService.java694 * @param id The identifier for this notification as per
701 public final void startForeground(int id, Notification notification) { argument
704 new ComponentName(this, mClassName), mToken, id,
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadsetClientCall.java77 public BluetoothHeadsetClientCall(BluetoothDevice device, int id, int state, String number, argument
79 this(device, id, UUID.randomUUID(), state, number, multiParty, outgoing);
82 public BluetoothHeadsetClientCall(BluetoothDevice device, int id, UUID uuid, int state, argument
85 mId = id;
139 * @return call id.
/frameworks/base/core/java/android/content/
H A DLoader.java181 public void registerListener(int id, OnLoadCompleteListener<D> listener) { argument
186 mId = id;
525 sb.append(" id=");
/frameworks/base/core/java/android/content/pm/
H A DUserInfo.java92 public int id; field in class:UserInfo
107 public UserInfo(int id, String name, int flags) { argument
108 this(id, name, null, flags);
111 public UserInfo(int id, String name, String iconPath, int flags) { argument
112 this.id = id;
162 return isSystemOnly(id);
192 return (!hideSystemUser || id != UserHandle.USER_SYSTEM) && supportsSwitchTo();
201 return id != UserHandle.USER_SYSTEM;
203 return id
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraCaptureSessionImpl.java89 CameraCaptureSessionImpl(int id, Surface input, List<Surface> outputs, argument
99 mId = id;
H A DCameraConstrainedHighSpeedCaptureSessionImpl.java60 CameraConstrainedHighSpeedCaptureSessionImpl(int id, List<Surface> outputs, argument
67 mSessionImpl = new CameraCaptureSessionImpl(id, /*input*/null, outputs, wrapperCallback,
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDevice.java333 public static String getDeviceName(int id) { argument
334 return native_get_device_name(id);
338 private static native String native_get_device_name(int id); argument
/frameworks/base/core/java/android/nfc/
H A DTag.java126 public Tag(byte[] id, int[] techList, Bundle[] techListExtras, int serviceHandle, argument
131 mId = id;
147 * @param id The tag identifier, can be null
152 public static Tag createMockTag(byte[] id, int[] techList, Bundle[] techListExtras) { argument
154 return new Tag(id, techList, techListExtras, 0, null);
427 byte[] id = Tag.readBytesWithNull(in);
440 return new Tag(id, techList, techExtras, serviceHandle, tagService);
/frameworks/base/core/java/android/os/
H A DBatteryManager.java241 private long queryProperty(int id) { argument
251 if (mBatteryPropertiesRegistrar.getProperty(id, prop) == 0)
267 * @param id identifier of the requested property
271 public int getIntProperty(int id) { argument
272 return (int)queryProperty(id);
280 * @param id identifier of the requested property
284 public long getLongProperty(int id) { argument
285 return queryProperty(id);
H A DUserHandle.java35 /** @hide A user id to indicate all users on the device */
41 /** @hide A user id to indicate the currently active user */
47 /** @hide A user id to indicate that we would like to send to the current
57 /** @hide An undefined user id */
61 * @hide A user id constant to indicate the "owner" user of the device
74 /** @hide A user id constant to indicate the "system" user of the device */
92 * Checks to see if the user id is the same for the two uids, i.e., they belong to the same
101 * Checks to see if both uids are referring to the same app id, ignoring the user id part of the
142 * Returns the user id fo
197 getSharedAppGid(int id) argument
[all...]
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java33 private final int id; field in class:StatusBarNotification
49 public StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, argument
51 this(pkg, opPkg, id, tag, uid, initialPid, score, notification, user,
56 public StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, argument
64 this.id = id;
76 public StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, argument
84 this.id = id;
98 this.id
[all...]

Completed in 1986 milliseconds

<<11121314151617181920>>