Searched defs:id (Results 251 - 275 of 919) sorted by relevance

<<11121314151617181920>>

/frameworks/av/services/audioflinger/
H A DBufLog.cpp65 for (unsigned int id = 0; id < BUFLOG_MAXSTREAMS; id++) {
66 BufLogStream *pBLStream = mStreams[id];
69 mStreams[id] = NULL;
76 unsigned int id = streamid % BUFLOG_MAXSTREAMS; local
79 BufLogStream *pBLStream = mStreams[id];
82 pBLStream = mStreams[id] = new BufLogStream(id, tag, format, channels,
95 for (unsigned int id
110 BufLogStream(unsigned int id, const char *tag, unsigned int format, unsigned int channels, unsigned int samplingRate, size_t maxBytes = 0) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3SharedOutputStream.cpp23 Camera3SharedOutputStream::Camera3SharedOutputStream(int id, argument
29 Camera3OutputStream(id, CAMERA3_STREAM_OUTPUT, width, height,
H A DStatusTracker.cpp44 int id; local
48 id = mNextComponentId++;
49 ALOGV("%s: Adding new component %d", __FUNCTION__, id);
51 err = mStates.add(id, IDLE);
53 __FUNCTION__, id, strerror(-err), err);
62 return err < 0 ? err : id;
65 void StatusTracker::removeComponent(int id) { argument
69 ALOGV("%s: Removing component %d", __FUNCTION__, id);
70 idx = mStates.removeItem(id);
83 void StatusTracker::markComponentIdle(int id, cons argument
87 markComponentActive(int id) argument
91 markComponent(int id, ComponentState state, const sp<Fence>& componentFence) argument
[all...]
/frameworks/base/cmds/incidentd/src/
H A DReporter.cpp214 const int id = (*section)->id; local
215 ALOGD("Taking incident report section %d '%s'", id, (*section)->name.string());
217 if (this->args.containsSection(id)) {
220 if ((*it)->listener != NULL && (*it)->args.containsSection(id)) {
221 (*it)->listener->onReportSectionStatus(id,
230 (*section)->name.string(), id);
236 if ((*it)->listener != NULL && (*it)->args.containsSection(id)) {
237 (*it)->listener->onReportSectionStatus(id,
/frameworks/base/core/java/android/accounts/
H A DChooseAccountActivity.java80 ListView list = findViewById(android.R.id.list);
87 public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
88 onListItemClick((ListView)parent, v, position, id);
121 protected void onListItemClick(ListView l, View v, int position, long id) { argument
175 holder.text = (TextView) convertView.findViewById(R.id.account_row_text);
176 holder.icon = (ImageView) convertView.findViewById(R.id.account_row_icon);
/frameworks/base/core/java/android/app/
H A DExpandableListActivity.java51 * ExpandableListView object with the id "@android:id/list" (or
52 * {@link android.R.id#list} if it's in code)
56 * id "android:empty". Note that when an empty view is present, the expandable
72 * &lt;ExpandableListView android:id=&quot;@id/android:list&quot;
79 * &lt;TextView android:id=&quot;@id/android:empty&quot;
120 * &lt;TextView android:id=&quot;@+id/text
180 onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) argument
[all...]
H A DListFragment.java46 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
50 * id "android:empty". Note that when an empty view is present, the list view
66 * &lt;ListView android:id=&quot;@id/android:list&quot;
73 * &lt;TextView android:id=&quot;@id/android:empty&quot;
109 * &lt;TextView android:id=&quot;@+id/text
230 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
H A DNotificationChannelGroup.java51 private static final String ATT_ID = "id";
60 * @param id The id of the group. Must be unique per package. the value may be truncated if
67 public NotificationChannelGroup(String id, CharSequence name) { argument
68 this.mId = getTrimmedString(id);
105 * Returns the id of this channel.
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothMasInstance.java29 public BluetoothMasInstance(int id, String name, int channel, int msgTypes) { argument
30 mId = id;
/frameworks/base/core/java/android/content/pm/
H A DShortcutServiceInternal.java53 @NonNull String packageName, @NonNull String id, int userId);
52 isPinnedByCaller(int launcherUserId, @NonNull String callingPackage, @NonNull String packageName, @NonNull String id, int userId) argument
/frameworks/base/core/java/android/gesture/
H A DGesture.java160 * Sets the id of the gesture.
162 * @param id
164 void setID(long id) { argument
165 mGestureID = id;
169 * @return the id of the gesture
/frameworks/base/core/java/android/hardware/
H A DSensorDirectChannel.java184 SensorDirectChannel(SensorManager manager, int id, int type, long size) { argument
186 mNativeHandle = id;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DFace.java63 * <p>The id, leftEyePosition, rightEyePosition, and mouthPosition are considered optional.
67 * If the id is {@value #ID_UNSUPPORTED} then the leftEyePosition, rightEyePosition, and
73 * @param id A unique ID per face visible to the tracker.
82 * or if id is {@value #ID_UNSUPPORTED} and
84 * or else if id is negative.
88 public Face(Rect bounds, int score, int id, argument
93 } else if (id < 0 && id != ID_UNSUPPORTED) {
96 if (id == ID_UNSUPPORTED) {
104 mId = id;
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPortInfo.java46 * @param id identifier assigned to each port. 1 for HDMI port 1
53 public HdmiPortInfo(int id, int type, int address, boolean cec, boolean mhl, boolean arc) { argument
54 mId = id;
63 * Returns the port id.
65 * @return port id
133 int id = source.readInt();
139 return new HdmiPortInfo(id, type, address, cec, mhl, arc);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbConfiguration.java62 public UsbConfiguration(int id, @Nullable String name, int attributes, int maxPower) { argument
63 mId = id;
159 int id = in.readInt();
164 UsbConfiguration configuration = new UsbConfiguration(id, name, attributes, maxPower);
H A DUsbInterface.java53 public UsbInterface(int id, int alternateSetting, @Nullable String name, argument
55 mId = id;
168 int id = in.readInt();
175 UsbInterface intf = new UsbInterface(id, alternateSetting, name, Class, subClass, protocol);
/frameworks/base/core/java/android/inputmethodservice/
H A DExtractEditText.java105 @Override public boolean onTextContextMenuItem(int id) { argument
108 if (id == android.R.id.selectAll || id == android.R.id.replaceText) {
109 return super.onTextContextMenuItem(id);
111 if (mIME != null && mIME.onExtractTextContextMenuItem(id)) {
114 if (id == android.R.id.copy || id
[all...]
/frameworks/base/core/java/android/os/storage/
H A DDiskInfo.java51 public final String id; field in class:DiskInfo
59 public DiskInfo(String id, int flags) { argument
60 this.id = Preconditions.checkNotNull(id);
65 id = parcel.readString();
74 return id;
139 pw.println("DiskInfo{" + id + "}:");
165 return Objects.equals(id, ((DiskInfo) o).id);
173 return id
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java190 View titleView = childPrefScreen.findViewById(android.R.id.title);
191 mListView = (ListView) childPrefScreen.findViewById(android.R.id.list);
240 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/service/autofill/
H A DDataset.java111 * Gets the id of this dataset.
113 * @return The id of this dataset or {@code null} if not set
200 * Sets the id for the dataset so its usage history can be retrieved later.
202 * <p>The id of the last selected dataset can be read from
203 * {@link AutofillService#getFillEventHistory()}. If the id is not set it will not be clear
207 * @param id id for this dataset or {@code null} to unset.
211 public @NonNull Builder setId(@Nullable String id) { argument
214 mId = id;
221 * @param id i
230 setValue(@onNull AutofillId id, @Nullable AutofillValue value) argument
252 setValue(@onNull AutofillId id, @Nullable AutofillValue value, @NonNull RemoteViews presentation) argument
260 setValueAndPresentation(AutofillId id, AutofillValue value, RemoteViews presentation) argument
[all...]
/frameworks/base/core/java/android/service/notification/
H A DCondition.java71 public final Uri id; field in class:Condition
74 * A summary of what the rule encoded in {@link #id} means when it is enabled. User visible
99 * @param id the {@link android.app.AutomaticZenRule#getConditionId()} of the zen rule
102 public Condition(Uri id, String summary, int state) { argument
103 this(id, summary, "", "", -1, state, FLAG_RELEVANT_ALWAYS);
107 public Condition(Uri id, String summary, String line1, String line2, int icon, argument
109 if (id == null) throw new IllegalArgumentException("id is required");
112 this.id = id;
221 isValidId(Uri id, String pkg) argument
[all...]
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java78 GridView grid = (GridView) findViewById(R.id.characterPicker);
82 mCancelButton = (Button) findViewById(R.id.cancel);
89 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/view/
H A DFrameMetrics.java276 * Retrieves the value associated with Metric identifier {@code id}
282 * @param id the metric to retrieve
285 public long getMetric(@Metric int id) { argument
286 if (id < UNKNOWN_DELAY_DURATION || id > VSYNC_TIMESTAMP) {
294 if (id == FIRST_DRAW_FRAME) {
296 } else if (id == INTENDED_VSYNC_TIMESTAMP) {
298 } else if (id == VSYNC_TIMESTAMP) {
302 int durationsIdx = 2 * id;
H A DInputQueue.java94 long id;
96 id = nativeSendKeyEvent(mPtr, (KeyEvent) e, predispatch);
98 id = nativeSendMotionEvent(mPtr, (MotionEvent) e);
100 mActiveEventArray.put(id, event);
103 private void finishInputEvent(long id, boolean handled) { argument
104 int index = mActiveEventArray.indexOfKey(id);
/frameworks/base/core/java/android/view/animation/
H A DAnimationUtils.java98 * @param id The resource id of the animation to load
99 * @return The animation object reference by the specified id
102 public static Animation loadAnimation(Context context, @AnimRes int id) argument
107 parser = context.getResources().getAnimation(id);
111 Integer.toHexString(id));
116 Integer.toHexString(id));
176 * @param id The resource id of the animation to load
177 * @return The animation object reference by the specified id
180 loadLayoutAnimation(Context context, @AnimRes int id) argument
303 loadInterpolator(Context context, @AnimRes @InterpolatorRes int id) argument
334 loadInterpolator(Resources res, Theme theme, int id) argument
[all...]

Completed in 700 milliseconds

<<11121314151617181920>>