Lines Matching refs:utf8Args
365 Vector<String8> utf8Args; in handleShellCommand() local
366 utf8Args.setCapacity(argc); in handleShellCommand()
368 utf8Args.push(String8(argv[i])); in handleShellCommand()
373 if (!utf8Args[0].compare(String8("config"))) { in handleShellCommand()
374 return cmd_config(in, out, err, utf8Args); in handleShellCommand()
377 if (!utf8Args[0].compare(String8("print-uid-map"))) { in handleShellCommand()
378 return cmd_print_uid_map(out, utf8Args); in handleShellCommand()
381 if (!utf8Args[0].compare(String8("dump-report"))) { in handleShellCommand()
382 return cmd_dump_report(out, utf8Args); in handleShellCommand()
385 if (!utf8Args[0].compare(String8("pull-source")) && argc > 1) { in handleShellCommand()
386 return cmd_print_pulled_metrics(out, utf8Args); in handleShellCommand()
389 if (!utf8Args[0].compare(String8("send-broadcast"))) { in handleShellCommand()
390 return cmd_trigger_broadcast(out, utf8Args); in handleShellCommand()
393 if (!utf8Args[0].compare(String8("print-stats"))) { in handleShellCommand()
394 return cmd_print_stats(out, utf8Args); in handleShellCommand()
397 if (!utf8Args[0].compare(String8("meminfo"))) { in handleShellCommand()
401 if (!utf8Args[0].compare(String8("write-to-disk"))) { in handleShellCommand()
405 if (!utf8Args[0].compare(String8("log-app-breadcrumb"))) { in handleShellCommand()
406 return cmd_log_app_breadcrumb(out, utf8Args); in handleShellCommand()
409 if (!utf8Args[0].compare(String8("log-binary-push"))) { in handleShellCommand()
410 return cmd_log_binary_push(out, utf8Args); in handleShellCommand()
413 if (!utf8Args[0].compare(String8("clear-puller-cache"))) { in handleShellCommand()
417 if (!utf8Args[0].compare(String8("print-logs"))) { in handleShellCommand()
418 return cmd_print_logs(out, utf8Args); in handleShellCommand()
421 if (!utf8Args[0].compare(String8("send-active-configs"))) { in handleShellCommand()
422 return cmd_trigger_active_config_broadcast(out, utf8Args); in handleShellCommand()
425 if (!utf8Args[0].compare(String8("data-subscribe"))) { in handleShellCommand()
429 timeoutSec = atoi(utf8Args[1].c_str()); in handleShellCommand()