Searched defs:start_index (Results 1 - 2 of 2) sorted by relevance

/system/bt/btif/co/
H A Dbta_gattc_co.c114 void bta_gattc_co_cache_load(BD_ADDR server_bda, UINT16 evt, UINT16 start_index, UINT16 conn_id) argument
120 if (sCacheFD && (0 == fseek(sCacheFD, start_index * sizeof(tBTA_GATTC_NV_ATTR), SEEK_SET)))
126 BTIF_TRACE_DEBUG("%s() - sCacheFD=%p, start_index=%d, read=%d, status=%d",
127 __FUNCTION__, sCacheFD, start_index, num_attr, status);
/system/core/base/
H A Dstrings.cpp55 size_t start_index = 0; local
59 while (start_index < s.size()) {
60 if (!isspace(s[start_index])) {
63 start_index++;
67 while (end_index >= start_index) {
75 if (end_index < start_index) {
79 return s.substr(start_index, end_index - start_index + 1);

Completed in 124 milliseconds