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

  /src/external/bsd/ppp/dist/pppd/
fsm.h 1 /* $NetBSD: fsm.h,v 1.6 2025/01/08 19:59:39 christos Exp $ */
4 * fsm.h - {Link, IP} Control Protocol Finite State Machine definitions.
71 * Each FSM is described by an fsm structure and fsm callbacks.
73 typedef struct fsm { struct
91 } fsm; typedef in typeref:struct:fsm
95 void (*resetci)(fsm *); /* Reset our Configuration Information */
96 int (*cilen)(fsm *); /* Length of our Configuration Information */
98 (fsm *, unsigned char *, int *)
    [all...]
  /src/sbin/newfs_ext2fs/
mke2fs.c 784 static const struct fsm { struct
798 const struct fsm *fsm; local
833 for (fsm = fs_magics;; fsm++) {
835 if (fsm->mask == 0)
837 v = oldfs[fsm->offset];
838 if ((v & fsm->mask) == fsm->magic ||
839 (bswap32(v) & fsm->mask) == fsm->magic
    [all...]
  /src/sbin/newfs/
mkfs.c 1593 static const struct fsm { struct
1605 const struct fsm *fsm; local
1631 for (fsm = fs_magics; ; fsm++) {
1633 if (fsm->mask == 0)
1635 v = oldfs[fsm->offset];
1636 if ((v & fsm->mask) == fsm->magic ||
1637 (bswap32(v) & fsm->mask) == fsm->magic
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
infcall.c 42 #include "thread-fsm.h"
572 /* Data for the FSM that manages an infcall. It's main job is to
776 call_thread_fsm *fsm local
778 fsm->timed_out ();
815 /* Associate the FSM with the thread after clear_proceed_status
816 (otherwise it'd clear this FSM). */
1539 /* Save the current FSM. We'll override it. */
1549 /* Create the FSM used to manage the infcall. It tells infrun to
1581 /* The FSM should still be the same. */
1600 /* Restore the original FSM and clean up / destroy the call FSM
    [all...]
thread.c 46 #include "thread-fsm.h"
168 std::unique_ptr<thread_fsm> fsm = thr->release_thread_fsm (); local
169 fsm->clean_up (thr);
  /src/external/gpl3/gdb.old/dist/gdb/
infcall.c 42 #include "thread-fsm.h"
572 /* Data for the FSM that manages an infcall. It's main job is to
776 call_thread_fsm *fsm local
778 fsm->timed_out ();
815 /* Associate the FSM with the thread after clear_proceed_status
816 (otherwise it'd clear this FSM). */
1539 /* Save the current FSM. We'll override it. */
1549 /* Create the FSM used to manage the infcall. It tells infrun to
1581 /* The FSM should still be the same. */
1600 /* Restore the original FSM and clean up / destroy the call FSM
    [all...]
thread.c 46 #include "thread-fsm.h"
167 std::unique_ptr<thread_fsm> fsm = thr->release_thread_fsm (); local
168 fsm->clean_up (thr);
  /src/lib/libnvmm/
libnvmm_x86.c 1035 /* fsm */
1824 node_overflow(struct x86_decode_fsm *fsm, struct x86_instr *instr)
1826 fsm->fn = NULL;
1831 fsm_read(struct x86_decode_fsm *fsm, uint8_t *bytes, size_t n)
1833 if (fsm->buf + n > fsm->end) {
1836 memcpy(bytes, fsm->buf, n);
1841 fsm_advance(struct x86_decode_fsm *fsm, size_t n,
1844 fsm->buf += n;
1845 if (fsm->buf > fsm->end)
2679 struct x86_decode_fsm fsm; local
    [all...]

Completed in 42 milliseconds