Searched refs:notify (Results 51 - 75 of 151) sorted by relevance

1234567

/freebsd-10.1-release/sys/dev/acpi_support/
H A Dacpi_toshiba.c149 static void acpi_toshiba_notify(ACPI_HANDLE h, UINT32 notify,
517 acpi_toshiba_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
524 if (notify == 0x80) {
532 device_printf(sc->dev, "unknown notify: 0x%x\n", notify);
H A Dacpi_asus_wmi.c300 static void acpi_asus_wmi_notify(ACPI_HANDLE h, UINT32 notify, void *context);
565 acpi_asus_wmi_notify(ACPI_HANDLE h, UINT32 notify, void *context) argument
568 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
575 ACPI_WMI_GET_EVENT_DATA(sc->wmi_dev, notify, &response);
H A Dacpi_fujitsu.c141 static void acpi_fujitsu_notify_handler(ACPI_HANDLE h, uint32_t notify, void *context);
312 * Since our notify function is called, we know something has
323 acpi_fujitsu_notify_handler(ACPI_HANDLE h, uint32_t notify, void *context) argument
327 ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
331 switch (notify) {
/freebsd-10.1-release/sys/dev/acpica/
H A Dacpi_cmbat.c80 static void acpi_cmbat_notify_handler(ACPI_HANDLE h, UINT32 notify,
148 * Install a system notify handler in addition to the device notify.
149 * Toshiba notebook uses this alternate notify for its battery.
179 acpi_cmbat_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) argument
187 switch (notify) {
200 * context. It's not safe to block in a notify handler.
206 acpi_UserNotify("CMBAT", h, notify);
387 * last-full capacity, so we only update when we get a notify that says
H A Dacpi_dock.c384 acpi_dock_notify_handler(ACPI_HANDLE h, UINT32 notify, void *context) argument
390 "got notification %#x\n", notify);
393 switch (notify) {
402 device_printf(dev, "unknown notify %#x\n", notify);
H A Dacpi_video.c351 acpi_video_notify_handler(ACPI_HANDLE handle, UINT32 notify, void *context) argument
360 switch (notify) {
399 device_printf(sc->device, "unknown notify event 0x%x\n",
400 notify);
671 acpi_video_vo_notify_handler(ACPI_HANDLE handle, UINT32 notify, void *context) argument
681 switch (notify) {
696 printf("unknown notify event 0x%x from %s\n",
697 notify, acpi_name(handle));
702 switch (notify) {
715 if (notify
[all...]
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db_update_move.c185 svn_wc_notify_t *notify; local
191 notify = svn_wc_create_notify(svn_dirent_join(wcroot->abspath,
195 notify->kind = svn_sqlite__column_int(stmt, 2);
196 notify->content_state = svn_sqlite__column_int(stmt, 3);
197 notify->prop_state = svn_sqlite__column_int(stmt, 4);
198 notify->old_revision = old_revision;
199 notify->revision = new_revision;
200 notify_func(notify_baton, notify, scratch_pool);
2001 svn_wc_notify_t *notify; local
2003 notify
2538 svn_wc_notify_t *notify; local
[all...]
H A Dadm_ops.c985 svn_wc_notify_t *notify = svn_wc_create_notify(local_abspath,
988 notify->kind = kind;
989 (*notify_func)(notify_baton, notify, scratch_pool);
1030 svn_wc_notify_t *notify = svn_wc_create_notify(local_abspath,
1033 notify->kind = kind;
1034 notify->mime_type = svn_prop_get_value(props, SVN_PROP_MIME_TYPE);
1035 (*notify_func)(notify_baton, notify, scratch_pool);
983 svn_wc_notify_t *notify = svn_wc_create_notify(local_abspath, local
1028 svn_wc_notify_t *notify = svn_wc_create_notify(local_abspath, local
H A Dupdate_editor.c97 * notify "skipped because already in conflict" just once
107 * notify "skipped because already in conflict"
114 * notify "skipped because obstructed"
122 * notify "tree conflict"
127 * notify
637 svn_wc_notify_t *notify;
642 notify = svn_wc_create_notify(local_abspath, action, scratch_pool);
643 notify->kind = kind;
645 (*eb->notify_func)(eb->notify_baton, notify, scratch_pool);
1817 Do not notify, bu
634 svn_wc_notify_t *notify; local
2947 svn_wc_notify_t *notify; local
3053 svn_wc_notify_t *notify; local
4427 svn_wc_notify_t *notify =svn_wc_create_notify( local
4640 svn_wc_notify_t *notify; local
[all...]
H A Dexternals.c919 svn_wc_notify_t *notify;
928 notify = svn_wc_create_notify(eb->local_abspath, action, pool);
929 notify->kind = svn_node_file;
931 notify->revision = *eb->target_revision;
932 notify->prop_state = prop_state;
933 notify->content_state = content_state;
935 notify->old_revision = eb->original_revision;
937 eb->notify_func(eb->notify_baton, notify, pool);
917 svn_wc_notify_t *notify; local
H A Dcopy.c265 svn_wc_notify_t *notify
268 notify->kind = svn_node_file;
270 /* When we notify that we performed a copy, make sure we already did */
274 (*notify_func)(notify_baton, notify, scratch_pool);
331 svn_wc_notify_t *notify
334 notify->kind = svn_node_dir;
336 /* When we notify that we performed a copy, make sure we already did */
341 (*notify_func)(notify_baton, notify, scratch_pool);
263 svn_wc_notify_t *notify local
329 svn_wc_notify_t *notify local
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
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/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);
/freebsd-10.1-release/sys/mips/rt305x/
H A Drt305x_gpio.c335 char notify[16]; local
376 snprintf(notify , sizeof(notify ), "period=%d",
381 notify);
384 notify);
/freebsd-10.1-release/sys/dev/isp/
H A Disp_freebsd.c2730 * We get here when we've gotten the immediate notify
3010 * We never *not* notify CAM when there has been any error (ok == 0),
3393 * We show up here with a notify structure filled out.
3398 isp_handle_platform_target_tmf(ispsoftc_t *isp, isp_notify_t *notify) argument
3406 isp_prt(isp, ISP_LOGTDEBUG0, "%s: code 0x%x sid 0x%x tagval 0x%016llx chan %d lun 0x%x", __func__, notify->nt_ncode,
3407 notify->nt_sid, (unsigned long long) notify->nt_tagval, notify->nt_channel, notify->nt_lun);
3414 if (notify
5853 isp_notify_t *notify; local
5984 isp_notify_t notify, *nt = &notify; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
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 DThreadList.cpp709 ThreadList::SetSelectedThreadByID (lldb::tid_t tid, bool notify) argument
721 if (notify)
728 ThreadList::SetSelectedThreadByIndexID (uint32_t index_id, bool notify) argument
740 if (notify)
/freebsd-10.1-release/contrib/sendmail/contrib/
H A Ddoublebounce.pl86 Subject: Postmaster notify: double bounce
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_repos/
H A Dfs-wrap.c757 svn_repos_notify_t *notify;
763 notify = svn_repos_notify_create(pack_action
767 notify->shard = shard;
768 pnb->notify_func(pnb->notify_baton, notify, pool);
754 svn_repos_notify_t *notify; local
H A Drepos.c1560 /* We notify *twice* here, because there are two different logistical
1562 svn_repos_notify_t *notify = svn_repos_notify_create(
1564 notify_func(notify_baton, notify, subpool);
1566 notify->action = svn_repos_notify_upgrade_start;
1567 notify_func(notify_baton, notify, subpool);
1736 /* We notify *twice* here, because there are two different logistical
1738 svn_repos_notify_t *notify = svn_repos_notify_create(
1740 notify_func(notify_baton, notify, subpool);
1742 notify->action = svn_repos_notify_recover_start;
1743 notify_func(notify_baton, notify, subpoo
1561 svn_repos_notify_t *notify = svn_repos_notify_create( local
1737 svn_repos_notify_t *notify = svn_repos_notify_create( local
[all...]
/freebsd-10.1-release/usr.sbin/ppp/
H A Dbundle.h145 } notify; member in struct:bundle
/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...]
/freebsd-10.1-release/sbin/dump/
H A Doptr.c126 if (notify == 0) {
166 if (!notify)
/freebsd-10.1-release/sys/contrib/ngatm/netnatm/sig/
H A Dunidef.h371 struct uni_notify notify; member in struct:uniapi_notify_request
374 struct uni_notify notify; member in struct:uniapi_notify_indication
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_client/
H A Dmergeinfo.c136 svn_wc_notify_t *notify = local
141 notify->prop_state = svn_wc_notify_state_merged;
143 notify->prop_state = svn_wc_notify_state_changed;
145 ctx->notify_func2(ctx->notify_baton2, notify, scratch_pool);
889 svn_wc_notify_t *notify;
891 notify = svn_wc_create_notify(local_abspath,
894 ctx->notify_func2(ctx->notify_baton2, notify, scratch_pool);
896 notify = svn_wc_create_notify(local_abspath,
899 notify->prop_state = svn_wc_notify_state_changed;
901 ctx->notify_func2(ctx->notify_baton2, notify, scratch_poo
887 svn_wc_notify_t *notify; local
[all...]

Completed in 420 milliseconds

1234567