Searched refs:notify (Results 1 - 25 of 151) sorted by last modified time

1234567

/freebsd-10.1-release/crypto/openssl/crypto/x509/
H A Dx509_vfy.c738 * If error looking up CRL, nothing we can do except notify callback
792 static int check_crl_time(X509_STORE_CTX *ctx, X509_CRL *crl, int notify) argument
796 if (notify)
805 if (!notify)
813 if (!notify)
824 if (!notify)
832 if (!notify)
840 if (notify)
1477 * Locate certificates with bad extensions and notify callback.
/freebsd-10.1-release/contrib/ntp/sntp/libevent/
H A Devent.c908 /* We're going to call event_del() on our notify events (the
2505 int notify = 0; local
2559 /* evmap says we need to notify the main thread. */
2560 notify = 1;
2655 notify = 1;
2658 notify = 1;
2663 if (res != -1 && notify && EVBASE_NEED_NOTIFY(base))
2717 int res = 0, notify = 0; local
2762 /* NOTE: We never need to notify the main thread because of a
2784 /* evmap says we need to notify th
[all...]
/freebsd-10.1-release/sys/netinet/
H A Dtcp_subr.c1401 struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
1412 notify = tcp_mtudisc_notify;
1415 notify = tcp_drop_syn_sent;
1456 * value (if given) and then notify.
1486 inp = (*notify)(inp,
1502 in_pcbnotifyall(&V_tcbinfo, faddr, inetctlerrmap[cmd], notify);
1511 struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
1527 notify = tcp_mtudisc_notify;
1565 th.th_sport, cmd, NULL, notify);
1578 0, cmd, NULL, notify);
[all...]
/freebsd-10.1-release/contrib/sendmail/src/
H A Dsendmail.h277 #define QHASNOTIFY 0x00000200 /* propagate notify parameter */
284 #define QBYNDELAY 0x00010000 /* DeliverBy: notify, delay */
285 #define QBYNRELAY 0x00020000 /* DeliverBy: notify, relayed */
617 ERROR: change SASL_SEC_MASK_ notify sendmail.org!
/freebsd-10.1-release/usr.sbin/powerd/
H A Dpowerd.c312 int notify; local
325 (ptr = strstr(ptr, "notify=")) != NULL &&
326 sscanf(ptr, "notify=%x", &notify) == 1)
327 acline_status = (notify ? SRC_AC : SRC_BATTERY);
/freebsd-10.1-release/usr.sbin/ppp/
H A Dbundle.c176 if (bundle->notify.fd != -1) {
179 ret = write(bundle->notify.fd, &c, 1);
185 log_Printf(LogERROR, "Failed to notify parent of success\n");
186 close(bundle->notify.fd);
187 bundle->notify.fd = -1;
191 log_Printf(LogERROR, "Failed to notify parent of %s\n", ex_desc(c));
886 bundle.notify.fd = -1;
H A Dbundle.h145 } notify; member in struct:bundle
H A Dmain.c498 bundle->notify.fd = bgpipe[1];
/freebsd-10.1-release/usr.sbin/clear_locks/
H A Dclear_locks.c43 nlm4_notify notify; local
56 notify.name = hostname;
57 notify.state = 0;
59 (xdrproc_t) xdr_nlm4_notify, (void *) &notify,
/freebsd-10.1-release/usr.sbin/rpc.lockd/
H A Dlock_proc.c1413 notify(arg->mon_name, arg->state);
H A Dlockd_lock.c2159 * notify: Clear all locks from a host if statd complains
2175 notify(const char *hostname, const int state) function
2177 debuglog("notify from %s, new state %d", hostname, state);
2183 debuglog("Leaving notify\n");
2206 * We fail to notify remote that the lock has been granted.
H A Dlockd_lock.h14 void notify(const char *hostname, const int state);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointList.cpp35 BreakpointList::Add (BreakpointSP &bp_sp, bool notify) argument
42 if (notify)
52 BreakpointList::Remove (break_id_t break_id, bool notify) argument
60 if (notify)
90 BreakpointList::RemoveAll (bool notify) argument
95 if (notify)
H A DWatchpoint.cpp303 Watchpoint::SetEnabled(bool enabled, bool notify) argument
317 if (notify && !m_is_ephemeral && changed)
322 Watchpoint::SetWatchpointType (uint32_t type, bool notify) argument
328 if (notify && (old_watch_read != m_watch_read || old_watch_write != m_watch_write))
H A DWatchpointList.cpp34 WatchpointList::Add (const WatchpointSP &wp_sp, bool notify) argument
39 if (notify)
209 WatchpointList::Remove (lldb::watch_id_t watch_id, bool notify) argument
216 if (notify)
280 WatchpointList::RemoveAll (bool notify) argument
283 if (notify)
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectProcess.cpp1563 notify = option_arg;
1579 notify.clear();
1596 std::string notify; member in class:CommandObjectProcessHandle::CommandOptions
1665 bool notify; local
1668 if (signals.GetSignalInfo (signo, suppress, stop, notify))
1674 (notify ? "true " : "false"));
1740 if (! m_options.notify.empty()
1741 && ! VerifyCommandOptionValue (m_options.notify, notify_action))
1743 result.AppendError ("Invalid argument for command option --notify; must be true or false.\n");
1828 { LLDB_OPT_SET_1, false, "notify", '
[all...]
H A DCommandObjectTarget.cpp1152 bool notify = true; local
1153 target->GetImageSearchPathList().Clear(notify);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp672 ProcessPOSIX::EnableWatchpoint(Watchpoint *wp, bool notify) argument
721 wp->SetEnabled(true, notify);
739 ProcessPOSIX::DisableWatchpoint(Watchpoint *wp, bool notify) argument
757 wp->SetEnabled(false, notify);
778 wp->SetEnabled(false, notify);
H A DProcessPOSIX.h117 EnableWatchpoint(lldb_private::Watchpoint *wp, bool notify = true);
120 DisableWatchpoint(lldb_private::Watchpoint *wp, bool notify = true);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2482 ProcessGDBRemote::EnableWatchpoint (Watchpoint *wp, bool notify) argument
2505 wp->SetEnabled(true, notify);
2524 ProcessGDBRemote::DisableWatchpoint (Watchpoint *wp, bool notify) argument
2545 wp->SetEnabled(false, notify);
2555 wp->SetEnabled(false, notify);
H A DProcessGDBRemote.h201 EnableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true);
204 DisableWatchpoint (lldb_private::Watchpoint *wp, bool notify = true);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DPathMappingList.cpp79 bool notify)
83 if (notify && m_callback)
88 PathMappingList::Append (const PathMappingList &rhs, bool notify) argument
96 if (notify && m_callback)
105 bool notify)
114 if (notify && m_callback)
122 bool notify)
129 if (notify && m_callback)
135 PathMappingList::Remove (off_t index, bool notify) argument
143 if (notify
77 Append(const ConstString &path, const ConstString &replacement, bool notify) argument
102 Insert(const ConstString &path, const ConstString &replacement, uint32_t index, bool notify) argument
119 Replace(const ConstString &path, const ConstString &replacement, uint32_t index, bool notify) argument
171 Clear(bool notify) argument
261 Replace(const ConstString &path, const ConstString &new_path, bool notify) argument
276 Remove(const ConstString &path, bool notify) argument
[all...]
H A DProcess.cpp2947 Process::EnableWatchpoint (Watchpoint *watchpoint, bool notify)
2955 Process::DisableWatchpoint (Watchpoint *watchpoint, bool notify)
5743 // If the process exited during the run of the thread plan, notify everyone.
H A DStopInfo.cpp551 const bool notify = false; local
553 process->DisableWatchpoint(watchpoint, notify);
562 const bool notify = false; local
563 process->EnableWatchpoint(watchpoint, notify);
865 // If should stop returns false, check if we should notify of this event
H A DTarget.cpp200 const bool notify = false; local
201 m_breakpoint_list.RemoveAll(notify);
202 m_internal_breakpoint_list.RemoveAll(notify);
206 m_image_search_paths.Clear(notify);
591 const bool notify = false; // Don't notify about all the state changes we do on creating the watchpoint. local
605 wp_sp->SetEnabled(false, notify);
610 m_process_sp->DisableWatchpoint(matched_sp.get(), notify);
618 wp_sp->SetWatchpointType(kind, notify);
622 error = m_process_sp->EnableWatchpoint(wp_sp.get(), notify);
[all...]

Completed in 244 milliseconds

1234567