Searched refs:pi (Results 1 - 9 of 9) sorted by relevance
/system/core/base/ |
H A D | properties.cpp | 36 const prop_info* pi = __system_property_find(key.c_str()); local 37 if (pi == nullptr) return default_value; 40 if (__system_property_read(pi, nullptr, buf) > 0) return buf; 134 const prop_info* pi; local 136 while ((pi = __system_property_find(key.c_str())) == nullptr) { 143 return pi; 149 const prop_info* pi = WaitForPropertyCreation(key, relative_timeout, start_time); local 150 if (pi == nullptr) return false; 158 __system_property_read_callback(pi, WaitForPropertyCallback, &data); 164 if (!__system_property_wait(pi, dat [all...] |
/system/core/fastboot/ |
H A D | fs.cpp | 43 PROCESS_INFORMATION pi; local 48 ZeroMemory(&pi, sizeof(pi)); 61 &pi) // Pointer to PROCESS_INFORMATION structure 68 WaitForSingleObject(pi.hProcess, INFINITE); 70 GetExitCodeProcess(pi.hProcess, &exit_code); 72 CloseHandle(pi.hProcess); 73 CloseHandle(pi.hThread);
|
/system/libvintf/include/vintf/ |
H A D | Vndk.h | 32 VndkVersionRange(size_t s, size_t v, size_t pi, size_t pa) argument 33 : sdk(s), vndk(v), patchMin(pi), patchMax(pa) {}
|
/system/extras/simpleperf/ |
H A D | command.cpp | 28 bool Command::NextArgumentOrError(const std::vector<std::string>& args, size_t* pi) { argument 29 if (*pi + 1 == args.size()) { 30 LOG(ERROR) << "No argument following " << args[*pi] << " option. Try `simpleperf help " << name_ 34 ++*pi;
|
H A D | command.h | 52 bool NextArgumentOrError(const std::vector<std::string>& args, size_t* pi);
|
/system/extras/librank/ |
H A D | librank.c | 216 struct process_info *pi; local 341 pi = get_process(pids[i]); 360 mi = get_mapping(li, pi); 405 pi = mi->proc; 415 pi->cmdline, 416 pi->pid);
|
/system/core/libcutils/ |
H A D | properties.cpp | 137 static void property_list_callback(const prop_info* pi, void* data) { argument 138 __system_property_read_callback(pi, trampoline, data);
|
/system/libufdt/sysdeps/ |
H A D | libufdt_sysdeps_vendor.c | 65 TYPE *pi = (TYPE *)(parmi); \ 68 TYPE t = *pi; \ 69 *pi++ = *pj; \
|
/system/core/init/ |
H A D | property_service.cpp | 183 prop_info* pi = (prop_info*) __system_property_find(name.c_str()); local 184 if (pi != nullptr) { 192 __system_property_update(pi, value.c_str(), valuelen);
|
Completed in 390 milliseconds