/external/adhd/cras/src/tests/ |
dumper_unittest.cc | 14 dumpf(dumper, "hello %d", 1); 15 dumpf(dumper, "world %d\n123", 2); 16 dumpf(dumper, "456\n"); 31 dumpf(dumper, "hello %d\n", 1); 36 dumpf(dumper, "world %d", 2); 47 dumpf(dumper, "a");
|
dsp_unittest.cc | 127 dumpf(d, "built-in module\n");
|
/external/adhd/cras/src/common/ |
dumper.h | 22 void dumpf(struct dumper *dumper, const char *format, ...);
|
dumper.c | 13 void dumpf(struct dumper *dumper, const char *format, ...) function
|
/external/adhd/cras/src/server/ |
cras_expr.c | 99 dumpf(d, "none"); 102 dumpf(d, "boolean(%s)", 106 dumpf(d, "integer(%d)", value->u.integer); 109 dumpf(d, "string(%s)", value->u.string); 112 dumpf(d, "function(%p)", value->u.function); 332 dumpf(d, "--- environment ---\n"); 334 dumpf(d, " key=%s,", *key); 335 dumpf(d, " value="); 338 dumpf(d, "\n"); 491 dumpf(d, "%*s(none)", indent, "") [all...] |
cras_dsp_ini.c | 466 dumpf(d, "---- ini dump begin ---\n"); 467 dumpf(d, "ini->dict = %p\n", ini->dict); 469 dumpf(d, "number of plugins = %d\n", ARRAY_COUNT(&ini->plugins)); 471 dumpf(d, "[plugin %d: %s]\n", i, plugin->title); 472 dumpf(d, "library=%s\n", plugin->library); 473 dumpf(d, "label=%s\n", plugin->label); 474 dumpf(d, "purpose=%s\n", plugin->purpose); 475 dumpf(d, "disable=%p\n", plugin->disable_expr); 477 dumpf(d, 485 dumpf(d, "number of flows = %d\n", ARRAY_COUNT(&ini->flows)) [all...] |
cras_dsp_pipeline.c | 921 dumpf(d, " %s (%d) =\n", name, n); 924 dumpf(d, " %p, peer %p, orig=%d, buf=%d\n", 939 dumpf(d, " %s (%d) =\n", name, ARRAY_COUNT(control_ports)); 942 dumpf(d, " %p, peer %p, orig=%d, value=%g\n", 953 dumpf(d, "---- pipeline dump begin ----\n"); 954 dumpf(d, "pipeline (%s):\n", pipeline->purpose); 955 dumpf(d, " input channels: %d\n", pipeline->input_channels); 956 dumpf(d, " output channels: %d\n", pipeline->output_channels); 957 dumpf(d, " sample_rate: %d\n", pipeline->sample_rate); 958 dumpf(d, " processed samples: %" PRId64 "\n", pipeline->total_samples) [all...] |
cras_dsp_mod_ladspa.c | 117 dumpf(d, " LADSPA: dlopen=%p, desc=%p, handle=%p, activated=%d\n", 121 dumpf(d, " Name=%s\n", descriptor->Name); 122 dumpf(d, " Maker=%s\n", descriptor->Maker);
|
cras_dsp_mod_builtin.c | 44 dumpf(d, "built-in module\n");
|
/external/dtc/ |
fdtdump.c | 42 #define dumpf(fmt, args...) \ macro 101 dumpf("%04zx: tag: 0x%08x (%s)\n", 141 dumpf("%04zx: string: %s\n", (uintptr_t)s - blob_off, s); 142 dumpf("%04zx: value\n", (uintptr_t)t - blob_off);
|