HomeSort by: relevance | last modified time | path
    Searched defs:notifier (Results 1 - 14 of 14) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
condition_variable.cc 81 struct notifier final : __at_thread_exit_elt
83 notifier(condition_variable& cv, unique_lock<mutex>& l) function in struct:__anon14827::final
86 _M_cb = &notifier::run;
90 ~notifier()
99 static void run(void* p) { delete static_cast<notifier*>(p); }
127 (void) new notifier{cv, l};
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
condition_variable.cc 81 struct notifier final : __at_thread_exit_elt
83 notifier(condition_variable& cv, unique_lock<mutex>& l) function in struct:__anon17223::final
86 _M_cb = &notifier::run;
90 ~notifier()
99 static void run(void* p) { delete static_cast<notifier*>(p); }
127 (void) new notifier{cv, l};
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_reactor.h 109 RIO_NOTIFIER notifier; member in struct:quic_reactor_st
112 * Condvar to assist synchronising use of the notifier. Valid only if
137 /* 1 if notifier is present and initialised. */
140 /* 1 if a block_until_pred call has put the notifier in the signalled state. */
144 /* Create an OS notifier? */
251 * via the notifier. The reactor mutex must be held while calling these
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_object.h 111 struct mmu_interval_notifier notifier; member in struct:amdgpu_bo
  /src/external/bsd/ppp/dist/pppd/
pppd-private.h 85 struct notifier { struct
86 struct notifier *next;
130 extern struct notifier *pidchange; /* for notifications of pid changing */
131 extern struct notifier *phasechange; /* for notifications of phase changes */
132 extern struct notifier *exitnotify; /* for notification that we're exiting */
133 extern struct notifier *sigreceived; /* notification of received signal */
134 extern struct notifier *ip_up_notifier; /* IPCP has come up */
135 extern struct notifier *ip_down_notifier; /* IPCP has gone down */
136 extern struct notifier *ipv6_up_notifier; /* IPV6CP has come up */
137 extern struct notifier *ipv6_down_notifier; /* IPV6CP has gone down *
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
solib-darwin.c 56 /* Notifier (function called when a library is added or removed). */
57 CORE_ADDR notifier; member in struct:gdb_dyld_all_image_infos
116 info (pointer) and notifier (pointer). */
132 info->all_image.notifier = extract_typed_address
529 Do not break on the notifier if dyld is not initialized (deduced from
531 notifier may point to a wrong address. */
549 /* Set solib notifier (to reload list of shared libraries). */
550 CORE_ADDR notifier = info->all_image.notifier; local
554 /* Dyld hasn't yet relocated itself, so the notifier address ma
    [all...]
amd-dbgapi-target.c 187 amd_dbgapi_notifier_t notifier = -1; member in struct:amd_dbgapi_inferior_info
329 It is marked when a notifier fd tells us there's an event available. The
922 /* Called when a dbgapi notifier fd is readable. CLIENT_DATA is the
923 amd_dbgapi_inferior_info object corresponding to the notifier. */
931 /* Drain the notifier pipe. */
935 ret = read (info->notifier, &buf, 1);
1026 /* The library gives us one notifier file descriptor per inferior (even
1036 if (info->notifier != -1)
1037 add_file_handler (info->notifier, dbgapi_notifier_handler, info,
1038 string_printf ("amd-dbgapi notifier for pid %d"
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
solib-darwin.c 77 /* Notifier (function called when a library is added or removed). */
78 CORE_ADDR notifier; member in struct:gdb_dyld_all_image_infos
137 info (pointer) and notifier (pointer). */
153 info->all_image.notifier = extract_typed_address
515 Do not break on the notifier if dyld is not initialized (deduced from
517 notifier may point to a wrong address. */
535 /* Set solib notifier (to reload list of shared libraries). */
536 CORE_ADDR notifier = info->all_image.notifier; local
540 /* Dyld hasn't yet relocated itself, so the notifier address ma
    [all...]
amd-dbgapi-target.c 203 amd_dbgapi_notifier_t notifier = -1; member in struct:amd_dbgapi_inferior_info
366 It is marked when a notifier fd tells us there's an event available. The
973 /* Called when a dbgapi notifier fd is readable. CLIENT_DATA is the
974 amd_dbgapi_inferior_info object corresponding to the notifier. */
983 /* Drain the notifier pipe. */
987 ret = read (info.notifier, &buf, 1);
1078 /* The library gives us one notifier file descriptor per inferior (even
1088 if (info.notifier != -1)
1089 add_file_handler (info.notifier, dbgapi_notifier_handler, &info,
1090 string_printf ("amd-dbgapi notifier for pid %d"
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_svm.c 96 struct mmu_notifier notifier; member in struct:nouveau_svmm
261 container_of(mn, struct nouveau_svmm, notifier);
291 kfree(container_of(mn, struct nouveau_svmm, notifier));
307 mmu_notifier_put(&svmm->notifier);
352 svmm->notifier.ops = &nouveau_mn_ops;
353 ret = __mmu_notifier_register(&svmm->notifier, current->mm);
493 struct mmu_interval_notifier notifier; member in struct:svm_notifier
502 container_of(mni, struct svm_notifier, notifier);
508 * notifier that does invalidation is always called after the range
509 * notifier
650 struct svm_notifier notifier; local
    [all...]
  /src/crypto/external/bsd/openssh/dist/
ssh-agent.c 853 struct notifier_ctx *notifier = NULL; local
938 notifier = notify_start(0,
952 notify_complete(notifier, NULL);
953 notifier = NULL;
970 notify_complete(notifier, "User presence confirmed");
sshconnect2.c 1246 struct notifier_ctx *notifier = NULL; local
1286 notifier = notify_start(options.batch_mode,
1297 notify_complete(notifier, NULL);
1298 notifier = NULL;
1323 notify_complete(notifier, r == 0 ? "User presence confirmed" : NULL);
ssh-keygen.c 1708 struct notifier_ctx *notifier = NULL; local
1815 notifier = notify_start(0,
1821 notify_complete(notifier, "User presence confirmed");
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon.h 532 struct mmu_interval_notifier notifier; member in struct:radeon_bo
1828 * MMU Notifier

Completed in 74 milliseconds