lock_file          66 core/nginx.c         offsetof(ngx_core_conf_t, lock_file),
lock_file        1052 core/nginx.c       if (ccf->lock_file.len == 0) {
lock_file        1053 core/nginx.c           ngx_str_set(&ccf->lock_file, NGX_LOCK_PATH);
lock_file        1056 core/nginx.c       if (ngx_conf_full_name(cycle, &ccf->lock_file, 0) != NGX_OK) {
lock_file        1061 core/nginx.c       ngx_str_t  lock_file;
lock_file        1063 core/nginx.c       lock_file = cycle->old_cycle->lock_file;
lock_file        1065 core/nginx.c       if (lock_file.len) {
lock_file        1066 core/nginx.c           lock_file.len--;
lock_file        1068 core/nginx.c           if (ccf->lock_file.len != lock_file.len
lock_file        1069 core/nginx.c               || ngx_strncmp(ccf->lock_file.data, lock_file.data, lock_file.len)
lock_file        1076 core/nginx.c           cycle->lock_file.len = lock_file.len + 1;
lock_file        1077 core/nginx.c           lock_file.len += sizeof(".accept");
lock_file        1079 core/nginx.c           cycle->lock_file.data = ngx_pstrdup(cycle->pool, &lock_file);
lock_file        1080 core/nginx.c           if (cycle->lock_file.data == NULL) {
lock_file        1085 core/nginx.c           cycle->lock_file.len = ccf->lock_file.len + 1;
lock_file        1086 core/nginx.c           cycle->lock_file.data = ngx_pnalloc(cycle->pool,
lock_file        1087 core/nginx.c                                         ccf->lock_file.len + sizeof(".accept"));
lock_file        1088 core/nginx.c           if (cycle->lock_file.data == NULL) {
lock_file        1092 core/nginx.c           ngx_memcpy(ngx_cpymem(cycle->lock_file.data, ccf->lock_file.data,
lock_file        1093 core/nginx.c                                 ccf->lock_file.len),
lock_file         331 core/ngx_cycle.c     if (ngx_test_lockfile(cycle->lock_file.data, log) != NGX_OK) {
lock_file         951 core/ngx_cycle.c     file = ngx_pnalloc(cycle->pool, cycle->lock_file.len + zn->shm.name.len);
lock_file         956 core/ngx_cycle.c     (void) ngx_sprintf(file, "%V%V%Z", &cycle->lock_file, &zn->shm.name);
lock_file          67 core/ngx_cycle.h     ngx_str_t                 lock_file;
lock_file          95 core/ngx_cycle.h      ngx_str_t                lock_file;
lock_file         523 event/ngx_event.c     if (ngx_shmtx_create(&ngx_accept_mutex, shared, cycle->lock_file.data)