Home
last modified time | relevance | path

Searched refs:pinfo (Results 1 – 2 of 2) sorted by relevance

/bionic/benchmarks/
Dproperty_benchmark.cpp175 const prop_info** pinfo = new const prop_info*[nprops]; in BM_property_read() local
179 pinfo[i] = __system_property_find(pa.names[random() % nprops]); in BM_property_read()
184 __system_property_read(pinfo[i], 0, propvalue); in BM_property_read()
188 delete[] pinfo; in BM_property_read()
198 const prop_info** pinfo = new const prop_info*[nprops]; in BM_property_serial() local
200 pinfo[i] = __system_property_find(pa.names[random() % nprops]); in BM_property_serial()
205 __system_property_serial(pinfo[i]); in BM_property_serial()
209 delete[] pinfo; in BM_property_serial()
/bionic/libc/bionic/
Dlibc_logging.cpp489 const prop_info* pinfo; member
496 if (!cache->pinfo) { in refresh_cache()
497 cache->pinfo = __system_property_find(key); in refresh_cache()
498 if (!cache->pinfo) { in refresh_cache()
502 uint32_t serial = __system_property_serial(cache->pinfo); in refresh_cache()
509 __system_property_read(cache->pinfo, 0, buf); in refresh_cache()