Searched refs:si (Results 1 - 18 of 18) sorted by relevance

/system/core/libunwindstack/tests/
H A DTestUtils.h40 siginfo_t si; local
44 if (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) == 0) {
/system/core/libmemunreachable/
H A DScopedSignalHandler.h43 [=](int signal, siginfo_t* si, void* uctx) { f(*this, signal, si, uctx); });
46 act.sa_sigaction = [](int signal, siginfo_t* si, void* uctx) { handler_(signal, si, uctx); };
H A DHeapWalker.cpp164 void HeapWalker::HandleSegFault(ScopedSignalHandler& handler, int signal, siginfo_t* si, argument
166 uintptr_t addr = reinterpret_cast<uintptr_t>(si->si_addr);
171 MEM_ALOGW("failed to read page at %p, signal %d", si->si_addr, signal);
172 if (!MapOverPage(si->si_addr)) {
/system/bt/bta/jv/
H A Dbta_jv_api.cc562 uint32_t si = BTA_JV_RFC_HDL_TO_SIDX(handle); local
567 si >= BTA_JV_MAX_RFC_SR_SESSION || !bta_jv_cb.rfc_cb[hi].rfc_hdl[si])
643 uint32_t si = BTA_JV_RFC_HDL_TO_SIDX(handle); local
645 if (hi < BTA_JV_MAX_RFC_CONN && si < BTA_JV_MAX_RFC_SR_SESSION &&
646 bta_jv_cb.rfc_cb[hi].rfc_hdl[si])
647 return bta_jv_cb.port_cb[bta_jv_cb.rfc_cb[hi].rfc_hdl[si] - 1].port_handle;
664 uint32_t si = BTA_JV_RFC_HDL_TO_SIDX(handle); local
669 << ", si=" << si; local
[all...]
H A Dbta_jv_act.cc328 int si = BTA_JV_RFC_HDL_TO_SIDX(p_pcb->handle); local
329 if (0 <= si && si < BTA_JV_MAX_RFC_SR_SESSION) p_cb->rfc_hdl[si] = 0;
439 uint32_t si = BTA_JV_RFC_HDL_TO_SIDX(jv_handle); local
441 si < BTA_JV_MAX_RFC_SR_SESSION &&
442 bta_jv_cb.rfc_cb[hi].rfc_hdl[si]) {
444 bta_jv_rfc_port_to_pcb(bta_jv_cb.rfc_cb[hi].rfc_hdl[si]);
1560 uint32_t si = 0; local
1584 } else if (si
[all...]
/system/core/debuggerd/libdebuggerd/
H A Dtombstone.cpp81 static void dump_probable_cause(log_t* log, const siginfo_t* si) { argument
83 if (si->si_signo == SIGSEGV && si->si_code == SEGV_MAPERR) {
84 if (si->si_addr < reinterpret_cast<void*>(4096)) {
86 } else if (si->si_addr == reinterpret_cast<void*>(0xffff0ffc)) {
88 } else if (si->si_addr == reinterpret_cast<void*>(0xffff0fe0)) {
90 } else if (si->si_addr == reinterpret_cast<void*>(0xffff0fc0)) {
92 } else if (si->si_addr == reinterpret_cast<void*>(0xffff0fa0)) {
94 } else if (si->si_addr == reinterpret_cast<void*>(0xffff0f60)) {
97 } else if (si
105 dump_signal_info(log_t* log, const siginfo_t* si) argument
441 siginfo_t* si = thread_info.siginfo; local
[all...]
/system/core/fastboot/
H A Dfs.cpp40 STARTUPINFO si; local
44 ZeroMemory(&si, sizeof(si));
45 si.cb = sizeof(si);
64 &si, // Pointer to STARTUPINFO structure
/system/core/debuggerd/handler/
H A Ddebuggerd_handler.cpp446 struct siginfo si = {}; local
448 memset(&si, 0, sizeof(si));
449 si.si_signo = signal_number;
450 si.si_code = SI_USER;
451 si.si_pid = __getpid();
452 si.si_uid = getuid();
453 info = &si;
/system/core/libunwindstack/tools/
H A Dunwind.cpp44 siginfo_t si; local
45 if (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) == 0) {
H A Dunwind_for_offline.cpp59 siginfo_t si; local
60 if (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) == 0) {
/system/core/libutils/
H A DFileMap.cpp138 SYSTEM_INFO si; local
140 GetSystemInfo( &si );
141 mPageSize = si.dwAllocationGranularity;
/system/security/keystore/
H A Dkeystore_attestation_id.cpp209 for (auto si : signature_digests) {
212 if (!ASN1_OCTET_STRING_set(asn1_item.get(), si.data(), si.size())) {
/system/core/storaged/tests/
H A Dstoraged_test.cpp361 storage_info_t si; local
384 si.day_start_tp = {};
389 si.update_perf_history((i + 1) * 5, stp);
392 vector<int> history = si.get_perf_history();
420 storage_info_t si; local
421 si.day_start_tp = {};
426 si.load_perf_history_proto(proto);
431 si.update_perf_history(100, stp);
433 vector<int> history = si.get_perf_history();
/system/core/libbacktrace/
H A Dbacktrace_read_benchmarks.cpp45 siginfo_t si; local
48 if (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) == 0) {
H A Dbacktrace_test.cpp119 siginfo_t si; local
120 while (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) < 0 && (errno == EINTR || errno == ESRCH)) {
/system/extras/perfprofd/scripts/
H A Dperf_proto_stack.py123 for si in profile.symbol_info:
124 map = SymbolMap(si.min_vaddr)
125 symbol_maps[si.filename] = map
126 for sym in si.symbols:
/system/core/libcutils/arch-x86_64/
H A Dandroid_memset16.S69 movzwl %si, %ecx
/system/core/libpixelflinger/
H A Dscanline.cpp1468 horz_iterator32 si(c);
1473 uint32_t s = si.get_pixel32();

Completed in 1060 milliseconds