Lines Matching defs:file
2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
53 /* Split arg into meth and file */
55 char *file = strchr(meth, ':');
56 if (file) {
57 *(file++) = '\0';
58 if (!*file) {
59 file = NULL;
64 * we presume file indicates an mutexfile is a file path
65 * unless the method sets mutexfile=file and NULLs file
78 else if (!strcasecmp(meth, "fcntl") || !strcasecmp(meth, "file")) {
83 else if (!strcasecmp(meth, "flock") || !strcasecmp(meth, "file")) {
90 /* Posix/SysV semaphores aren't file based, use the literal name
94 if (file) {
95 *mutexfile = apr_pstrdup(pool, file);
97 file = NULL;
116 * mutexfile and NULLing out file, presume it is a file we
119 if (file) {
120 *mutexfile = ap_runtime_dir_relative(pool, file);
351 /* a file-based mutex mechanism was configured, but
352 * without a mutex file directory; go back through
391 fname ? "(file " : "",