/external/e2fsprogs/tests/scripts/ |
D | resize_test | 22 echo $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 > $LOG 23 $MKE2FS $FEATURES -qF $TMPFILE $SIZE_1 >> $LOG 29 echo $CRCSUM $OUT_TMP >> $LOG 2>&1 31 echo Checksum is $CSUM_1 >> $LOG 33 echo Setting up file system >> $LOG 34 $DEBUGFS -w $TMPFILE >> $LOG 2>&1 << EOF 42 echo " " >> $LOG 46 echo $FSCK -fy $TMPFILE >> $LOG 2>&1 47 $FSCK -fy $TMPFILE >> $LOG 2>&1 49 echo $RESIZE2FS $RESIZE2FS_OPTS -d 31 $TMPFILE $SIZE_2 >> $LOG 2>&1 [all …]
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
D | Log.java | 137 private static Logger LOG; field in Log 142 if (LOG != null) in initialized() 151 return LOG != null; in initialized() 159 if (LOG == null || !LOG.getClass().equals(log_class)) in initialized() 161 LOG = (Logger)log_class.newInstance(); in initialized() 162 LOG.debug("Logging to {} via {}", LOG, log_class.getName()); in initialized() 171 return LOG != null; in initialized() 182 if (LOG == null) in initStandardLogging() 185 LOG = new StdErrLog(); in initStandardLogging() 186 LOG.debug("Logging to {} via {}", LOG, log_class.getName()); in initStandardLogging() [all …]
|
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/ |
D | pairingsession.cc | 63 LOG(ERROR) << "Attempt to add input encoding to active session"; in AddInputEncoding() 68 LOG(ERROR) << "Invalid input encoding: " << encoding.ToString(); in AddInputEncoding() 78 LOG(ERROR) << "Attempt to add output encoding to active session"; in AddOutputEncoding() 83 LOG(ERROR) << "Invalid output encoding: " << encoding.ToString(); in AddOutputEncoding() 94 LOG(ERROR) << "Invalid state: unexpected secret"; in SetSecret() 99 LOG(ERROR) << "Secret failed local check"; in SetSecret() 105 LOG(ERROR) << "Failed to extract nonce"; in SetSecret() 111 LOG(ERROR) << "Failed to get alpha"; in SetSecret() 120 LOG(INFO) << "Waiting for SecretAck..."; in SetSecret() 131 LOG(INFO) << "Pairing started (SERVER mode)"; in DoPair() [all …]
|
D | clientpairingsession.cc | 48 LOG(INFO) << "Waiting for PairingRequestAck..."; in DoInitializationPhase() 55 LOG(ERROR) << "No configuration"; in DoConfigurationPhase() 63 LOG(INFO) << "Waiting for ConfigurationAck..."; in DoConfigurationPhase() 68 LOG(INFO) << "Handle PairingRequestAckMessage " << message.ToString(); in OnPairingRequestAckMessage() 80 LOG(INFO) << "HandleOptionsMessage " << message.ToString(); in OnOptionsMessage() 87 LOG(ERROR) << "No compatible configuration: " in OnOptionsMessage() 107 LOG(INFO) << "HandleConfigurationAckMessage " << message.ToString(); in OnConfigurationAckMessage() 114 LOG(ERROR) << "Received unexpected ConfigurationMessage"; in OnConfigurationMessage() 121 LOG(ERROR) << "Received unexpected PairingRequestMessage"; in OnPairingRequestMessage()
|
/external/strace/tests/ |
D | init.sh | 19 cat < "$LOG" 47 > "$LOG" || fail_ "failed to write $LOG" 49 $STRACE -o "$LOG" "$@" || 55 rm -f -- "$LOG".[0-9]* 57 "$srcdir"/../strace-log-merge "$LOG" > "$LOG" || 59 rm -f -- "$LOG".[0-9]* 83 output="$LOG" 113 output="$LOG" 143 output="$LOG" 175 LOG="$ME_.tmp" [all …]
|
D | detach-stopped.test | 12 $STRACE -d -enone / > /dev/null 2> "$LOG" 13 if grep -F -x "PTRACE_SEIZE doesn't work" "$LOG" > /dev/null; then 19 rm -f "$LOG" 20 ./set_ptracer_any sleep $((2*$TIMEOUT_DURATION)) > "$LOG" & 22 while ! [ -s "$LOG" ]; do 40 rm -f "$LOG" 41 $STRACE -p $tracee_pid 2> "$LOG" & 43 while ! grep -F "Process $tracee_pid attached" "$LOG" > /dev/null; do 51 while ! grep -F -e '--- stopped by ' "$LOG" > /dev/null; do 62 grep -F "Process $tracee_pid detached" "$LOG" > /dev/null || {
|
D | net-yy.test | 17 child="$(sed -rn '/SIGCHLD/ s/^.*, si_pid=([1-9][0-9]*), .*/\1/p' "$LOG")" 21 rm -f "$LOG"-* 22 sed -rn "/^$child"' /!d; / socket\(/,$ s/^[0-9]+ +[^ ]+ (.+)/\1/p' "$LOG" > "$LOG"-connect && 23 sed -rn "/^$child"' /d; /SIGCHLD/d; / socket\(/,$ s/^[0-9]+ +[^ ]+ (.+)/\1/p' "$LOG" > "$LOG"-accep… 26 match_awk "$LOG-connect" "$srcdir"/net-yy-connect.awk "$STRACE $args connect output mismatch" 27 match_awk "$LOG-accept" "$srcdir"/net-yy-accept.awk "$STRACE $args accept output mismatch"
|
D | unix-yy.test | 19 child="$(sed -rn '/SIGCHLD/ s/^.*, si_pid=([1-9][0-9]*), .*/\1/p' "$LOG")" 23 rm -f "$LOG"-* 24 sed -rn "/^$child"' /!d; / socket\(/,$ s/^[0-9]+ +[^ ]+ (.+)/\1/p' "$LOG" > "$LOG"-connect && 25 sed -rn "/^$child"' /d; /SIGCHLD/d; / socket\(/,$ s/^[0-9]+ +[^ ]+ (.+)/\1/p' "$LOG" > "$LOG"-accep… 28 match_awk "$LOG-connect" "$srcdir"/unix-yy-connect.awk "$STRACE $args connect output mismatch" -v a… 29 match_awk "$LOG-accept" "$srcdir"/unix-yy-accept.awk "$STRACE $args accept output mismatch" -v addr…
|
D | detach-sleeping.test | 14 rm -f "$LOG" 15 ./set_ptracer_any sleep $((2*$TIMEOUT_DURATION)) > "$LOG" & 17 while ! [ -s "$LOG" ]; do 33 rm -f "$LOG" 34 $STRACE -p $tracee_pid 2> "$LOG" & 36 while ! grep -F "Process $tracee_pid attached" "$LOG" > /dev/null; do 47 grep -F "Process $tracee_pid detached" "$LOG" > /dev/null || {
|
/external/jetty/src/java/org/eclipse/jetty/client/security/ |
D | SecurityListener.java | 45 private static final Logger LOG = Log.getLogger(SecurityListener.class); field in SecurityListener 116 LOG.debug("SecurityListener: missed scraping authentication details - " + token ); in scrapeAuthenticationDetails() 127 if (LOG.isDebugEnabled()) in onResponseStatus() 128 LOG.debug("SecurityListener:Response Status: " + status ); in onResponseStatus() 150 if (LOG.isDebugEnabled()) in onResponseHeader() 151 LOG.debug( "SecurityListener:Header: " + name.toString() + " / " + value.toString() ); in onResponseHeader() 179 LOG.warn( "Unknown Security Realm: " + details.get("realm") ); in onResponseHeader() 207 if (LOG.isDebugEnabled()) in onRequestComplete() 208 … LOG.debug("onRequestComplete, Both complete: Resending from onResponseComplete "+_exchange); in onRequestComplete() 217 if (LOG.isDebugEnabled()) in onRequestComplete() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
D | JDBCSessionIdManager.java | 64 final static Logger LOG = SessionHandler.LOG; field in JDBCSessionIdManager 129 LOG.debug ("Using database {}",_dbName); in DatabaseAdaptor() 344 if (LOG.isDebugEnabled()) in setScavengeInterval() 345 LOG.debug("Scavenging every "+_scavengeIntervalMs+" ms"); in setScavengeInterval() 386 LOG.warn("Problem storing session id="+id, e); in addSession() 409 if (LOG.isDebugEnabled()) in removeSession() 410 LOG.debug("Removing session id="+id); in removeSession() 418 LOG.warn("Problem removing session id="+id, e); in removeSession() 474 LOG.warn("Problem checking inUse for id="+clusterId, e); in idInUse() 525 if (LOG.isDebugEnabled()) in doStart() [all …]
|
D | JDBCSessionManager.java | 77 private static final Logger LOG = Log.getLogger(JDBCSessionManager.class); field in JDBCSessionManager 317 LOG.warn("Problem persisting changed session data id="+getId(), e); in complete() 329 if (LOG.isDebugEnabled()) in timeout() 330 LOG.debug("Timing out session id="+getClusterId()); in timeout() 460 if (LOG.isDebugEnabled()) in getSession() 463 LOG.debug("getSession("+idInCluster+"): not in session map,"+ in getSession() 468 LOG.debug("getSession("+idInCluster+"): in session map, "+ in getSession() 481 …LOG.debug("getSession("+idInCluster+"): no session in session map. Reloading session data from db.… in getSession() 486 … LOG.debug("getSession("+idInCluster+"): stale session. Reloading session data from db."); in getSession() 491 LOG.debug("getSession("+idInCluster+"): session in session map"); in getSession() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/jmx/ |
D | ObjectMBean.java | 74 private static final Logger LOG = Log.getLogger(ObjectMBean.class); field in ObjectMBean 126 if (LOG.isDebugEnabled()) in mbeanFor() 127 LOG.debug("mbeanFor " + o + " mClass=" + mClass); in mbeanFor() 136 LOG.ignore(e); in mbeanFor() 144 if (LOG.isDebugEnabled()) in mbeanFor() 145 LOG.debug("mbeanFor " + o + " is " + mbean); in mbeanFor() 155 LOG.ignore(e); in mbeanFor() 157 LOG.warn(e); in mbeanFor() 161 LOG.warn(e); in mbeanFor() 166 LOG.warn(e); in mbeanFor() [all …]
|
/external/openfst/src/include/fst/ |
D | verify.h | 49 LOG(ERROR) << "Verify: Fst start state ID unset"; 52 LOG(ERROR) << "Verify: Fst start state ID exceeds number of states"; 66 LOG(ERROR) << "Verify: Fst input label ID of arc at position " 70 LOG(ERROR) << "Verify: Fst input label ID " << arc.ilabel 76 LOG(ERROR) << "Verify: Fst output label ID of arc at position " 80 LOG(ERROR) << "Verify: Fst output label ID " << arc.olabel 86 LOG(ERROR) << "Verify: Fst weight of arc at position " 90 LOG(ERROR) << "Verify: Fst destination state ID of arc at position " 94 LOG(ERROR) << "Verify: Fst destination state ID of arc at position " 102 LOG(ERROR) << "Verify: Fst final weight of state " << s << " is invalid"; [all …]
|
/external/jetty/src/java/org/eclipse/jetty/client/webdav/ |
D | WebdavListener.java | 44 private static final Logger LOG = Log.getLogger(WebdavListener.class); field in WebdavListener 78 if (LOG.isDebugEnabled()) in onResponseStatus() 79 LOG.debug("WebdavListener:Response Status: " + status ); in onResponseStatus() 87 if (LOG.isDebugEnabled()) in onResponseStatus() 88 … LOG.debug("WebdavListener:Response Status: dav enabled, taking a stab at resolving put issue" ); in onResponseStatus() 94 if (LOG.isDebugEnabled()) in onResponseStatus() 95 LOG.debug("WebdavListener:Response Status: Webdav Disabled" ); in onResponseStatus() 141 … LOG.debug("WebdavListener:Complete:IOException: might not be dealing with dav server, delegate"); in onResponseComplete() 147 if (LOG.isDebugEnabled()) in onResponseComplete() 148 LOG.debug("WebdavListener:Not ready, calling super"); in onResponseComplete() [all …]
|
/external/vboot_reference/tests/futility/ |
D | test_main.sh | 20 LOG="/tmp/futility.log" 21 [ -f ${LOG} ] && mv ${LOG} ${LOG}.backup 22 touch ${LOG} 24 grep ${FUTILITY} ${LOG} 25 rm -f ${LOG} 26 [ -f ${LOG}.backup ] && mv ${LOG}.backup ${LOG}
|
/external/webrtc/src/system_wrappers/source/ |
D | condition_variable_unittest.cc | 27 #define LOG(...) WEBRTC_TRACE(kTraceStateInfo, kTraceUtility, -1, __VA_ARGS__); macro 56 LOG("Locking giver_sect"); in Pass() 58 LOG("Locked giver_sect, locking crit_sect"); in Pass() 64 LOG("Pass count is %d", pass_count_); in Pass() 90 LOG("Wait waiting"); in WaitUntilBatonOffered() 92 LOG("Wait timeout"); in WaitUntilBatonOffered() 104 LOG("Signal waking"); in SignalBatonAvailable() 117 LOG("Takeback waiting"); in TakeBatonIfStillFree() 126 LOG("Takeback grab"); in TakeBatonIfStillFree() 149 LOG("Thread waiting"); in WaitingRunFunction() [all …]
|
D | critical_section_unittest.cc | 33 #define LOG(...) WEBRTC_TRACE(kTraceStateInfo, kTraceUtility, -1, __VA_ARGS__); macro 53 LOG("Inc to %d", count_); in Increment() 82 LOG("Test looped %d times\n", loop_counter); in WaitForCount() 91 LOG("Wait starting"); in LockUnlockThenStopRunFunction() 93 LOG("Wait incrementing"); in LockUnlockThenStopRunFunction() 95 LOG("Wait returning"); in LockUnlockThenStopRunFunction() 122 LOG("Wait starting"); in LockUnlockRunFunction() 124 LOG("Wait incrementing"); in LockUnlockRunFunction() 127 LOG("Wait returning"); in LockUnlockRunFunction()
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
D | ConnectHandler.java | 66 private static final Logger LOG = Log.getLogger(ConnectHandler.class); field in ConnectHandler 194 LOG.debug("CONNECT request for {}", request.getRequestURI()); in handle() 201 LOG.warn("ConnectHandler "+baseRequest.getUri()+" "+ e); in handle() 202 LOG.debug(e); in handle() 240 LOG.info("ProxyHandler: Forbidden destination " + host); in handleConnect() 254 LOG.info("ConnectHandler: SocketException " + se.getMessage()); in handleConnect() 261 LOG.info("ConnectHandler: SocketTimeoutException" + ste.getMessage()); in handleConnect() 268 LOG.info("ConnectHandler: IOException" + ioe.getMessage()); in handleConnect() 382 LOG.debug("Establishing connection to {}:{}", host, port); in connect() 385 LOG.debug("Established connection to {}:{}", host, port); in connect() [all …]
|
/external/iproute2/examples/ |
D | dhcp-client-script | 22 LOG () { 23 echo LOG $* ; 131 LOG DelINETAddr $* 136 LOG ifconfig $addrid down 152 LOG AddINETAddr $* 164 LOG ifconfig $addrid $2 $mask_arg $brd_arg up 175 LOG AddDefaultRoutes $* 177 LOG route add default gw $router 190 LOG DelDefaultRoutes $* 193 LOG route del default gw $router [all …]
|
/external/jetty/src/java/org/eclipse/jetty/client/ |
D | BlockingHttpConnection.java | 39 private static final Logger LOG = Log.getLogger(BlockingHttpConnection.class); field in BlockingHttpConnection 76 LOG.debug("onIdleExpired {}ms {} {}",idleForMs,this,_endp); in onIdleExpired() 82 LOG.ignore(e); in onIdleExpired() 90 LOG.ignore(e2); in onIdleExpired() 113 LOG.debug("open={} more={}",_endp.isOpen(),_parser.isMoreInBuffer()); in handle() 138 LOG.debug("exchange {}",exchange); in handle() 145 LOG.debug("commit"); in handle() 154 LOG.debug("flushed"); in handle() 166 LOG.debug("complete"); in handle() 171 LOG.debug("addChunk"); in handle() [all …]
|
D | AsyncHttpConnection.java | 41 private static final Logger LOG = Log.getLogger(AsyncHttpConnection.class); field in AsyncHttpConnection 71 … LOG.debug("while open={} more={} progress={}",_endp.isOpen(),_parser.isMoreInBuffer(),progress); in handle() 76 LOG.debug("exchange {} on {}",exchange,this); in handle() 83 LOG.debug("commit {}",exchange); in handle() 93 LOG.debug("flushed"); in handle() 106 LOG.debug("complete {}",exchange); in handle() 114 LOG.debug("addChunk"); in handle() 128 LOG.debug("requestComplete {}",exchange); in handle() 137 LOG.debug("parsed {}",exchange); in handle() 147 LOG.debug("hasProgressed {}",exchange); in handle() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/servlet/listener/ |
D | ELContextCleaner.java | 43 private static final Logger LOG = Log.getLogger(ELContextCleaner.class); field in ELContextCleaner 63 LOG.info("javax.el.BeanELResolver purged"); in contextDestroyed() 72 LOG.warn("Cannot purge classes from javax.el.BeanELResolver", e); in contextDestroyed() 76 LOG.warn("Cannot purge classes from javax.el.BeanELResolver", e); in contextDestroyed() 80 LOG.warn("Cannot purge classes from javax.el.BeanELResolver", e); in contextDestroyed() 84 LOG.info("Not cleaning cached beans: no such field javax.el.BeanELResolver.properties"); in contextDestroyed() 116 LOG.info("Clazz: "+clazz+" loaded by "+clazz.getClassLoader()); in purgeEntries() 120 LOG.info("removed"); in purgeEntries() 123 …LOG.info("not removed: "+"contextclassloader="+Thread.currentThread().getContextClassLoader()+"cla… in purgeEntries()
|
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
D | CGI.java | 68 private static final Logger LOG = Log.getLogger(CGI.class); field in CGI 100 LOG.warn("CGI: no CGI bin !"); in init() 107 LOG.warn("CGI: CGI bin does not exist - " + dir); in init() 113 LOG.warn("CGI: CGI bin is not readable - " + dir); in init() 119 LOG.warn("CGI: CGI bin is not a directory - " + dir); in init() 129 LOG.warn("CGI: CGI bin failed - " + dir,e); in init() 168 if (LOG.isDebugEnabled()) in service() 170 LOG.debug("CGI: ContextPath : " + req.getContextPath()); in service() 171 LOG.debug("CGI: ServletPath : " + req.getServletPath()); in service() 172 LOG.debug("CGI: PathInfo : " + req.getPathInfo()); in service() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
D | AsyncHttpConnection.java | 43 private static final Logger LOG = Log.getLogger(AsyncHttpConnection.class); field in AsyncHttpConnection 99 if (LOG.isDebugEnabled()) in handle() 101 LOG.debug("uri="+_uri); in handle() 102 LOG.debug("fields="+_requestFields); in handle() 103 LOG.debug(e); in handle() 135 … LOG.warn("Safety net oshut!!! IF YOU SEE THIS, PLEASE RAISE BUGZILLA"); in handle() 145 LOG.debug("Disabled read interest while writing response {}", _endp); in handle() 153 LOG.debug("suspended {}",this); in handle() 181 LOG.info("EndPoint making no progress: "+_total_no_progress+" "+_endp+" "+this); in handle() 184 … LOG.warn("Closing EndPoint making no progress: "+_total_no_progress+" "+_endp+" "+this); in handle() [all …]
|