HomeSort by relevance Sort by last modified time
    Searched refs:LOG (Results 251 - 275 of 1871) sorted by null

<<11121314151617181920>>

  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java 36 private static final Logger LOG = LoggerFactory.getLogger(InvocationRecordTest.class);
53 LOG.info(commandInvocation.toString());
69 LOG.info("Expected: " + expected);
99 LOG.info("Expected: " + expected);
121 LOG.info("Expected: " + expected);
136 LOG.info("Expected: " + expected);
172 LOG.info("Expected: " + expected);
185 LOG.info("Expected: " + expected);
202 LOG.info("Expected: " + expected);
SimpleCompositeCommandHandlerTest.java 38 private static final Logger LOG = LoggerFactory.getLogger(SimpleCompositeCommandHandlerTest.class);
115 LOG.info("Expected: " + expected);
128 LOG.info("Expected: " + expected);
141 LOG.info("Expected: " + expected);
154 LOG.info("Expected: " + expected);
167 LOG.info("Expected: " + expected);
180 LOG.info("Expected: " + expected);
194 LOG.info("Expected: " + expected);
218 LOG.info("Expected: " + expected);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java 38 private static final Logger LOG = Logger.getLogger(InvocationRecordTest.class);
55 LOG.info(commandInvocation);
71 LOG.info("Expected: " + expected);
101 LOG.info("Expected: " + expected);
123 LOG.info("Expected: " + expected);
138 LOG.info("Expected: " + expected);
174 LOG.info("Expected: " + expected);
187 LOG.info("Expected: " + expected);
204 LOG.info("Expected: " + expected);
  /system/connectivity/apmanager/
hostapd_monitor.cc 81 LOG(ERROR) << "HostapdMonitor already started";
99 LOG(ERROR) << "Timeout waiting for hostapd control interface";
120 LOG(ERROR) << "Socket already initialized";
135 LOG(ERROR) << "Failed to open hostapd socket";
158 LOG(ERROR) << "Failed to attach to hostapd";
172 LOG(ERROR) << "Timeout waiting for attach response";
197 // Remove the log level.
215 LOG(INFO) << "Received unknown event: " << event;
222 LOG(INFO) << "Received unknown message: " << str;
226 LOG(FATAL) << "Hostapd Socket read returns error:
    [all...]
device_info.cc 72 LOG(FATAL) << "Didn't get a legal message type for 'nl80211' messages.";
109 LOG(ERROR) << "Received unexpected command:"
117 LOG(ERROR) << "NL80211_CMD_NEW_WIPHY had no NL80211_ATTR_WIPHY_NAME";
122 LOG(INFO) << "Device " << device_name << " already enumerated.";
139 LOG(ERROR) << "Link event message does not have IFLA_IFNAME!";
158 LOG(INFO) << "Ignore link event for non-wifi interface: " << iface_name;
165 LOG(INFO) << "AddLinkMsgHandler: interface " << iface_name
181 LOG(INFO) << "DelLinkMsgHandler iface_name: " << iface_name
198 LOG(INFO) << "Interface " << iface_name << " has no uevent file";
203 LOG(INFO) << "Interface " << iface_name << " is not a WiFi interface"
    [all...]
  /system/update_engine/
boot_control_android.cc 71 LOG(ERROR) << "Error loading boot_control HAL implementation.";
78 LOG(INFO) << "Loaded boot_control HAL "
121 LOG(ERROR) << "Device file " << misc_device.value() << " for /misc "
128 LOG(ERROR) << "boot_control impl returned no suffix for slot "
135 LOG(ERROR) << "Device file " << path.value() << " does not exist.";
146 LOG(ERROR) << "Unable to determine if slot " << SlotName(slot)
156 LOG(ERROR) << "Unable to mark slot " << SlotName(slot)
166 LOG(ERROR) << "Unable to set the active slot to slot " << SlotName(slot)
176 LOG(ERROR) << "Unable to mark boot successful: " << strerror(-ret);
omaha_response_handler_action.cc 56 LOG(INFO) << "There are no updates. Aborting.";
66 LOG(ERROR) << "There are no suitable URLs in the response to use.";
80 LOG(INFO) << "Replacing URL " << install_plan_.download_url
129 LOG(INFO) << "Using this install plan:";
169 // in log-files. Keep in sync.
170 LOG(INFO) << "Mandating payload hash checks since Omaha Response "
174 LOG(INFO) << "Waiving payload hash checks for unofficial update URL.";
183 LOG(INFO) << "Mandating hash checks since download_url is not HTTPS.";
199 LOG(INFO) << "Mandating payload hash checks since Omaha response "
205 LOG(INFO) << "Waiving payload hash checks since Omaha response
    [all...]
  /system/connectivity/shill/
