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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
KeyguardIndicationController.java 106 * Sets the indication that is shown if nothing else is showing.
114 * Hides transient indication in {@param delayMs}.
146 * Hides transient indication.
175 String indication = computePowerIndication(); local
177 indication += ", " + (mChargingWattage / 1000) + " mW";
179 return indication;
  /system/bt/stack/gatt/
gatt_api.c 585 ** Description This function sends a handle value indication to a client.
588 ** attr_handle: Attribute handle of this handle value indication.
599 tGATT_VALUE indication; local
618 indication.conn_id = conn_id;
619 indication.handle = attr_handle;
620 indication.len = val_len;
621 memcpy (indication.value, p_val, val_len);
622 indication.auth_req = GATT_AUTH_REQ_NONE;
626 GATT_TRACE_DEBUG ("Add a pending indication");
627 if ((p_buf = gatt_add_pending_ind(p_tcb, &indication)) !=NULL
    [all...]
  /frameworks/av/media/libstagefright/
Utils.cpp 368 const uint8_t indication = ((seq[4] & 0xF) << 4) | ((seq[5] & 0xF0) >> 4); local
400 if (escapes.map(indication, &profileLevel)) {
403 } else if (profiles.map(indication & 0x70, &profile)) {
405 if (levels.map(indication & 0xF, &level)) {
437 const uint8_t indication = seq[4]; local
516 if (table.map(indication, &profileLevel)) {
    [all...]

Completed in 263 milliseconds