Home | History | Annotate | Download | only in strace

Lines Matching refs:open

1154 	/* Open the process pseudo-files in /proc. */
1156 if ((tcp->pfd = open(proc, O_WRONLY|O_EXCL)) < 0) {
1157 perror("strace: open(\"/proc/...\", ...)");
1164 if ((tcp->pfd_stat = open(proc, O_RDONLY|O_EXCL)) < 0) {
1165 perror("strace: open(\"/proc/...\", ...)");
1172 if ((tcp->pfd_as = open(proc, O_RDONLY|O_EXCL)) < 0) {
1173 perror("strace: open(\"/proc/...\", ...)");
1180 /* Open the process pseudo-file in /proc. */
1183 tcp->pfd = open(proc, O_RDWR|O_EXCL);
1186 tcp->pfd = open(proc, O_RDWR);
1189 perror("strace: open(\"/proc/...\", ...)");
1198 if ((tcp->pfd_reg = open(proc, O_RDONLY)) < 0) {
1199 perror("strace: open(\"/proc/.../regs\", ...)");
1204 if ((tcp->pfd_status = open(proc, O_RDONLY)) < 0) {
1205 perror("strace: open(\"/proc/.../status\", ...)");