json_store.cc 99 LOG(ERROR) << "Property |" << kCoercedValuePropertyNativeType
107 LOG(ERROR) << "Property |" << kCoercedValuePropertyEncodedValue
118 LOG(ERROR) << "Failed to decode hex data from |" << encoded_value << "|.";
126 LOG(ERROR) << "Failed to parse uint64 from |" << encoded_value << "|.";
130 LOG(ERROR) << "Unsupported native type |" << native_type << "|.";
148 LOG(ERROR) << "Failed to decode coerced value.";
153 LOG(ERROR) << "Can not read |" << brillo::GetUndecoratedTypeName<string>()
160 LOG(ERROR) << "Got unexpected type |" << value_type << "|.";
174 LOG(ERROR) << "Element " << i << " has type " << item_type << ", "
189 LOG(ERROR) << "Failed to parse string from element " << i << "."
    [all...]
  /external/apache-http/android/src/com/android/internal/http/multipart/
FilePart.java 39 import org.apache.commons.logging.Log;
68 /** Log object for this class. */
69 private static final Log LOG = LogFactory.getLog(FilePart.class);
191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
210 LOG.trace("enter sendData(OutputStream out)");
216 LOG.debug("No data to send.");
239 LOG.trace("enter getSource()");
250 LOG.trace("enter lengthOfData()");
  /external/jetty/src/java/org/eclipse/jetty/server/
BlockingHttpConnection.java 29 import org.eclipse.jetty.util.log.Log;
30 import org.eclipse.jetty.util.log.Logger;
38 private static final Logger LOG = Log.getLogger(BlockingHttpConnection.class);
86 if (LOG.isDebugEnabled())
88 LOG.debug("uri="+_uri);
89 LOG.debug("fields="+_requestFields);
90 LOG.debug(e);
115 LOG.warn("Safety net oshut!!! Please open a bugzilla")
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
CGI.java 42 import org.eclipse.jetty.util.log.Log;
43 import org.eclipse.jetty.util.log.Logger;
68 private static final Logger LOG = Log.getLogger(CGI.class);
100 LOG.warn("CGI: no CGI bin !");
107 LOG.warn("CGI: CGI bin does not exist - " + dir);
113 LOG.warn("CGI: CGI bin is not readable - " + dir);
119 LOG.warn("CGI: CGI bin is not a directory - " + dir);
129 LOG.warn("CGI: CGI bin failed - " + dir,e)
    [all...]
  /packages/apps/Test/connectivity/sl4n/
main.cpp 60 LOG(ERROR) << sl4n::kTagStr <<
68 LOG(ERROR) << sl4n::kTagStr << ": Failed to setup the passive socket."
75 LOG(ERROR) << sl4n::kTagStr << ": Failed to accept the socket."
84 LOG(FATAL) << sl4n::kTagStr << ": Failed to write to the socket."
97 LOG(FATAL) << sl4n::kTagStr << ": Failed to write to the socket."
109 LOG(ERROR) << "Failed to set up logging";
  /system/bt/service/
