HomeSort by relevance Sort by last modified time
    Searched defs:indication (Results 1 - 4 of 4) sorted by null

  /system/bt/stack/gatt/
gatt_api.cc 399 * Description This function sends a handle value indication to a client.
403 * indication.
415 tGATT_VALUE indication; local
431 indication.conn_id = conn_id;
432 indication.handle = attr_handle;
433 indication.len = val_len;
434 memcpy(indication.value, p_val, val_len);
435 indication.auth_req = GATT_AUTH_REQ_NONE;
438 VLOG(1) << "Add a pending indication";
439 p_buf = gatt_add_pending_ind(p_tcb, &indication);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
KeyguardIndicationController.java 208 * Sets the indication that is shown if nothing else is showing.
222 * Returns the indication text indicating that trust has been granted.
224 * @return {@code null} or an empty string if a trust indication text should not be shown.
231 * Returns the indication text indicating that trust is currently being managed.
240 * Hides transient indication in {@param delayMs}.
278 * Hides transient indication.
294 // Walk down a precedence-ordered list of what indication
303 String indication = computePowerIndication(); local
305 animateText(mTextView, indication);
307 mTextView.switchIndication(indication);
332 String indication = computePowerIndication(); local
    [all...]
  /frameworks/base/telephony/java/android/telephony/data/
DataService.java 418 DataCallListChangedIndication indication = local
421 indication.callback.onDataCallListChanged(indication.dataCallList);
  /frameworks/av/media/libstagefright/
Utils.cpp 345 const uint8_t indication = ((seq[4] & 0xF) << 4) | ((seq[5] & 0xF0) >> 4); local
377 if (escapes.map(indication, &profileLevel)) {
380 } else if (profiles.map(indication & 0x70, &profile)) {
382 if (levels.map(indication & 0xF, &level)) {
414 const uint8_t indication = seq[4]; local
493 if (table.map(indication, &profileLevel)) {
    [all...]

Completed in 289 milliseconds