HomeSort by relevance Sort by last modified time
    Searched refs:urgent (Results 1 - 10 of 10) sorted by null

  /external/chromium/chrome/browser/chromeos/
low_battery_observer.cc 42 // The urgent flag is used to re-notify the user if the power level
45 bool urgent = !line_power && local
46 (notification_.urgent() || remaining_minutes <= critical);
64 Show(remaining, urgent);
68 Show(remaining, urgent);
73 void LowBatteryObserver::Show(base::TimeDelta remaining, bool urgent) {
75 TimeFormat::TimeRemaining(remaining)), urgent, true); local
low_battery_observer.h 30 void Show(base::TimeDelta remaining, bool urgent);
  /external/libppp/src/
ncp.h 41 struct port_range tcp, udp; /* The range of urgent ports */
42 unsigned tos : 1; /* Urgent IPTOS_LOWDELAY packets ? */
43 } urgent; member in struct:ncp::__anon9615
79 ncp_IsUrgentPort(&(ncp)->cfg.urgent.tcp, p1, p2)
81 ncp_IsUrgentPort(&(ncp)->cfg.urgent.udp, p1, p2)
83 ncp_AddUrgentPort(&(ncp)->cfg.urgent.tcp, p)
85 ncp_AddUrgentPort(&(ncp)->cfg.urgent.udp, p)
87 ncp_RemoveUrgentPort(&(ncp)->cfg.urgent.tcp, p)
89 ncp_RemoveUrgentPort(&(ncp)->cfg.urgent.udp, p)
91 ncp_ClearUrgentPorts(&(ncp)->cfg.urgent.tcp
    [all...]
ncp.c 101 ncp->cfg.urgent.tcp.port = (u_short *)malloc(NDEFTCPPORTS * sizeof(u_short));
102 if (ncp->cfg.urgent.tcp.port == NULL) {
103 log_Printf(LogERROR, "ncp_Init: Out of memory allocating urgent ports\n");
104 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = 0;
106 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = NDEFTCPPORTS;
107 memcpy(ncp->cfg.urgent.tcp.port, default_urgent_tcp_ports,
110 ncp->cfg.urgent.tos = 1;
112 ncp->cfg.urgent.udp.nports = ncp->cfg.urgent.udp.maxports = 0
    [all...]
ip.c 651 if (tos == IPTOS_LOWDELAY && bundle->ncp.cfg.urgent.tos)
815 if (tos == IPTOS_LOWDELAY && bundle->ncp.cfg.urgent.tos)
  /external/chromium/chrome/browser/chromeos/notifications/
system_notification.cc 55 bool urgent,
57 Show(message, string16(), NULL, urgent, sticky);
63 bool urgent,
68 // Force showing a user hidden notification on an urgent transition.
69 if (urgent && !urgent_) {
81 urgent_ = urgent;
system_notification.h 45 // on a transition to urgent, the notification will be shown if it was
47 void Show(const string16& message, bool urgent, bool sticky);
52 MessageCallback* callback, bool urgent, bool sticky);
61 // Current urgent state for this notification.
62 bool urgent() const { return urgent_; } function in class:chromeos::SystemNotification
  /external/chromium/chrome/browser/chromeos/frame/
panel_controller.cc 85 if (panel_controller_->urgent()) {
185 void PanelController::SetUrgent(bool urgent) {
186 if (!urgent)
188 if (urgent == urgent_)
190 if (urgent && focused_)
192 if (urgent && base::TimeTicks::Now() < urgent_cleared_time_ + kSetUrgentDelay)
194 urgent_ = urgent;
196 gtk_window_set_urgency_hint(panel_, urgent ? TRUE : FALSE);
245 // Activating the panel also clears the urgent state.
310 // Clear urgent when focused
    [all...]
panel_controller.h 80 void SetUrgent(bool urgent);
85 bool urgent() { return urgent_; } function in class:chromeos::PanelController
172 // Urgent (highlight) state.
175 // Timestamp to prevent setting urgent immediately after clearing it.
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h 571 mDNSu16 urgent; variable
    [all...]

Completed in 326 milliseconds