Lines Matching defs:new_indent
211 char *new_indent;
385 new_indent = malloc(depth + 3);
386 if (new_indent == NULL) {
387 new_indent = indent;
389 memset(new_indent, ' ', depth + 2);
390 new_indent[depth + 2] = 0;
394 cti_log_object(context, serial, command, key, ": ", value, new_indent);
401 cti_log_object(context, serial, command, numbuf, ": ", value, new_indent);
405 if (new_indent != indent) {
406 free(new_indent);