Searched refs:notify (Results 76 - 100 of 151) sorted by relevance

1234567

/freebsd-10.3-release/sys/dev/acpi_support/
H A Dacpi_wmi.c86 char oid[2]; /* object id or event notify id (first byte) */
139 static void acpi_wmi_notify_handler(ACPI_HANDLE h, UINT32 notify,
222 * - Install the notify handler
247 device_printf(sc->wmi_dev, "couldn't install notify handler - %s\n",
467 * (event_id equals "notify" passed in the callback)
627 acpi_wmi_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) argument
634 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
641 ((UINT8) winfo->ginfo.oid[0] == notify)) {
651 handler(h, notify, handler_data);
H A Dacpi_hp.c291 static void acpi_hp_notify(ACPI_HANDLE h, UINT32 notify, void *context);
798 acpi_hp_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
801 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
806 ACPI_WMI_GET_EVENT_DATA(sc->wmi_dev, notify, &response);
H A Dacpi_ibm.c282 static void acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context);
1218 acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
1224 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
1226 if (notify != 0x80)
1227 device_printf(dev, "Unknown notify\n");
/freebsd-10.3-release/sys/dev/acpica/
H A Dacpi_thermal.c62 #define TZ_NOTIFY_CRITICAL 0xcc /* Fake notify that _CRT/_HOT reached. */
142 static void acpi_tz_notify_handler(ACPI_HANDLE h, UINT32 notify,
598 * If we're almost at that threshold, notify the user through devd(8).
834 acpi_tz_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) argument
840 switch (notify) {
852 "unknown Notify event 0x%x\n", notify);
856 acpi_UserNotify("Thermal", h, notify);
872 * triggered by other thermal methods. One system generates a notify of
902 * System power profile may have changed; fetch and notify the
H A Dacpi_perf.c106 static void acpi_px_notify(ACPI_HANDLE h, UINT32 notify, void *context);
236 /* TODO: teardown registers, remove notify handler. */
406 acpi_px_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
411 if (notify != ACPI_NOTIFY_PERF_STATES)
H A Dacpi_cpu.c173 static void acpi_cpu_notify(ACPI_HANDLE h, UINT32 notify, void *context);
344 * and notify ACPI of them. We support unified SMP power control
722 * can change dynamically, our notify handler may call this function
880 * install our notify handler.
1101 acpi_cpu_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
1105 if (notify != ACPI_NOTIFY_CX_STATES)
1126 acpi_UserNotify("PROCESSOR", sc->cpu_handle, notify);
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_client/
H A Dmerge.c1279 svn_wc_notify_t *notify;
1283 notify = svn_wc_create_notify(local_abspath, action, scratch_pool);
1284 notify->kind = kind;
1285 notify->content_state = notify->prop_state = state;
1287 (*merge_b->ctx->notify_func2)(merge_b->ctx->notify_baton2, notify,
1403 svn_wc_notify_t *notify;
1407 notify = svn_wc_create_notify(local_abspath, svn_wc_notify_tree_conflict,
1409 notify->kind = node_kind;
1411 (*merge_b->ctx->notify_func2)(merge_b->ctx->notify_baton2, notify,
1275 svn_wc_notify_t *notify; local
1399 svn_wc_notify_t *notify; local
1431 svn_wc_notify_t *notify; local
1466 svn_wc_notify_t *notify; local
1535 svn_wc_notify_t *notify; local
1596 svn_wc_notify_t *notify; local
1679 svn_wc_notify_t *notify; local
3555 svn_wc_notify_t *notify; local
[all...]
H A Dstatus.c564 svn_wc_notify_t *notify
567 notify->revision = edit_revision;
568 (ctx->notify_func2)(ctx->notify_baton2, notify, pool);
561 svn_wc_notify_t *notify local
H A Dprop_commands.c329 svn_wc_notify_t *notify = svn_wc_create_notify(
334 ctx->notify_func2(ctx->notify_baton2, notify, iterpool);
509 svn_wc_notify_t *notify = svn_wc_create_notify_url(URL,
514 notify->prop_name = propname;
515 notify->revision = *set_rev;
517 (*ctx->notify_func2)(ctx->notify_baton2, notify, pool);
327 svn_wc_notify_t *notify = svn_wc_create_notify( local
507 svn_wc_notify_t *notify = svn_wc_create_notify_url(URL, local
H A Dcopy.c1550 const svn_wc_notify_t *notify,
1554 svn_wc_notify_t *inner_notify = svn_wc_dup_notify(notify, pool);
1557 relpath = svn_dirent_skip_ancestor(nb->checkout_abspath, notify->path);
1584 svn_wc_notify_t *notify;
1585 notify = svn_wc_create_notify_url(
1589 notify->kind = pair->src_kind;
1590 ctx->notify_func2(ctx->notify_baton2, notify, pool);
1727 svn_wc_notify_t *notify = svn_wc_create_notify(
1729 notify->kind = pair->src_kind;
1730 (*ctx->notify_func2)(ctx->notify_baton2, notify, poo
1547 notification_adjust_func(void *baton, const svn_wc_notify_t *notify, apr_pool_t *pool) argument
1582 svn_wc_notify_t *notify; local
1725 svn_wc_notify_t *notify = svn_wc_create_notify( local
[all...]
/freebsd-10.3-release/usr.sbin/powerd/
H A Dpowerd.c318 int notify; local
331 (ptr = strstr(ptr, "notify=")) != NULL &&
332 sscanf(ptr, "notify=%x", &notify) == 1)
333 acline_status = (notify ? SRC_AC : SRC_BATTERY);
/freebsd-10.3-release/contrib/openbsm/bin/auditd/
H A Dauditd_darwin.c46 #include <notify.h>
196 * as well to update their state via notify(3).
/freebsd-10.3-release/sys/dev/ciss/
H A Dcissvar.h238 struct ciss_request *ciss_periodic_notify; /* notify callback request */
254 #define CISS_FLAG_NOTIFY_OK (1<<0) /* notify command running OK */
363 CISSQ_REQUEST_QUEUE(notify, CISSQ_NOTIFY);
/freebsd-10.3-release/contrib/gdb/gdb/
H A Dthread-db.c477 td_notify_t notify;
481 err = td_ta_event_addr_p (thread_agent, event, &notify);
487 (CORE_ADDR) notify.u.bptaddr,
498 td_notify_t notify;
471 td_notify_t notify; local
492 td_notify_t notify; local
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_proc.c515 int notify = B_FALSE; local
673 notify = B_TRUE;
679 notify = B_TRUE;
695 if (notify)
700 * dpr_tid to indicate the control thread has exited, and notify any
/freebsd-10.3-release/sys/dev/asmc/
H A Dasmc.c1225 char notify[16]; local
1242 snprintf(notify, sizeof(notify), " notify=0x%x", type);
1243 devctl_notify("ACPI", "asmc", "SMS", notify);
/freebsd-10.3-release/sys/netinet6/
H A Din6_pcb.c576 struct inpcb *(*notify)(struct inpcb *, int))
592 * note that src can be NULL when we get notify by local fragmentation.
611 notify = in6_rtchange;
625 * know the value, notify.
626 * XXX: should we avoid to notify the value to TCP sockets?
633 * Detect if we should notify the error. If no source and
635 * local address match, notify the error. This is the case
658 if (notify) {
659 if ((*notify)(inp, errno))
H A Dudp6_usrreq.c507 struct inpcb *(*notify)(struct inpcb *, int) = udp_notify;
520 notify = in6_rtchange, d = NULL;
556 cmdarg, notify);
559 (const struct sockaddr *)sa6_src, 0, cmd, cmdarg, notify);
/freebsd-10.3-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.3-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-queries.sql536 INSERT INTO changelist_list (wc_id, local_relpath, notify, changelist)
553 notify INTEGER NOT NULL,
556 PRIMARY KEY (wc_id, local_relpath, notify DESC)
559 /* Create notify items for when a node is removed from a changelist and
570 INSERT INTO changelist_list(wc_id, local_relpath, notify, changelist)
575 INSERT INTO changelist_list(wc_id, local_relpath, notify, changelist)
586 SELECT wc_id, local_relpath, notify, changelist
588 ORDER BY wc_id, local_relpath ASC, notify DESC
1308 notify INTEGER, /* 1 if an actual row had props or tree conflict */
1327 notify)
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Target/
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...]
/freebsd-10.3-release/sys/netinet/
H A Dtcp_subr.c1497 struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
1508 notify = tcp_mtudisc_notify;
1511 notify = tcp_drop_syn_sent;
1552 * value (if given) and then notify.
1582 inp = (*notify)(inp,
1598 in_pcbnotifyall(&V_tcbinfo, faddr, inetctlerrmap[cmd], notify);
1607 struct inpcb *(*notify)(struct inpcb *, int) = tcp_notify;
1623 notify = tcp_mtudisc_notify;
1661 th.th_sport, cmd, NULL, notify);
1674 0, cmd, NULL, notify);
[all...]
/freebsd-10.3-release/contrib/sendmail/src/
H A Ddeliver.c1761 char notify[MAXLINE]; local
1763 notify[0] = '\0';
1765 (void) sm_strlcat(notify, "SUCCESS,",
1766 sizeof(notify));
1768 (void) sm_strlcat(notify, "FAILURE,",
1769 sizeof(notify));
1771 (void) sm_strlcat(notify, "DELAY,",
1772 sizeof(notify));
1775 if (notify[0] == '\0')
1776 (void) sm_strlcat(notify, "NEVE
[all...]
/freebsd-10.3-release/sys/dev/xen/netback/
H A Dnetback.c752 * used to notify us of ring changes.
853 * "feature-rx-notify"
920 /** \todo Collect the rx notify feature */
1049 * to drain, disconnect from the front-end, and notify any waiters (e.g.
1433 int notify; local
1450 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(txb, notify);
1451 if (notify != 0)
2324 int notify; local
2367 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(rxb, notify);
2368 if ((notify !
[all...]
/freebsd-10.3-release/sys/dev/xen/netfront/
H A Dnetfront.c577 err = xs_printf(xst, node, "feature-rx-notify", "%d", 1);
579 message = "writing feature-rx-notify";
852 int i, batch_target, notify; local
1016 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&sc->rx, notify);
1017 if (notify)
1713 int notify; local
1734 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&sc->tx, notify);
1735 if (notify)

Completed in 283 milliseconds

1234567