Home
last modified time | relevance | path

Searched refs:ddflags (Results 1 – 4 of 4) sorted by relevance

/system/core/toolbox/upstream-netbsd/bin/dd/
Dargs.c142 if (ddflags & ap->noset) { in jcl()
148 ddflags |= ap->set; in jcl()
154 if (ddflags & C_BS) { in jcl()
160 if (ddflags & (C_BLOCK | C_LCASE | C_SWAB | C_UCASE | in jcl()
162 ddflags &= ~C_BS; in jcl()
163 ddflags |= C_IBS|C_OBS; in jcl()
167 if (ddflags & C_BS && ddflags & (C_IBS|C_OBS)) in jcl()
175 if (ddflags & (C_BLOCK|C_UNBLOCK)) { in jcl()
176 if (!(ddflags & C_CBS)) { in jcl()
180 cfunc = ddflags & C_BLOCK ? block : unblock; in jcl()
[all …]
Ddd.c83 u_int ddflags; /* conversion options */ variable
187 (O_CREAT | (ddflags & (C_SEEK | C_NOTRUNC) ? 0 : O_TRUNC)) in setup()
214 if (!(ddflags & (C_BLOCK|C_UNBLOCK))) { in setup()
216 if (!(ddflags & C_BS)) in setup()
242 if ((ddflags & (C_OF | C_SEEK | C_NOTRUNC)) == (C_OF | C_SEEK)) in setup()
250 if (ddflags & (C_LCASE|C_UCASE)) { in setup()
258 if (ddflags & C_ASCII || ddflags & C_EBCDIC) { in setup()
259 if (ddflags & C_LCASE) { in setup()
267 if (ddflags & C_LCASE) { in setup()
338 for (flags = ddflags;;) { in dd_in()
[all …]
Dextern.h74 extern u_int ddflags;
Dposition.c113 if (ddflags & C_NOERROR) { in pos_in()