Lines Matching refs:Lsp
1349 const lwpstatus_t *Lsp = pri->lwpstat; in getsubcode() local
1350 int syscall = Lsp->pr_syscall; in getsubcode()
1351 int nsysarg = Lsp->pr_nsysarg; in getsubcode()
1356 arg0 = Lsp->pr_sysarg[0]; in getsubcode()
1360 subcode = Lsp->pr_sysarg[2]; in getsubcode()
1364 subcode = ((int)Lsp->pr_sysarg[0] == AT_FDCWD && in getsubcode()
1365 Lsp->pr_sysarg[3] == 0)? 1 : 0; in getsubcode()
1368 if (nsysarg > 1 && Lsp->pr_sysarg[1] == NULL) { in getsubcode()
1372 if (nsysarg > 0 && (int)Lsp->pr_sysarg[0] != AT_FDCWD) { in getsubcode()
1377 subcode = (Lsp->pr_sysarg[3] == 0)? 1 : in getsubcode()
1378 (Lsp->pr_sysarg[3] == AT_SYMLINK_NOFOLLOW)? in getsubcode()
1382 if (nsysarg > 1 && Lsp->pr_sysarg[1] == NULL) { in getsubcode()
1386 if (nsysarg > 0 && (int)Lsp->pr_sysarg[0] != AT_FDCWD) { in getsubcode()
1391 subcode = (Lsp->pr_sysarg[4] == 0)? 1 : in getsubcode()
1392 (Lsp->pr_sysarg[4] == AT_SYMLINK_NOFOLLOW)? in getsubcode()
1399 subcode = ((int)Lsp->pr_sysarg[0] == AT_FDCWD)? in getsubcode()
1404 subcode = ((int)Lsp->pr_sysarg[0] == AT_FDCWD && in getsubcode()
1405 (int)Lsp->pr_sysarg[2] == AT_FDCWD)? 1 : 0; in getsubcode()
1409 subcode = ((int)Lsp->pr_sysarg[0] == AT_FDCWD && in getsubcode()
1410 (int)Lsp->pr_sysarg[2] == AT_FDCWD && in getsubcode()
1411 Lsp->pr_sysarg[4] == 0)? 1 : 0; in getsubcode()
1416 ((int)Lsp->pr_sysarg[0] != AT_FDCWD)? 0 : in getsubcode()
1417 (Lsp->pr_sysarg[2] == AT_REMOVEDIR)? 2 : in getsubcode()
1418 (Lsp->pr_sysarg[2] == 0)? 1 : 0; in getsubcode()
1422 subcode = ((int)Lsp->pr_sysarg[1] == AT_FDCWD)? in getsubcode()
1427 if (nsysarg > 1 && Lsp->pr_sysarg[1] == NULL) { in getsubcode()
1431 if (nsysarg > 0 && (int)Lsp->pr_sysarg[0] != AT_FDCWD) { in getsubcode()
1436 subcode = (Lsp->pr_sysarg[3] == 0)? 1 : in getsubcode()
1437 (Lsp->pr_sysarg[3] == AT_SYMLINK_NOFOLLOW)? in getsubcode()
1443 subcode = ((int)Lsp->pr_sysarg[0] == AT_FDCWD)? in getsubcode()
1444 ((Lsp->pr_sysarg[2] & O_CREAT)? 3 : 2) : in getsubcode()
1445 ((Lsp->pr_sysarg[2] & O_CREAT)? 1 : 0); in getsubcode()
1450 subcode = (Lsp->pr_sysarg[1] & O_CREAT)? 1 : 0; in getsubcode()
1457 subcode = Lsp->pr_sysarg[5]; in getsubcode()
1461 (Lsp->pr_why == PR_SYSEXIT && Lsp->pr_errno == 0 && in getsubcode()
1462 Lsp->pr_rval1 == 0); in getsubcode()
1466 if (Lsp->pr_why == PR_SYSEXIT && Lsp->pr_errno == 0 && in getsubcode()
1499 switch (Lsp->pr_sysarg[1]) { in getsubcode()