Lines Matching refs:ok

273     bool ok = true;
278 ok = false;
283 return ok;
343 bool ok = category.tags != 0;
352 ok = true;
355 ok |= fileIsWritable(path);
359 return ok;
368 bool ok = category.tags != 0;
377 ok = true;
380 ok |= fileExists(path);
384 return ok;
572 bool ok = true;
578 ok &= setKernelOptionEnable(path, false);
582 return ok;
610 bool ok = true;
620 ok = false;
627 return ok;
633 bool ok = true;
638 ok &= writeStr(k_currentTracerPath, "nop");
641 ok &= truncateFile(k_ftraceFilterPath);
645 ok &= writeStr(k_currentTracerPath, "function_graph");
646 ok &= setKernelOptionEnable(k_funcgraphAbsTimePath, true);
647 ok &= setKernelOptionEnable(k_funcgraphCpuPath, true);
648 ok &= setKernelOptionEnable(k_funcgraphProcPath, true);
649 ok &= setKernelOptionEnable(k_funcgraphFlatPath, true);
652 ok &= truncateFile(k_ftraceFilterPath);
656 ok &= appendStr(k_ftraceFilterPath, func);
662 if (ok) {
663 ok &= verifyKernelTraceFuncs(funcs);
667 return ok;
703 bool ok = true;
710 ok &= setCategoryEnable(token.string(), true);
713 return ok;
720 bool ok = true;
723 ok &= setCategoriesEnableFromFile(g_categoriesFile);
724 ok &= setTraceOverwriteEnable(g_traceOverwrite);
725 ok &= setTraceBufferSizeKB(g_traceBufferSizeKB);
726 ok &= setGlobalClockEnable(true);
727 ok &= setPrintTgidEnableIfPresent(true);
728 ok &= setKernelTraceFuncs(g_kernelTraceFuncs);
738 ok &= setTagsProperty(tags);
756 ok &= setAppCmdlineProperty(packageList.data());
757 ok &= pokeBinderServices();
761 ok &= disableKernelTraceEvents();
772 ok &= setKernelOptionEnable(path, true);
775 ok = false;
782 return ok;
1115 bool ok = true;
1116 ok &= setUpTrace();
1117 ok &= startTrace();
1119 if (ok && traceStart) {
1130 ok = clearTrace();
1133 if (ok && !async && !traceStream) {
1154 if (ok && traceDump) {
1176 } else if (!ok) {