/external/selinux/python/semanage/ |
seobject.py | 111 def log(self, msg, name="", sename="", serole="", serange="", oldsename="", oldserole="", oldserange=""): member in class:logger 146 def log(self, msg, name="", sename="", serole="", serange="", oldsename="", oldserole="", oldserange=""): member in class:logger 163 self.log(msg, name, sename, serole, serange, oldsename, oldserole, oldserange) 179 def log(self, msg, name="", sename="", serole="", serange="", oldsename="", oldserole="", oldserange=""): member in class:nulllogger 589 self.mylog.log("login", name, sename=sename, serange=serange, serole=",".join(serole), oldserole=",".join(oldserole), oldsename=self.oldsename, oldserange=self.oldserange) 649 self.mylog.log("login", name, sename=self.sename, serange=self.serange, serole=",".join(serole), oldserole=",".join(oldserole), oldsename=self.oldsename, oldserange=self.oldserange) 859 self.mylog.log("seuser", sename=name, serole=",".join(roles), serange=serange) 924 self.mylog.log("seuser", sename=name, oldsename=name, serole=role, serange=serange, oldserole=oldserole, oldserange=oldserange) [all...] |
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/ |
SLF4JBridgeHandler.java | 42 * <p>Bridge/route all JUL log records to the SLF4J API.</p> 45 * SLF4JBridgeHandler instance will redirect all JUL log records are redirected 72 * // usual pattern: get a Logger and then log a message 80 * statements (60 fold or 6000% increase) and measurably impact the performance of enabled log 83 * log statements with the help of <a href="http://logback.qos.ch/manual/configuration.html#LevelChangePropagator">LevelChangePropagator</a>. 115 * in j.u.l. will be redirected. For example, if a log statement invoking a 221 lal.log(null, FQCN, slf4jLevel, i18nMessage, null, record.getThrown()); 276 * about discarding log statements. 278 * @param record Description of the log event. A null record is silently ignored
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/ |
Profiler.java | 193 public void log() { method in class:Profiler 196 throw new NullPointerException("If you invoke the log() method, then you must associate a logger with this profiler.");
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/ |
X86Disassembler.cpp | 99 /// @param log - A string to be logged. logger() adds a newline. 100 static void logger(void* arg, const char* log) { 105 vStream << log << "\n"; local
|
/external/testng/kobalt/wrapper/ |
kobalt-wrapper.jar | |
/external/testng/src/main/java/org/testng/reporters/ |
VerboseReporter.java | 114 log("RUNNING: Suite: \"" + suiteName + "\" containing \"" + ctx.getAllTestMethods().length + "\" Tests (config: " + ctx.getSuite().getXmlSuite().getFileName() + ")"); 137 // Log test summary 152 log(sb.toString()); 156 * Log meaningful message for passed in arguments. 250 log(sb.toString()); 253 protected void log(String message) { method in class:VerboseReporter
|
/external/v8/testing/gmock/test/ |
gmock-internal-utils_test.cc | 400 // Tests the Log() function. 402 // Verifies that Log() behaves correctly for the given verbosity level 403 // and log severity. 409 Log(severity, "Test log.\n", 0); 414 "^\nGMOCK WARNING:\nTest log\\.\nStack trace:\n" : 415 "^\nTest log\\.\nStack trace:\n")); 423 // Log() doesn't include the stack trace in the output. 428 Log(kInfo, "Test log.\n", -1) 449 const string log = GetCapturedStdout(); local [all...] |
/external/v8/tools/clang/blink_gc_plugin/ |
process-graph.py | 66 def log(msg): function 161 log("Found %d files" % len(files)) 229 log("Copied edges down <super> edges for %d graph nodes" % global_inc_copy) 319 log("Reading graph from pickled file: " + args.pickle_graph) 325 log("Saving graph to pickle file: " + args.pickle_graph) 333 log("Reading ignored cycles from file: " + args.ignore_cycles) 432 log("Reading files from stdin") 436 log("Reading files and directories from command line") 443 log("Building graph from files in directory: " + f) 446 log("Building graph from file: " + f [all...] |
/external/vogar/src/vogar/ |
ExpectationStore.java | 51 private final Log log; field in class:ExpectationStore 55 private ExpectationStore(Log log) { 56 this.log = log; 109 public static ExpectationStore parse(Log log, 114 ExpectationStore result = new ExpectationStore(log); 124 log.verbose("loading expectations file " + expectationsFile) [all...] |
OutcomeStore.java | 49 private final Log log; field in class:OutcomeStore 57 public OutcomeStore(Log log, Mkdir mkdir, Rm rm, File resultsDir, boolean recordResults, 59 this.log = log; 78 log.verbose("parsing outcomes from " + oldOutcomes.length + " files"); 87 log.info("Failed to read outcomes from " + resultsDir, e); 146 log.info("Failed to write outcomes to " + outputFile, e); 174 log.verbose("garbage collected results file: " + outcomeFiles[i]) [all...] |
/external/vogar/src/vogar/android/ |
AndroidSdk.java | 29 import vogar.Log; 41 private final Log log; field in class:AndroidSdk 64 Log log, Mkdir mkdir, ModeId modeId, boolean useJack) { 65 List<String> path = new Command.Builder(log).args("which", "dx") 74 List<String> adbPath = new Command.Builder(log) 115 log.verbose("Using android platform: " + newestPlatform); 119 log.verbose("using android sdk: " + sdkRoot); 121 log.verbose("Using android source build mode to find dependencies.") [all...] |
/external/vogar/src/vogar/commands/ |
Command.java | 39 import vogar.Log; 49 private final Log log; field in class:Command 60 public Command(Log log, String... args) { 61 this.log = log; 70 this.log = builder.log; 90 log.verbose("executing " + args + (workingDir != null ? " in " + workingDir : "")) 249 private final Log log; field in class:Command.Builder [all...] |
/external/vulkan-validation-layers/demos/smoke/ |
Shell.cpp | 42 void Shell::log(LogPriority priority, const char *msg) function in class:Shell 88 log(prio, ss.str().c_str());
|
/frameworks/av/media/img_utils/src/ |
TiffIfd.cpp | 24 #include <utils/Log.h> 376 void TiffIfd::log() const { function in class:android::img_utils::TiffIfd
|
TiffWriter.cpp | 104 log(); 381 void TiffWriter::log() const { function in class:android::img_utils::TiffWriter 385 mNamedIfds[i]->log();
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
AudioPort.cpp | 376 void AudioPort::log(const char* indent) const function in class:android::AudioPort
|
/frameworks/av/services/mediaresourcemanager/ |
ResourceManagerService.cpp | 20 #include <utils/Log.h> 209 String8 log = String8::format("config(%s)", getString(policies).string()); local 210 mServiceLog->add(log); 229 String8 log = String8::format("addResource(pid %d, clientId %lld, resources %s)", local 231 mServiceLog->add(log); 254 String8 log = String8::format( local 257 mServiceLog->add(log); 297 String8 log = String8::format("reclaimResource(callingPid %d, resources %s)", local 299 mServiceLog->add(log); 373 log = String8::format("reclaimResource from client %p", clients[i].get()) [all...] |
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
Tracer.java | 18 import android.util.Log; 47 * logcat, log file or both. 57 public void log(String message); method in interface:Tracer.TracerSink 71 public void log(String message) { method in class:Tracer.FileSink 84 public void log(String message) { method in class:Tracer.LogcatSink 85 Log.i(LOGCAT_TAG, message); 145 Log.w("Tracer", "Could not open log file: " + e.getMessage()); 157 * Sets the name of the log file where tracing output will be written if the 160 * @param filename name of the log file 179 private void log(String message) { method in class:Tracer [all...] |
/frameworks/base/core/java/android/app/ |
QueuedWork.java | 25 import android.util.Log; 162 Log.d(LOG_TAG, "waiting"); 203 mWaitTimes.log(LOG_TAG, "waited: "); 262 Log.d(LOG_TAG, "processing " + work.size() + " items took " +
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dpSink.java | 26 import android.util.Log; 134 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 136 if (VDBG) Log.d(TAG,"Unbinding service..."); 142 Log.e(TAG,"",re); 149 if (VDBG) Log.d(TAG,"Binding service..."); 153 Log.e(TAG,"",re); 173 Log.e(TAG,"",e); 186 Log.e(TAG, "Could not bind to Bluetooth A2DP Service with " + intent); 199 Log.e(TAG,"",e); 209 Log.e(TAG,"",re) 513 private static void log(String msg) { method in class:BluetoothA2dpSink [all...] |
BluetoothMap.java | 26 import android.util.Log; 58 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 60 if (VDBG) Log.d(TAG,"Unbinding service..."); 66 Log.e(TAG,"",re); 73 if (VDBG) Log.d(TAG,"Binding service..."); 77 Log.e(TAG,"",re); 88 if (DBG) Log.d(TAG, "Create BluetoothMap proxy object"); 97 Log.e(TAG,"",e); 109 Log.e(TAG, "Could not bind to Bluetooth MAP Service with " + intent); 135 Log.e(TAG,"",e) 388 private static void log(String msg) { method in class:BluetoothMap [all...] |
BluetoothPan.java | 28 import android.util.Log; 138 Log.w(TAG,"Unable to register BluetoothStateChangeCallback",re); 140 if (VDBG) Log.d(TAG, "BluetoothPan() call bindService"); 150 Log.e(TAG, "Could not bind to Bluetooth Pan Service with " + intent); 157 if (VDBG) log("close()"); 164 Log.w(TAG,"Unable to unregister BluetoothStateChangeCallback",re); 174 Log.e(TAG,"",re); 190 Log.d(TAG, "onBluetoothStateChange on: " + on); 194 if (VDBG) Log.d(TAG, "onBluetoothStateChange calling doBind()"); 199 Log.e(TAG,"onBluetoothStateChange: could not bind to PAN service: ", e) 400 private static void log(String msg) { method in class:BluetoothPan [all...] |
BluetoothPbap.java | 25 import android.util.Log; 115 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 117 if (VDBG) Log.d(TAG,"Unbinding service..."); 123 Log.e(TAG,"",re); 130 if (VDBG) Log.d(TAG,"Binding service..."); 134 Log.e(TAG,"",re); 153 Log.e(TAG,"",e); 165 Log.e(TAG, "Could not bind to Bluetooth Pbap Service with " + intent); 191 Log.e(TAG,"",e); 201 Log.e(TAG,"",re) 319 private static void log(String msg) { method in class:BluetoothPbap [all...] |
BluetoothPbapClient.java | 28 import android.util.Log; 60 Log.d(TAG, "onBluetoothStateChange: PBAP CLIENT up=" + up); 64 Log.d(TAG,"Unbinding service..."); 71 Log.e(TAG,"",re); 79 Log.d(TAG,"Binding service..."); 84 Log.e(TAG,"",re); 96 Log.d(TAG, "Create BluetoothPbapClient proxy object"); 106 Log.e(TAG,"",e); 118 Log.e(TAG, "Could not bind to Bluetooth PBAP Client Service with " + intent); 144 Log.e(TAG,"",e) 308 private static void log(String msg) { method in class:BluetoothPbapClient [all...] |
BluetoothSap.java | 30 import android.util.Log; 96 if (DBG) Log.d(TAG, "onBluetoothStateChange: up=" + up); 98 if (VDBG) Log.d(TAG,"Unbinding service..."); 104 Log.e(TAG,"",re); 111 if (VDBG) Log.d(TAG,"Binding service..."); 115 Log.e(TAG,"",re); 126 if (DBG) Log.d(TAG, "Create BluetoothSap proxy object"); 135 Log.e(TAG,"",e); 147 Log.e(TAG, "Could not bind to Bluetooth SAP Service with " + intent); 174 Log.e(TAG,"",e) 411 private static void log(String msg) { method in class:BluetoothSap [all...] |