/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/ |
21-1.c | 31 char qname[NAMESIZE]; local 34 sprintf(qname, "/mq_open_21-1_%d", getpid()); 36 queue = mq_open(qname, O_RDWR, S_IRUSR | S_IWUSR, NULL); 40 mq_unlink(qname);
|
27-1.c | 27 char qname[PATH_MAX * 2]; local 31 sprintf(qname, "/mq_open_27-1_%d", getpid()); 35 strcat(qname, "0"); 37 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 40 qname); 43 mq_unlink(qname);
|
27-2.c | 30 char qname[NAME_MAX * 2]; local 34 sprintf(qname, "/mq_open_27-1_%d", getpid()); 38 strcat(qname, "0"); 40 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 43 qname); 46 mq_unlink(qname);
|
29-1.c | 28 char qname[NAMESIZE]; local 31 sprintf(qname, "/mq_open_29-1_%d", getpid()); 33 queue = mq_open(qname, O_RDWR, S_IRUSR | S_IWUSR, NULL); 38 mq_unlink(qname); 46 mq_unlink(qname);
|
3-1.c | 27 char qname[NAMESIZE]; local 30 sprintf(qname, "/mq_open_3-1_%d", getpid()); 32 queue = mq_open(qname, O_RDWR, S_IRUSR | S_IWUSR, NULL); 37 mq_unlink(qname);
|
12-1.c | 33 char qname[NAMESIZE]; local 37 sprintf(qname, "/mq_open_12-1_%d", getpid()); 39 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 50 mq_unlink(qname); 55 mq_unlink(qname);
|
15-1.c | 27 char qname[NAMESIZE]; local 30 sprintf(qname, "/mq_open_15-1_%d", getpid()); 32 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 40 * Open queue qname again with O_CREAT and O_EXCL set 42 queue2 = mq_open(qname, O_CREAT | O_EXCL | O_RDWR, 50 mq_unlink(qname); 55 mq_unlink(qname);
|
23-1.c | 28 char qname[NAMESIZE]; local 31 sprintf(qname, "/mq_open_23-1_%d", getpid()); 33 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 41 * Open queue qname again with O_CREAT and O_EXCL set 43 queue2 = mq_open(qname, O_CREAT | O_EXCL | O_RDWR, 51 mq_unlink(qname); 62 mq_unlink(qname); 70 mq_unlink(qname);
|
7-3.c | 30 char qname[NAMESIZE]; local 33 sprintf(qname, "/mq_open_7-3_%d", getpid()); 35 roqueue = mq_open(qname, O_CREAT | O_RDONLY, S_IRUSR | S_IWUSR, NULL); 42 roqueue2 = mq_open(qname, O_RDONLY, S_IRUSR | S_IWUSR, NULL); 51 mq_unlink(qname);
|
1-1.c | 29 char qname[NAMESIZE]; local 34 sprintf(qname, "/mq_open_1-1_%d", getpid()); 36 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 49 mq_unlink(qname);
|
11-1.c | 32 char qname[NAMESIZE]; local 36 sprintf(qname, "/mq_open_11-1_%d", getpid()); 38 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 49 mq_unlink(qname); 56 queue2 = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 61 mq_unlink(qname); 70 mq_unlink(qname); 76 mq_unlink(qname);
|
18-1.c | 28 char qname[NAMESIZE]; local 32 sprintf(qname, "/mq_open_18-1_%d", getpid()); 34 queue = mq_open(qname, O_CREAT | O_RDWR | O_NONBLOCK, 47 mq_unlink(qname); 52 mq_unlink(qname);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/speculative/ |
2-2.c | 27 char qname[NAMESIZE]; local 30 sprintf(qname, "msgqueue_%d", getpid()); 32 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 40 mq_unlink(qname);
|
2-3.c | 27 char qname[NAMESIZE]; local 30 sprintf(qname, "/tmp/msgqueue_%d", getpid()); 32 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 40 mq_unlink(qname);
|
6-1.c | 31 char qname[NAMESIZE]; local 34 sprintf(qname, "/msgqueue_%d", getpid()); 36 queue = mq_open(qname, O_CREAT | O_RDWR | O_WRONLY, 42 mq_unlink(qname);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_close/ |
1-1.c | 27 char qname[50]; local 30 sprintf(qname, "/" FUNCTION "_" TEST "_%d", getpid()); 32 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 43 if (mq_unlink(qname) != 0) {
|
3-1.c | 32 char qname[50]; local 35 sprintf(qname, "/" FUNCTION "_" TEST "_%d", getpid()); 37 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 45 mq_unlink(qname); 49 if (mq_unlink(qname) != 0) {
|
4-1.c | 30 char qname[50]; local 34 sprintf(qname, "/" FUNCTION "_" TEST "_%d", getpid()); 36 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 62 if (mq_unlink(qname) != 0) {
|
/external/strace/tests/ |
truncate.c | 40 static const char qname[] = "truncate\\nfilename"; local 50 qname, (unsigned long long) len, rc, errno2name());
|
truncate64.c | 40 static const char qname[] = "truncate64\\nfilename"; local 45 qname, (unsigned long long) len, rc, errno2name());
|
/external/strace/tests-m32/ |
truncate.c | 40 static const char qname[] = "truncate\\nfilename"; local 50 qname, (unsigned long long) len, rc, errno2name());
|
truncate64.c | 40 static const char qname[] = "truncate64\\nfilename"; local 45 qname, (unsigned long long) len, rc, errno2name());
|
/external/strace/tests-mx32/ |
truncate.c | 40 static const char qname[] = "truncate\\nfilename"; local 50 qname, (unsigned long long) len, rc, errno2name());
|
truncate64.c | 40 static const char qname[] = "truncate64\\nfilename"; local 45 qname, (unsigned long long) len, rc, errno2name());
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_timedsend/ |
18-1.c | 32 char qname[NAMESIZE]; local 37 sprintf(qname, "/mq_timedsend_18-1_%d", getpid()); 39 queue = mq_open(qname, O_CREAT | O_RDWR, S_IRUSR | S_IWUSR, NULL); 52 mq_unlink(qname); 57 mq_unlink(qname);
|