Home
last modified time | relevance | path

Searched refs:next_dir (Results 1 – 12 of 12) sorted by relevance

/illumos-gate/usr/src/cmd/svr4pkg/pkgproto/
H A Dmain.c346 char *next_dir; /* next directory in targ_name */ in scan_raw_ln() local
378 next_dir = strchr(targ_ptr, '/'); in scan_raw_ln()
379 if (next_dir) in scan_raw_ln()
380 next_dir++; /* point to name not '/' */ in scan_raw_ln()
382 next_dir = targ_ptr+strlen(targ_ptr); in scan_raw_ln()
385 str_size = ((ptrdiff_t)next_dir - (ptrdiff_t)this_dir); in scan_raw_ln()
394 const_ptr = this_dir = next_dir; in scan_raw_ln()
/illumos-gate/usr/src/cmd/ndmpd/tlm/
H A Dtlm_traverse.c332 int next_dir, rv; in traverse_post() local
410 next_dir = 1; in traverse_post()
412 if (next_dir) { in traverse_post()
420 next_dir = 0; in traverse_post()
507 next_dir = 1; in traverse_post()
542 if (next_dir) in traverse_post()
852 next_dir = 1; in traverse_level()
854 if (next_dir) { in traverse_level()
880 next_dir = 0; in traverse_level()
889 next_dir = 0; in traverse_level()
[all …]
/illumos-gate/usr/src/cmd/lp/lib/printers/
H A Dprintwheels.c71 if (!(name = next_dir(Lp_A_PrintWheels, &lastdir)))
188 while ((name = next_dir(Lp_A_PrintWheels, &lastdir)))
H A Dgetpentry.c87 if (!(name = next_dir(Lp_A_Printers, &lastdir))) in getpentry()
H A Ddelprinter.c76 while ((name = next_dir(Lp_A_Printers, &lastdir)))
H A Dgetprinter.c99 if (!(name = next_dir(Lp_A_Printers, &lastdir))) in getprinter()
/illumos-gate/usr/src/cmd/bart/
H A Drules.c928 struct dir_component *new, *next_dir; in add_dir() local
937 next_dir = *dir; in add_dir()
938 while (next_dir->next != NULL) in add_dir()
939 next_dir = next_dir->next; in add_dir()
941 next_dir->next = new; in add_dir()
/illumos-gate/usr/src/cmd/lp/lib/requests/
H A Danyrequests.c57 while ((name = next_dir(Lp_Requests, &lastdir))) { in anyrequests()
/illumos-gate/usr/src/cmd/lp/lib/forms/
H A Ddelform.c66 while ((name = next_dir(Lp_A_Forms, &lastdir)))
H A Dgetform.c67 if (!(name = next_dir(Lp_A_Forms, &lastdir))) in getform()
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dinit.c145 while((sysname = next_dir(Lp_Requests, &addr)) != NULL) { in init_requests()
/illumos-gate/usr/src/cmd/lp/include/
H A Dlp.h588 #define next_dir(base, ptr) next_x(base, ptr, S_IFDIR) macro