Home
last modified time | relevance | path

Searched refs:curfile (Results 1 – 3 of 3) sorted by relevance

/busybox-1.35.0/libbb/
Dprogress.c48 void FAST_FUNC bb_progress_init(bb_progress_t *p, const char *curfile) in bb_progress_init() argument
52 p->curfile = unicode_conv_to_printable_fixedwidth(/*NULL,*/ curfile, 20); in bb_progress_init()
54 p->curfile = curfile; in bb_progress_init()
127 fprintf(stderr, "\r%s " + notty, p->curfile); in bb_progress_update()
129 fprintf(stderr, "\r%-20.20s " + notty, p->curfile); in bb_progress_update()
/busybox-1.35.0/networking/
Dwget.c249 const char *curfile; /* Name of current file being transferred */ member
329 bb_progress_init(&G.pmt, G.curfile); in progress_meter()
1155 G.curfile = bb_get_last_path_component_nostrip(G.fname_out); in download_one_url()
/busybox-1.35.0/include/
Dlibbb.h2200 const char *curfile; member
2203 #define is_bb_progress_inited(p) ((p)->curfile != NULL)
2205 if (ENABLE_UNICODE_SUPPORT) free((char*)((p)->curfile)); \
2206 (p)->curfile = NULL; \
2208 void bb_progress_init(bb_progress_t *p, const char *curfile) FAST_FUNC;