HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 576 - 600 of 5937) sorted by null

<<21222324252627282930>>

  /external/valgrind/memcheck/tests/x86-linux/
scalar.c 1098 unsigned id; /* kernel internal index number */ member in struct:fake_aio_ring
    [all...]
  /external/webrtc/talk/media/devices/
yuvframescapturer.h 56 std::stringstream id; local
57 id << kYuvFrameDeviceName;
58 return Device(id.str(), id.str());
61 return rtc::starts_with(device.id.c_str(), kYuvFrameDeviceName);
  /external/webrtc/webrtc/base/
windowpicker.h 24 WindowDescription(const WindowId& id, const std::string& title)
25 : id_(id), title_(title) {
27 const WindowId& id() const { return id_; } function in class:rtc::WindowDescription
28 void set_id(const WindowId& id) { id_ = id; }
40 DesktopDescription(const DesktopId& id, const std::string& title)
41 : id_(id), title_(title), primary_(false) {
43 const DesktopId& id() const { return id_; } function in class:rtc::DesktopDescription
44 void set_id(const DesktopId& id) { id_ = id; }
    [all...]
  /external/webrtc/webrtc/voice_engine/test/android/android_test/gen/org/webrtc/voiceengine/test/
R.java 16 public static final class id { class in class:R
  /external/wpa_supplicant_8/src/ap/
eap_user_db.c 104 int i, id = -1, methods = -1; local
109 id = i;
114 if (id < 0 || methods < 0)
117 len = os_strlen(argv[id]);
119 os_memcmp(argv[id], user->identity, len) == 0 &&
122 user->password_len = os_strlen(argv[id]);
123 user->password = (u8 *) os_strdup(argv[id]);
  /external/wpa_supplicant_8/src/eap_peer/
eap_gtc.c 53 u8 id; local
60 id = eap_get_id(reqData);
73 0, EAP_CODE_RESPONSE, id);
105 EAP_CODE_RESPONSE, id);
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 83 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/base/core/java/android/service/chooser/
ChooserTargetService.java 142 final long id = clearCallingIdentity(); local
150 restoreCallingIdentity(id);
  /frameworks/base/core/java/com/android/internal/view/
InputBindResult.java 41 * The ID for this input method, as found in InputMethodInfo; null if
44 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/tests/coretests/src/android/app/
SuggestionProvider.java 81 long id = cursor.getCount(); local
82 cursor.newRow().add(id).add(string).add(Intent.ACTION_SEARCH).add(string);
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
FloatingToolbarEspressoUtils.java 90 final int id = com.android.internal.R.id.overflow; local
91 onView(allOf(withId(id), isDisplayed()))
92 .inRoot(withDecorView(hasDescendant(withId(id))))
SuggestionsPopupwindowUtils.java 40 private static final int id = com.android.internal.R.id.suggestionWindowContainer; field in class:SuggestionsPopupwindowUtils
45 return onView(withId(id)).inRoot(withDecorView(hasDescendant(withId(id))));
49 return onView(matcher).inRoot(withDecorView(hasDescendant(withId(id))));
  /frameworks/base/media/java/android/media/
AudioPatch.java 57 * Get the system unique patch ID.
59 public int id() { method in class:AudioPatch
60 return mHandle.id();
  /frameworks/base/packages/Osu/src/com/android/anqp/eap/
ExpandedEAPMethod.java 30 int id = vndBuffer.getShort() & SHORT_MASK; local
31 id = (id << Byte.SIZE) | (vndBuffer.get() & BYTE_MASK);
32 mVendorID = id;
76 return "Auth method " + mAuthInfoID + ", id " + mVendorID + ", type " + mVendorType + "\n";
  /frameworks/base/rs/java/android/renderscript/
ScriptC.java 35 * @param id
38 protected ScriptC(int id, RenderScript rs) {
39 super(id, rs);
44 * @param id
48 protected ScriptC(long id, RenderScript rs) {
49 super(id, rs);
61 long id = internalCreate(rs, resources, resourceID); local
62 if (id == 0) {
65 setID(id);
75 long id = 0 local
    [all...]
ScriptIntrinsicColorMatrix.java 44 private ScriptIntrinsicColorMatrix(long id, RenderScript rs) {
45 super(id, rs);
76 long id = rs.nScriptIntrinsicCreate(2, 0); local
77 return new ScriptIntrinsicColorMatrix(id, rs);
ScriptIntrinsicLUT.java 31 private ScriptIntrinsicLUT(long id, RenderScript rs) {
32 super(id, rs);
54 long id = rs.nScriptIntrinsicCreate(3, e.getID(rs)); local
55 return new ScriptIntrinsicLUT(id, rs);
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 101 // Report Id
109 buffer.put((byte)((contact.id << 2) | 0x03));
125 public int id; // range 0..63 field in class:UsbHid.Multitouch.Contact
  /frameworks/base/tools/aapt/
ResourceIdCache.cpp 4 // Manage a resource ID cache.
24 uint32_t id; member in struct:CacheEntry
27 CacheEntry(const android::String16& name, uint32_t resId) : hashedName(name), id(resId) { }
74 return (*item).second.id;
83 // returns the resource ID being stored, for callsite convenience
  /frameworks/base/tools/aapt2/process/
SymbolTable.h 45 inline android::hash_t hash_type(const ResourceId& id) {
46 return android::hash_type(id.id);
65 id(i), attribute(attr), isPublic(pub) {
73 Maybe<ResourceId> id; member in struct:aapt::SymbolTable::Symbol
89 const Symbol* findById(ResourceId id);
92 * Let's the ISymbolSource decide whether looking up by name or ID is faster, if both
117 virtual std::unique_ptr<SymbolTable::Symbol> findById(ResourceId id) = 0;
120 * Default implementation tries the name if it exists, else the ID.
125 } else if (ref.id) {
    [all...]
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer_test.cpp 36 .addValue(u"@com.app.a:id/foo", {}, util::make_unique<Id>())
45 Id* id = test::getValue<Id>(table.get(), u"@com.app.a:id/foo"); local
46 ASSERT_NE(nullptr, id);
65 // Make a reference with both resource name and resource ID.
67 // name and id get serialized.
70 expectedRef.id = ResourceId(0x01020000)
    [all...]
  /frameworks/native/include/gui/
DisplayEventReceiver.h 51 uint32_t id; member in struct:android::DisplayEventReceiver::Event::Header
  /frameworks/support/v4/java/android/support/v4/content/
WakefulBroadcastReceiver.java 82 int id = mNextId; local
88 intent.putExtra(EXTRA_WAKE_LOCK_ID, id);
99 mActiveWakeLocks.put(id, wl);
113 final int id = intent.getIntExtra(EXTRA_WAKE_LOCK_ID, 0); local
114 if (id == 0) {
118 PowerManager.WakeLock wl = mActiveWakeLocks.get(id);
121 mActiveWakeLocks.remove(id);
130 Log.w("WakefulBroadcastReceiver", "No active wake lock id #" + id);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatImageHelper.java 50 final int id = a.getResourceId(R.styleable.AppCompatImageView_srcCompat, -1); local
51 if (id != -1) {
52 drawable = mDrawableManager.getDrawable(mView.getContext(), id);
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
common.cpp 78 uint32_t id, int subcmd, nl_recvmsg_msg_cb_t func, void *arg)
89 info->event_cb[info->num_event_cb].vendor_id = id;
94 arg, func, id, subcmd, info->num_event_cb);
129 void wifi_unregister_vendor_handler(wifi_handle handle, uint32_t id, int subcmd)
138 && info->event_cb[i].vendor_id == id
141 info->event_cb[i].cb_arg, info->event_cb[i].cb_func, id, subcmd, i);
153 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd)
157 ALOGV("registering command %d", id);
162 info->cmd[info->num_cmd].id = id;
222 int id = info->cmd[i].id; local
    [all...]

Completed in 1316 milliseconds

<<21222324252627282930>>