Lines Matching defs:domain

83     << "  -D <domain>, --domain=<domain>" << endl
84 << " Show specific domain/domains logs with format: domain1,domain2,doman3" << endl
85 << " Don't show specific domain/domains logs with format: ^domain1,domain2,doman3" << endl
86 << " Max domain count is " << MAX_DOMAINS << "." << endl
87 << " See domain description at the end of this message." << endl
94 << " Don't show specific domain/domains logs with format: ^pid1,pid2,pid3" << endl
200 << " domainon domain flow control on" << endl
201 << " domainoff domain flow control off" << endl
215 << " -D <domain>, --domain=<domain>" << endl
216 << " Set specific domain loggable level." << endl
217 << " See domain description at the end of this message." << endl
220 << " The priority is: tag level > domain level > global level." << endl
233 << " To reduce redundant info when printing logs, only last five hex numbers of domain are printed" << endl
234 << " So if user wants to use -D option to filter OS logs, user should add 0xD0 as prefix to the printed domain:"
237 << " The xxxxx is the domain string printed in logs." << endl;
259 {"domain", DomainHelper},
268 << " query/clear/buffer/stats/persist/private/kmsg/flowcontrol/baselevel/domain/combo" << endl;
423 .domain = rsp.domain,
475 PrintResult(ret, (string("Set domain 0x") + Uint2HexStr(context.domains[i]) + " log level to " + arg));
501 uint32_t domain = HexStr2Uint(d);
502 if (domain == 0) {
505 context.domains[index++] = domain;
706 string domain = "domain";
715 } else if (argStr == (domain + FEATURE_ON)) {
717 cout << "Set flow control by domain to enabled, result: " << ErrorCode2Str(ret) << endl;
718 } else if (argStr == (domain + FEATURE_OFF)) {
720 cout << "Set flow control by domain to disabled, result: " << ErrorCode2Str(ret) << endl;
1003 {'D', "domain", ControlCmd::NOT_CMD, DomainHandler, true, 1},