OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:queue_path
(Results
1 - 2
of
2
) sorted by null
/external/linux-kselftest/tools/testing/selftests/mqueue/
mq_open_tests.c
55
char *
queue_path
;
variable
90
if (
queue_path
)
95
mq_unlink(
queue_path
);
202
if ((queue = mq_open(
queue_path
, flags, perms, attr)) == -1)
209
if (mq_unlink(
queue_path
))
224
if ((queue = mq_open(
queue_path
, flags, perms, attr)) == -1)
231
if (mq_unlink(
queue_path
))
252
queue_path
= strdup(argv[1]);
254
queue_path
= malloc(strlen(argv[1]) + 2);
255
if (!
queue_path
) {
[
all
...]
mq_perf_tests.c
96
char *
queue_path
= "/mq_perf_tests";
variable
141
.arg = &
queue_path
,
190
if (
queue_path
)
195
mq_unlink(
queue_path
);
283
* shutdown of the program. The global
queue_path
is used to set what
292
queue = mq_open(
queue_path
, flags, perms, attr);
297
printf("\n\tQueue %s created:\n",
queue_path
);
603
option =
queue_path
;
605
queue_path
= malloc(strlen(option) + 2);
606
if (!
queue_path
) {
[
all
...]
Completed in 179 milliseconds