HomeSort by relevance Sort by last modified time
    Searched full:loginfo (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /external/iptables/extensions/
libipt_ULOG.c 49 struct ipt_ulog_info *loginfo = (struct ipt_ulog_info *) t->data; local
51 loginfo->nl_group = ULOG_DEFAULT_NLGROUP;
52 loginfo->qthreshold = ULOG_DEFAULT_QTHRESHOLD;
58 struct ipt_ulog_info *loginfo = cb->data; local
63 loginfo->nl_group = 1 << (cb->val.u8 - 1);
71 loginfo->copy_range = cb->val.u64;
74 loginfo->qthreshold = cb->val.u64;
81 const struct ipt_ulog_info *loginfo local
84 if (strcmp(loginfo->prefix, "") != 0) {
86 xtables_save_string(loginfo->prefix)
101 const struct ipt_ulog_info *loginfo local
    [all...]
libip6t_LOG.c 55 struct ip6t_log_info *loginfo = (struct ip6t_log_info *)t->data; local
57 loginfo->level = LOG_DEFAULT_LEVEL;
115 const struct ip6t_log_info *loginfo local
122 loginfo->logflags, loginfo->level);
125 if (loginfo->level == ip6t_log_names[i].level) {
130 printf(" UNKNOWN level %u", loginfo->level);
131 if (loginfo->logflags & IP6T_LOG_TCPSEQ)
133 if (loginfo->logflags & IP6T_LOG_TCPOPT)
135 if (loginfo->logflags & IP6T_LOG_IPOPT
151 const struct ip6t_log_info *loginfo local
188 const struct ip6t_log_info *loginfo = local
    [all...]
libipt_LOG.c 55 struct ipt_log_info *loginfo = (struct ipt_log_info *)t->data; local
57 loginfo->level = LOG_DEFAULT_LEVEL;
115 const struct ipt_log_info *loginfo local
122 loginfo->logflags, loginfo->level);
125 if (loginfo->level == ipt_log_names[i].level) {
130 printf(" UNKNOWN level %u", loginfo->level);
131 if (loginfo->logflags & IPT_LOG_TCPSEQ)
133 if (loginfo->logflags & IPT_LOG_TCPOPT)
135 if (loginfo->logflags & IPT_LOG_IPOPT
151 const struct ipt_log_info *loginfo local
188 const struct ipt_log_info *loginfo = local
    [all...]
libebt_log.c 88 struct ebt_log_info *loginfo = (struct ebt_log_info *)t->data; local
90 loginfo->bitmask = 0;
91 loginfo->prefix[0] = '\0';
92 loginfo->loglevel = LOG_NOTICE;
98 struct ebt_log_info *loginfo = (struct ebt_log_info *)(*target)->data; local
107 if (strlen(optarg) > sizeof(loginfo->prefix) - 1)
114 strcpy((char *)loginfo->prefix, (char *)optarg);
119 loginfo->loglevel = name_to_loglevel(optarg);
121 loginfo->loglevel = i;
123 if (loginfo->loglevel == 9
164 struct ebt_log_info *loginfo = (struct ebt_log_info *)target->data; local
    [all...]
  /external/junit/src/main/java/org/junit/rules/
Stopwatch.java 19 * private static void logInfo(Description description, String status, long nanos) {
29 * logInfo(description, &quot;succeeded&quot;, nanos);
34 * logInfo(description, &quot;failed&quot;, nanos);
39 * logInfo(description, &quot;skipped&quot;, nanos);
44 * logInfo(description, &quot;finished&quot;, nanos);
  /external/ImageMagick/MagickCore/
log.c 226 static LogInfo
304 LogInfo
311 log_info=(LogInfo *) AcquireMagickMemory(sizeof(*log_info));
312 if (log_info == (LogInfo *) NULL)
358 LogInfo
393 % LogInfo *GetLogInfo(const char *name,ExceptionInfo *exception)
402 static LogInfo *GetLogInfo(const char *name,ExceptionInfo *exception)
404 register LogInfo
409 return((LogInfo *) NULL);
415 p=(LogInfo *) GetNextValueInLinkedList(log_cache)
    [all...]
log.h 62 LogInfo;
74 extern MagickExport const LogInfo
  /external/toybox/toys/pending/
crond.c 70 static void loginfo(uint8_t loglevel, char *msg, ...) function
197 loginfo(LOG_LEVEL9, "parse error at %s", src);
229 if (TT.flagd) loginfo(LOG_LEVEL5, "user:%s entry:%s", cfile->username, line);
279 if (TT.flagd) loginfo(LOG_LEVEL5, " command:%s", j->cmd);
370 if (chdir(TT.crontabs_dir)) loginfo(LOG_EXIT, "chdir(%s)", TT.crontabs_dir);
371 if (!(dp = opendir("."))) loginfo(LOG_EXIT, "chdir(%s)", ".");
383 loginfo(LOG_LEVEL7, "ignoring file '%s' (no such user)", entry->d_name);
431 if (!pwd) loginfo(LOG_LEVEL9, "can't get uid for %s", cfile->username);
446 if (chdir(pwd->pw_dir)) loginfo(LOG_LEVEL9, "chdir(%s)", pwd->pw_dir);
448 if (TT.flagd) loginfo(LOG_LEVEL5, "child running %s", file)
    [all...]
  /external/mdnsresponder/mDNSCore/
uDNS.c 76 LogInfo("SetRecordRetry refresh in %d of %d for %s",
82 LogInfo("SetRecordRetry clamping to min refresh in %d of %d for %s",
96 LogInfo("SetRecordRetry retry in %d ms for %s", rr->ThisAPInterval, ARDisplayString(m, rr));
117 LogInfo("mDNS_AddDNSServer: Adding %#a for %##s, InterfaceID %p, scoped %d", addr, d->c, interface, scoped);
183 LogInfo("PenalizeDNSServer: Penalizing DNS server %#a:%d question (%##s) for question %p %##s (%s) SuppressUnusable %d",
196 LogInfo("PenalizeDNSServer: Strict Unicast Ordering is FALSE");
202 LogInfo("PenalizeDNSServer: Not Penalizing PTR question");
206 LogInfo("PenalizeDNSServer: Penalizing question type %d", q->qtype);
212 LogInfo("PenalizeDNSServer: Strict Unicast Ordering is TRUE");
235 LogInfo("PenalizeDNSServer: Server for %##s (%s) changed to %#a:%d (%##s)"
    [all...]
mDNSDebug.h 101 #define LogInfo( ... ) do { if (mDNS_LoggingEnabled) LogMsgWithLevel(MDNS_LOG_INFO, __VA_ARGS__); } while (0)
107 #define LogInfo( ARGS... ) do { if (mDNS_LoggingEnabled) LogMsgWithLevel(MDNS_LOG_INFO, ARGS); } while (0)
118 #define LogInfo (mDNS_LoggingEnabled == 0) ? ((void)0) : LogInfo_
mDNS.c 215 LogInfo("GetAuthEntity: Recycled %d records to reduce auth cache from %d to %d",
225 LogInfo("RR Auth now using %ld objects", r->rrauth_totalused);
288 LogInfo("InsertAuthRecord: inserting auth record %s from table", ARDisplayString(m, rr));
313 LogInfo("RemoveAuthRecord: removing auth record %s from table", ARDisplayString(m, rr));
384 LogInfo("GenerateNegativeResponse: Generating negative response for question %##s (%s)", q->qname.c, DNSTypeName(q->qtype));
418 LogInfo("AnswerQuestionByFollowingCNAME: %p %##s (%s) following CNAME referral %d for %s",
429 LogInfo("AnswerQuestionByFollowingCNAME: Resolving a .local CNAME %p %##s (%s) Record %s",
    [all...]
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
PreconditionPreparer.java 82 protected void logInfo(String info) {
86 protected void logInfo(String infoFormat, Object... args) {
WifiCheck.java 70 logInfo("Attempting connection to \"%s\"", mWifiSsid);
77 logInfo("Wifi is connected");
PackageDisabler.java 41 logInfo("Package %s installed, disabling ...", mPackageName);
MediaPreparer.java 278 logInfo("Media file copying complete");
285 logInfo("Copying files of resolution %s to device", resolution.toString());
305 logInfo("Copying images files to device");
323 logInfo("Skipping media preparation");
333 logInfo("Media files found on the device");
344 logInfo("Media files located on host at: %s", mLocalMediaPath);
371 logInfo("Instrumenting package %s:", APP_PKG_NAME);
LocationCheck.java 53 logInfo("Verifying location setting");
ApkInstrumentationPreparer.java 120 logInfo("Package %s already present on the device, uninstalling ...", mPackageName);
124 logInfo("Instrumenting package: %s", mPackageName);
  /external/nist-sip/java/gov/nist/core/
StackLogger.java 96 public void logInfo(String string);
  /tools/tradefederation/core/src/com/android/tradefed/util/
SubprocessTestResultsParser.java 441 TestLogEventInfo logInfo = new TestLogEventInfo(new JSONObject(eventJson));
442 String name = String.format("subprocess-%s", logInfo.mDataName);
444 InputStreamSource data = new FileInputStreamSource(logInfo.mDataFile);
445 mListener.testLog(name, logInfo.mLogType, data);
447 FileUtil.deleteFile(logInfo.mDataFile);
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketRTCClient.java 350 String logInfo = url;
352 logInfo += ". Message: " + message;
354 Log.d(TAG, "C->GAE: " + logInfo);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BusinessLogicDeviceExecutor.java 51 public void logInfo(String format, Object... args) {
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 312 String logInfo = message;
314 printWriter.println(logInfo);
317 stackLogger.logInfo(logInfo);
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
BusinessLogicHostExecutor.java 55 public void logInfo(String format, Object... args) {
  /external/google-breakpad/src/common/mac/
GTMLogger.h 114 // In addition to the -logDebug:, -logInfo:, and -logError: methods defined on
177 // [logger logInfo:@"hi temp log file"];
184 // [logger logInfo:@"%@ version 0.1 usage", progName];
198 // [logger logInfo:@"hi"]; // Output goes to stdout and /tmp/f.log
277 - (void)logInfo:(NSString *)fmt, ... NS_FORMAT_FUNCTION(1, 2);
  /system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
TzLookupGenerator.java 158 logInfo("Writing " + outputFile);
169 logInfo("Issues:\n" + processingErrors.asString());
499 private static void logInfo(String msg) {

Completed in 613 milliseconds

1 2 3 4 5 6 7 8