lq                631 http/ngx_http.c     ngx_http_location_queue_t  *lq;
lq                644 http/ngx_http.c         lq = (ngx_http_location_queue_t *) q;
lq                646 http/ngx_http.c         clcf = lq->exact ? lq->exact : lq->inclusive;
lq                675 http/ngx_http.c     ngx_http_location_queue_t   *lq;
lq                701 http/ngx_http.c         lq = (ngx_http_location_queue_t *) q;
lq                703 http/ngx_http.c         clcf = lq->exact ? lq->exact : lq->inclusive;
lq                755 http/ngx_http.c             lq = (ngx_http_location_queue_t *) q;
lq                757 http/ngx_http.c             *(clcfp++) = lq->exact;
lq                781 http/ngx_http.c             lq = (ngx_http_location_queue_t *) q;
lq                783 http/ngx_http.c             *(clcfp++) = lq->exact;
lq                803 http/ngx_http.c     ngx_http_location_queue_t  *lq;
lq                819 http/ngx_http.c         lq = (ngx_http_location_queue_t *) q;
lq                821 http/ngx_http.c         clcf = lq->exact ? lq->exact : lq->inclusive;
lq                847 http/ngx_http.c     ngx_http_location_queue_t  *lq;
lq                859 http/ngx_http.c     lq = ngx_palloc(cf->temp_pool, sizeof(ngx_http_location_queue_t));
lq                860 http/ngx_http.c     if (lq == NULL) {
lq                870 http/ngx_http.c         lq->exact = clcf;
lq                871 http/ngx_http.c         lq->inclusive = NULL;
lq                874 http/ngx_http.c         lq->exact = NULL;
lq                875 http/ngx_http.c         lq->inclusive = clcf;
lq                878 http/ngx_http.c     lq->name = &clcf->name;
lq                879 http/ngx_http.c     lq->file_name = cf->conf_file->file.name.data;
lq                880 http/ngx_http.c     lq->line = cf->conf_file->line;
lq                882 http/ngx_http.c     ngx_queue_init(&lq->list);
lq                884 http/ngx_http.c     ngx_queue_insert_tail(*locations, &lq->queue);
lq                966 http/ngx_http.c     ngx_http_location_queue_t  *lq, *lx;
lq                974 http/ngx_http.c         lq = (ngx_http_location_queue_t *) q;
lq                977 http/ngx_http.c         if (ngx_strcmp(lq->name->data, lx->name->data) == 0) {
lq                979 http/ngx_http.c             if ((lq->exact && lx->exact) || (lq->inclusive && lx->inclusive)) {
lq                987 http/ngx_http.c             lq->inclusive = lx->inclusive;
lq               1007 http/ngx_http.c     ngx_http_location_queue_t  *lq, *lx;
lq               1013 http/ngx_http.c     lq = (ngx_http_location_queue_t *) q;
lq               1015 http/ngx_http.c     if (lq->inclusive == NULL) {
lq               1020 http/ngx_http.c     len = lq->name->len;
lq               1021 http/ngx_http.c     name = lq->name->data;
lq               1044 http/ngx_http.c     ngx_queue_add(&lq->list, &tail);
lq               1047 http/ngx_http.c         ngx_http_create_locations_list(&lq->list, ngx_queue_head(&lq->list));
lq               1051 http/ngx_http.c     ngx_queue_split(&lq->list, x, &tail);
lq               1054 http/ngx_http.c     ngx_http_create_locations_list(&lq->list, ngx_queue_head(&lq->list));
lq               1071 http/ngx_http.c     ngx_http_location_queue_t      *lq;
lq               1076 http/ngx_http.c     lq = (ngx_http_location_queue_t *) q;
lq               1077 http/ngx_http.c     len = lq->name->len - prefix;
lq               1088 http/ngx_http.c     node->exact = lq->exact;
lq               1089 http/ngx_http.c     node->inclusive = lq->inclusive;
lq               1091 http/ngx_http.c     node->auto_redirect = (u_char) ((lq->exact && lq->exact->auto_redirect)
lq               1092 http/ngx_http.c                            || (lq->inclusive && lq->inclusive->auto_redirect));
lq               1095 http/ngx_http.c     ngx_memcpy(node->name, &lq->name->data[prefix], len);
lq               1125 http/ngx_http.c     if (ngx_queue_empty(&lq->list)) {
lq               1129 http/ngx_http.c     node->tree = ngx_http_create_locations_tree(cf, &lq->list, prefix + len);