Home | History | Annotate | Download | only in stat

Lines Matching defs:lfmt

662 	char *stmp, lfmt[24], tmp[20];
1105 lfmt[0] = '\0';
1106 (void)strcat(lfmt, "%");
1108 (void)strcat(lfmt, "#");
1110 (void)strcat(lfmt, " ");
1112 (void)strcat(lfmt, "+");
1114 (void)strcat(lfmt, "-");
1116 (void)strcat(lfmt, "0");
1129 (void)strcat(lfmt, tmp);
1131 (void)strcat(lfmt, "lld");
1132 return (snprintf(buf, blen, lfmt,
1154 (void)strcat(lfmt, tmp);
1157 (void)strcat(lfmt, "lld");
1163 (void)strcat(lfmt, ".%0");
1172 (void)strcat(lfmt, tmp);
1185 l = snprintf(buf, blen, lfmt, (long long)secs, nsecs);
1196 (void)strcat(lfmt, tmp);
1200 (void)strcat(lfmt, tmp);
1209 (void)strcat(lfmt, "s");
1210 return (snprintf(buf, blen, lfmt, sdata));
1223 (void)strcat(lfmt, "ll");
1225 case FMTF_DECIMAL: (void)strcat(lfmt, "d"); break;
1226 case FMTF_OCTAL: (void)strcat(lfmt, "o"); break;
1227 case FMTF_UNSIGNED: (void)strcat(lfmt, "u"); break;
1228 case FMTF_HEX: (void)strcat(lfmt, "x"); break;
1241 return (snprintf(buf, blen, lfmt, data));