daemon.cpp 94 LOG(ERROR) << "Failed to set up UNIX domain-socket IPCManager";
98 LOG(ERROR) << "Failed to set up Binder IPCManager";
111 LOG(ERROR) << "Failed to set up Settings";
116 LOG(ERROR) << "Failed to set up HAL Bluetooth interfaces";
129 LOG(INFO) << "Daemon initialized";
153 LOG(ERROR) << "Failed to initialize the Daemon object";
  /system/tools/aidl/
type_namespace.cpp 105 LOG(ERROR) << StringPrintf("In file %s line %d return type %s:\n ",
125 LOG(ERROR) << error_prefix << error_msg;
130 LOG(ERROR) << error_prefix << StringPrintf(
139 LOG(ERROR) << error_prefix << StringPrintf(
147 LOG(ERROR) << error_prefix << "Argument name is a Java or aidl keyword";
153 LOG(ERROR) << error_prefix << "Argument name cannot begin with '_aidl'";
  /system/tpm/tpm_manager/server/
tpm2_initializer_impl.cc 65 LOG(ERROR) << "Error reading local data.";
78 LOG(ERROR) << "Error generating a random owner password.";
82 LOG(ERROR) << "Error generating a random endorsement password.";
86 LOG(ERROR) << "Error generating a random lockout password.";
100 LOG(ERROR) << "Error saving local data.";
106 LOG(ERROR) << "Error taking ownership of TPM2.0";
  /system/tpm/trunks/
trunks_binder_service.cc 60 LOG(ERROR) << "TrunksBinderService: BinderWatcher::Init failed.";
66 LOG(ERROR) << "TrunksBinderService: RegisterService failed.";
69 LOG(INFO) << "Trunks: Binder service registered.";
85 LOG(ERROR) << "TrunksBinderService: Bad command data.";
100 LOG(ERROR) << "TrunksBinderService: Failed to send response to client: "
111 LOG(ERROR) << "TrunksBinderService: Bad command data.";
  /system/update_engine/common/
file_fetcher.cc 61 LOG(ERROR) << "Unsupported file URL: " << url;
78 LOG(ERROR) << "Couldn't open " << file_path;
126 LOG(ERROR) << "Unable to schedule an asynchronous read from the stream.";
148 LOG(ERROR) << "Asynchronous read failed: " << error->GetMessage();
156 LOG(ERROR) << "Fetcher already paused.";
164 LOG(ERROR) << "Resume attempted when fetcher not paused.";
  /external/iproute2/examples/
dhcp-client-script 17 exec >> /var/log/DHS.log 2>&1
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 $route
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturer.cc 158 LOG(LS_ERROR) << "The capturer is already initialized";
184 LOG(LS_WARNING) << "Failed to find capturer for id: " << device.id;
200 LOG(LS_WARNING) << "Ignoring unsupported WebRTC capture format "
208 LOG(LS_ERROR) << "Failed to find usable formats for id: " << device.id;
214 LOG(LS_ERROR) << "Failed to create capturer for id: " << device.id;
232 LOG(LS_ERROR) << "The capturer is already initialized";
236 LOG(LS_ERROR) << "Invalid VCM supplied";
257 LOG(LS_INFO) << "Failed to find best capture format,"
284 LOG(LS_ERROR) << "The capturer has not been initialized";
288 LOG(LS_ERROR) << "The capturer is already running"
    [all...]
  /external/dbus-binding-generator/chromeos-dbus-bindings/
generate_chromeos_dbus_bindings.cc 69 LOG(WARNING) << "Failed to canonicalize '" << path << "'";
102 LOG(ERROR) << "Object manager name is missing.";
113 LOG(ERROR) << "Invalid interface name in [ignore_interfaces] section";
134 LOG(INFO) << switches::kHelpMessage;
140 LOG(ERROR) << "At least one file must be specified.";
141 LOG(ERROR) << switches::kHelpMessage;
150 LOG(ERROR) << "Failed to load DBus service config file " << config_file;
159 LOG(ERROR) << "Failed to read file " << input;
163 LOG(ERROR) << "Failed to parse interface file " << input;
175 LOG(ERROR) << "Failed to output method names."
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/
AsyncHttpConnection.java 31 import org.eclipse.jetty.util.log.Log;
32 import org.eclipse.jetty.util.log.Logger;
41 private static final Logger LOG = Log.getLogger(AsyncHttpConnection.class);
71 LOG.debug("while open={} more={} progress={}",_endp.isOpen(),_parser.isMoreInBuffer(),progress);
76 LOG.debug("exchange {} on {}",exchange,this);
83 LOG.debug("commit {}",exchange);
93 LOG.debug("flushed");
106 LOG.debug("complete {}",exchange)
    [all...]
  /external/webrtc/webrtc/base/
autodetectproxy.cc 50 LOG(LS_INFO) << "GetProxySettingsForUrl(" << server_url_ << ") - start";
52 LOG(LS_INFO) << "GetProxySettingsForUrl - stop";
56 LOG(LS_WARNING) << "AutoDetectProxy removing http prefix on proxy host";
59 LOG(LS_INFO) << "AutoDetectProxy found proxy at " << proxy_.address;
61 LOG(LS_INFO) << "AutoDetectProxy initiating proxy classification";
122 // Log the gathered data at a log level that will never actually be enabled
124 LOG(LS_SENSITIVE) << agent << " " << next << " " << type << " "
137 LOG(LS_VERBOSE) << "Resolved " << proxy_.address << " to "
144 LOG(LS_INFO) << "Failed to resolve " << resolver_->address()
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
file_player_impl.cc 103 LOG(LS_WARNING) << "Get10msAudioFromFile() playing not started!"
162 LOG(LS_WARNING) << "Get10msAudioFromFile() unexpected codec.";
200 LOG(LS_WARNING) << "SetAudioScaling() non-allowed scale factor.";
240 LOG(LS_ERROR) << "StartPlayingFile() sample frequency not "
250 LOG(LS_WARNING) << "StartPlayingFile() failed to initialize "
260 LOG(LS_WARNING) << "StartPlayingFile() failed to initialize "
272 LOG(LS_WARNING) << "StartPlayingFile() failed to initialize file "
321 LOG(LS_ERROR) << "StartPlayingFile() sample frequency not "
330 LOG(LS_ERROR) << "StartPlayingFile() failed to initialize stream "
340 LOG(LS_ERROR) << "StartPlayingFile() failed to initialize stream
    [all...]
  /packages/apps/Test/connectivity/sl4n/facades/wifi/
wifi_facade.cpp 55 LOG(ERROR) << sl4n::kTagStr
62 LOG(ERROR) << sl4n::kTagStr
84 LOG(ERROR) << sl4n::kTagStr << ": Can not get Wi-Fi interfaces";
89 LOG(ERROR) << sl4n::kTagStr << ": Negative number of interfaces";
94 LOG(ERROR) << sl4n::kTagStr
100 LOG(ERROR) << sl4n::kTagStr
110 LOG(ERROR) << sl4n::kTagStr
126 LOG(ERROR) << sl4n::kTagStr << "HAL handle not initialized";
131 LOG(ERROR) << sl4n::kTagStr << "HAL interfaces not initialized";
136 LOG(ERROR) << sl4n::kTagStr << kWlanInterface << " interface not found"
    [all...]
  /system/core/crash_reporter/
udev_collector.cc 53 LOG(INFO) << "developer image - collect udev crash info.";
55 LOG(INFO) << "Consent given - collect udev crash info.";
57 LOG(INFO) << "Ignoring - Non-developer image and no consent given.";
76 LOG(ERROR) << "Could not get crash directory.";
83 LOG(ERROR) << "Invalid kernel number: "
113 FilePath crash_path = GetCrashPath(crash_directory, log_file_name, "log");
118 LOG(ERROR) << "Error reading udev log info " << udev_log_name;
130 LOG(ERROR) << "Could not create zip file " << crash_path_zipped.value();
148 LOG(ERROR) << "Device coredump file " << coredump_path.value(
    [all...]

Completed in 959 milliseconds

<<11121314151617181920>>