Lines Matching refs:status
1591 int status = hists__init();
1593 if (status < 0)
1594 return status;
1603 status = perf_config(perf_top_config, &top);
1604 if (status)
1605 return status;
1610 status = perf_env__read_cpuid(&perf_env);
1611 if (status) {
1616 eprintf(status == ENOSYS ? 1 : 0, verbose,
1635 status = evswitch__init(&top.evswitch, top.evlist, stderr);
1636 if (status)
1680 status = target__validate(target);
1681 if (status) {
1682 target__strerror(target, status, errbuf, BUFSIZ);
1686 status = target__parse_uid(target);
1687 if (status) {
1690 target__strerror(target, status, errbuf, BUFSIZ);
1693 status = -saved_errno;
1710 status = -EINVAL;
1724 status = symbol__annotation_init();
1725 if (status < 0)
1731 status = symbol__init(NULL);
1732 if (status < 0)
1745 status = PTR_ERR(top.session);
1771 status = __cmd_top(&top);
1780 return status;