Searched defs:id (Results 126 - 150 of 919) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp83 String8 id; local
84 it.getID(&id);
86 CHECK(id.length() > 0);
87 if (id[0] == 'T') {
91 printf(" found text frame '%s': %s\n", id.string(), text.string());
93 printf(" found frame '%s'.\n", id.string());
/frameworks/av/media/utils/
H A DBatteryNotifier.cpp113 void BatteryNotifier::noteFlashlightOn(const String8& id, uid_t uid) { argument
117 std::pair<String8, uid_t> k = std::make_pair(id, uid);
126 void BatteryNotifier::noteFlashlightOff(const String8& id, uid_t uid) { argument
130 std::pair<String8, uid_t> k = std::make_pair(id, uid);
148 void BatteryNotifier::noteStartCamera(const String8& id, uid_t uid) { argument
151 std::pair<String8, uid_t> k = std::make_pair(id, uid);
160 void BatteryNotifier::noteStopCamera(const String8& id, uid_t uid) { argument
163 std::pair<String8, uid_t> k = std::make_pair(id, uid);
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DEffectDescriptor.cpp58 int id)
69 ALOGV("registerEffect() effect %s, io %d, strategy %d session %d id %d",
70 desc->name, io, strategy, session, id);
80 add(id, effectDesc);
85 status_t EffectDescriptorCollection::unregisterEffect(int id) argument
87 ssize_t index = indexOfKey(id);
89 ALOGW("unregisterEffect() unknown effect ID %d", id);
104 effectDesc->mDesc.name, id, effectDesc->mDesc.memoryUsage, mTotalEffectsMemory);
106 removeItem(id);
111 status_t EffectDescriptorCollection::setEffectEnabled(int id, boo argument
54 registerEffect(const effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3DummyStream.cpp29 Camera3DummyStream::Camera3DummyStream(int id) : argument
30 Camera3IOStreamBase(id, CAMERA3_STREAM_OUTPUT, DUMMY_WIDTH, DUMMY_HEIGHT,
H A DStatusTracker.h60 void removeComponent(int id);
66 void markComponentIdle(int id, const sp<Fence>& componentFence);
69 void markComponentActive(int id);
82 void markComponent(int id, ComponentState state,
91 int id; member in struct:android::camera3::StatusTracker::StateChange
/frameworks/av/services/camera/libcameraservice/utils/
H A DTagMonitor.h48 void initialize(metadata_vendor_id_t id) { mVendorTagId = id; } argument
/frameworks/base/core/java/android/app/
H A DListActivity.java42 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
46 * id "android:id/empty". Note that when an empty view is present, the list view
62 * &lt;ListView android:id=&quot;@android:id/list&quot;
69 * &lt;TextView android:id=&quot;@android:id/empty&quot;
105 * &lt;TextView android:id
207 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
/frameworks/base/core/java/android/app/job/
H A DJobWorkItem.java71 public void setWorkId(int id) { argument
72 mWorkId = id;
98 sb.append("JobWorkItem{id=");
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHidDeviceCallback.java72 * @param id Requested Report Id, can be 0 if no Report Id are defined in
77 public void onGetReport(BluetoothDevice device, byte type, byte id, int bufferSize) { argument
78 Log.d(TAG, "onGetReport: device=" + device + " type=" + type + " id=" + id + " bufferSize="
88 * @param id Report Id.
91 public void onSetReport(BluetoothDevice device, byte type, byte id, byte[] data) { argument
92 Log.d(TAG, "onSetReport: device=" + device + " type=" + type + " id=" + id);
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareRequestParcelable.java32 public GeofenceHardwareRequestParcelable(int id, GeofenceHardwareRequest request) { argument
33 mId = id;
38 * Returns the id of this request.
111 builder.append("id=");
159 int id = parcel.readInt();
160 return new GeofenceHardwareRequestParcelable(id, request);
/frameworks/base/core/java/android/service/autofill/
H A DFillContext.java40 * and optional that can be saved, and the id of the corresponding {@link
71 * Gets the id of the {@link FillRequest fill request} this context
76 * @return The request id.
147 final AutofillId id = ids[index];
149 if (id.equals(node.getAutofillId())) {
156 mViewNodeLookupTable.put(id, node);
181 * Finds the {@link ViewNode} that has the requested {@code id}, if any.
185 @Nullable public ViewNode findViewNodeByAutofillId(@NonNull AutofillId id) { argument
193 if (id.equals(node.getAutofillId())) {
H A DFillRequest.java95 public FillRequest(int id, @NonNull ArrayList<FillContext> contexts, argument
97 mId = id;
104 * Gets the unique id of this request.
/frameworks/base/core/java/android/service/notification/
H A DSnoozeCriterion.java35 public SnoozeCriterion(String id, CharSequence explanation, CharSequence confirmation) { argument
36 mId = id;
60 * Returns the id of this criterion.
/frameworks/base/core/java/android/view/autofill/
H A DAutofillId.java32 public AutofillId(int id) { argument
34 mViewId = id;
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java60 * @param id An id that get passed as is (to the editor's discretion)
66 public CompletionInfo(long id, int index, CharSequence text) { argument
67 mId = id;
79 * @param id An id that get passed as is (to the editor's discretion)
87 public CompletionInfo(long id, int index, CharSequence text, CharSequence label) { argument
88 mId = id;
103 * corresponding to the id associated with it in the original adapter.
137 + "\" id
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java36 /*package*/ int id; field in class:NotificationVisibility
39 id = sNexrId++;
51 return "NotificationVisibility(id=" + id
/frameworks/base/core/java/com/android/internal/view/
H A DInputBindResult.java44 public final String id; field in class:InputBindResult
60 id = _id;
72 id = source.readString();
79 return "InputBindResult{" + method + " " + id
100 dest.writeString(id);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DExpandedMenuView.java70 public void onItemClick(AdapterView parent, View v, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewSimple.java50 mTextView = findViewById(R.id.autocompletetextview1);
99 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
108 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridThrasher.java118 mText = findViewById(R.id.text);
120 GridView g = findViewById(R.id.grid);
128 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListScrollListener.java49 mText = findViewById(R.id.text);
57 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
H A DListThrasher.java115 mText = findViewById(R.id.text);
124 public void onItemSelected(AdapterView parent, View v, int position, long id) { argument
/frameworks/base/core/tests/notificationtests/src/android/app/
H A DNotificationStressTest.java111 private void sendNotification(int id, CharSequence text) { argument
115 CharSequence title = text + " " + id;
127 mNotificationManager.notify(id, notification);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawableInflater.java58 * @param id the identifier of the drawable resource
62 public static Drawable loadDrawable(@NonNull Context context, @DrawableRes int id) { argument
63 return loadDrawable(context.getResources(), context.getTheme(), id);
71 * @param id the identifier of the drawable resource
76 @NonNull Resources resources, @Nullable Theme theme, @DrawableRes int id) {
77 return resources.getDrawable(id, theme);
75 loadDrawable( @onNull Resources resources, @Nullable Theme theme, @DrawableRes int id) argument
/frameworks/base/media/java/android/media/
H A DMediaActionSound.java104 public int id; field in class:MediaActionSound.SoundState
109 id = 0; // 0 is an invalid sample ID.
135 int id = mSoundPool.load(SOUND_FILES[sound.name], 1);
136 if (id > 0) {
138 sound.id = id;
140 return id;
224 mSoundPool.play(sound.id, 1.0f, 1.0f, 0, 0, 1.0f);
238 if (sound.id != sampleId) {
245 sound.id
[all...]

Completed in 1570 milliseconds

1234567891011>>