Lines Matching defs:location
117 * Assign the global location list to this entry and reset the
143 * Assign the global location list to this entry and reset the
226 mountpoint : WORD WSPACE location {
249 | WORD WSPACE '-' options WSPACE location {
264 * Assign the global location list to this entry and reset the
288 locations : location
289 | location WSPACE locations
292 location : hosts ':' WORD {
295 struct sun_location *location;
297 /* allocate a new location */
298 location = CALLOC(struct sun_location);
306 location->host_list = (struct sun_host *)list->first;
309 location->path = xstrdup($3);
311 /* Add this location to the location list. */
312 sun_list_add(get_sun_location_list(), (qelem *)location);
317 struct sun_location *location;
319 /* allocate a new location */
320 location = CALLOC(struct sun_location);
322 location->path = xstrdup($2);
324 /* Add this location to the location list. */
325 sun_list_add(get_sun_location_list(), (qelem *)location);