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

1234567

/freebsd-10.1-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.c303 static void acpi_hp_notify(ACPI_HANDLE h, UINT32 notify, void *context);
802 acpi_hp_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
805 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
810 ACPI_WMI_GET_EVENT_DATA(sc->wmi_dev, notify, &response);
H A Dacpi_ibm.c291 static void acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context);
1222 acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
1228 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
1230 if (notify != 0x80)
1231 device_printf(dev, "Unknown notify\n");
/freebsd-10.1-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.c172 static void acpi_cpu_notify(ACPI_HANDLE h, UINT32 notify, void *context);
342 * and notify ACPI of them. We support unified SMP power control
717 * can change dynamically, our notify handler may call this function
870 * install our notify handler.
1089 acpi_cpu_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
1093 if (notify != ACPI_NOTIFY_CX_STATES)
1114 acpi_UserNotify("PROCESSOR", sc->cpu_handle, notify);
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_client/
H A Dmerge.c1278 svn_wc_notify_t *notify;
1282 notify = svn_wc_create_notify(local_abspath, action, scratch_pool);
1283 notify->kind = kind;
1284 notify->content_state = notify->prop_state = state;
1286 (*merge_b->ctx->notify_func2)(merge_b->ctx->notify_baton2, notify,
1402 svn_wc_notify_t *notify;
1406 notify = svn_wc_create_notify(local_abspath, svn_wc_notify_tree_conflict,
1408 notify->kind = node_kind;
1410 (*merge_b->ctx->notify_func2)(merge_b->ctx->notify_baton2, notify,
1274 svn_wc_notify_t *notify; local
1398 svn_wc_notify_t *notify; local
1430 svn_wc_notify_t *notify; local
1465 svn_wc_notify_t *notify; local
1534 svn_wc_notify_t *notify; local
1595 svn_wc_notify_t *notify; local
1678 svn_wc_notify_t *notify; local
3541 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.c1547 const svn_wc_notify_t *notify,
1551 svn_wc_notify_t *inner_notify = svn_wc_dup_notify(notify, pool);
1554 relpath = svn_dirent_skip_ancestor(nb->checkout_abspath, notify->path);
1581 svn_wc_notify_t *notify;
1582 notify = svn_wc_create_notify_url(
1586 notify->kind = pair->src_kind;
1587 ctx->notify_func2(ctx->notify_baton2, notify, pool);
1724 svn_wc_notify_t *notify = svn_wc_create_notify(
1726 notify->kind = pair->src_kind;
1727 (*ctx->notify_func2)(ctx->notify_baton2, notify, poo
1544 notification_adjust_func(void *baton, const svn_wc_notify_t *notify, apr_pool_t *pool) argument
1579 svn_wc_notify_t *notify; local
1722 svn_wc_notify_t *notify = svn_wc_create_notify( local
[all...]
/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/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.1-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.1-release/contrib/openbsm/bin/auditd/
H A Dauditd_darwin.c48 #include <notify.h>
198 * as well to update their state via notify(3).
/freebsd-10.1-release/sys/dev/asmc/
H A Dasmc.c1126 char notify[16]; local
1143 snprintf(notify, sizeof(notify), " notify=0x%x", type);
1144 devctl_notify("ACPI", "asmc", "SMS", notify);
/freebsd-10.1-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.1-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. Note that we notify for all
629 * XXX: should we avoid to notify the value to TCP sockets?
639 * Detect if we should notify the error. If no source and
641 * local address match, notify the error. This is the case
664 if (notify) {
665 if ((*notify)(in
[all...]
H A Dudp6_usrreq.c524 struct inpcb *(*notify)(struct inpcb *, int) = udp_notify;
537 notify = in6_rtchange, d = NULL;
573 cmdarg, notify);
576 (const struct sockaddr *)sa6_src, 0, cmd, cmdarg, notify);
/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/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.1-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.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 Ddeliver.c1757 char notify[MAXLINE]; local
1759 notify[0] = '\0';
1761 (void) sm_strlcat(notify, "SUCCESS,",
1762 sizeof(notify));
1764 (void) sm_strlcat(notify, "FAILURE,",
1765 sizeof(notify));
1767 (void) sm_strlcat(notify, "DELAY,",
1768 sizeof(notify));
1771 if (notify[0] == '\0')
1772 (void) sm_strlcat(notify, "NEVE
[all...]
/freebsd-10.1-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.1-release/sys/dev/xen/netfront/
H A Dnetfront.c560 err = xs_printf(xst, node, "feature-rx-notify", "%d", 1);
562 message = "writing feature-rx-notify";
795 int i, batch_target, notify; local
959 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&sc->rx, notify);
960 if (notify)
1656 int notify; local
1677 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&sc->tx, notify);
1678 if (notify)

Completed in 398 milliseconds

1234567