Searched refs:state (Results 26 - 50 of 536) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/tests/memtest/
H A Dmem_alloc.c17 enum state { enum
27 enum state state = State_Idle; local
45 switch(state) {
49 state = State_Inflate;
91 state = State_Deflate;
101 state = State_Idle;
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/
H A Dexample_multi.tcl137 .run configure -state normal
138 .end configure -state normal
139 .reg configure -state normal
143 .run configure -state disabled
144 .end configure -state disabled
145 .reg configure -state disabled
153 pack [button .run -state disabled -command {ec_rpc \
155 pack [button .end -state disabled -command {end_interaction} -text "end interaction"]
156 pack [button .reg -state disabled]
/barrelfish-2018-10-04/lib/netd/
H A Dnetd_private.h35 struct netd_state *state; member in struct:ARP_user_cl
56 // state variable indicating if dhcp is done or not
72 * @param state netd library state
76 void startlwip(struct netd_state *state, char *card_name, uint64_t queueid);
78 int init_ARP_lookup_service(struct netd_state *state, char *dev_name);
/barrelfish-2018-10-04/lib/lwip2/src/netif/ppp/
H A Dfsm.c76 * Initialize fsm state.
80 f->state = PPP_FSM_INITIAL;
92 switch( f->state ){
94 f->state = PPP_FSM_CLOSED;
99 f->state = PPP_FSM_STOPPED;
103 f->state = PPP_FSM_REQSENT;
108 FSMDEBUG(("%s: Up event in state %d!", PROTO_NAME(f), f->state));
120 switch( f->state ){
122 f->state
[all...]
/barrelfish-2018-10-04/include/lwip2/netif/ppp/
H A Dfsm.c76 * Initialize fsm state.
80 f->state = PPP_FSM_INITIAL;
92 switch( f->state ){
94 f->state = PPP_FSM_CLOSED;
99 f->state = PPP_FSM_STOPPED;
103 f->state = PPP_FSM_REQSENT;
108 FSMDEBUG(("%s: Up event in state %d!", PROTO_NAME(f), f->state));
120 switch( f->state ){
122 f->state
[all...]
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Ddomain.h27 * \param state User state pointer
31 void *state,
H A Dinterrupts.c28 * \param alloc pointer to the allocator state struct
36 alloc->state = calloc((n + MSIX_ALLOCATOR_BITS -1 ) / MSIX_ALLOCATOR_BITS,
38 return (alloc->state != NULL);
49 if (alloc->state) {
50 free(alloc->state);
52 alloc->state = NULL;
59 * \param alloc pointer to the allocator state struct
69 if (alloc->state[i] != 0xFF) {
77 if (!(alloc->state[i] & (0x1 << idx))) {
78 alloc->state[
[all...]
/barrelfish-2018-10-04/include/barrelfish_kpi/
H A Ddistcaps.h28 distcap_state_is_busy(distcap_state_t state) argument
30 return state & DISTCAP_STATE_BUSY;
34 distcap_state_is_foreign(distcap_state_t state) argument
36 return state & DISTCAP_STATE_FOREIGN;
/barrelfish-2018-10-04/include/octopus/
H A Dpubsub.h21 typedef void(*subscription_handler_fn)(octopus_mode_t mode, const char* record, void* state);
/barrelfish-2018-10-04/lib/libc/net/
H A Dlinkaddr.c57 int byte = 0, state = NAMING, new; local
62 state &= ~LETTER;
70 state |= END;
71 } else if (state == NAMING &&
74 state |= LETTER;
76 state |= DELIM;
78 switch (state /* | INPUT */) {
84 state = RESET;
91 state = GOTONE;
95 state
[all...]
/barrelfish-2018-10-04/lib/barrelfish/
H A Dmorecore.c45 struct morecore_state *state = get_morecore_state(); local
61 err = vspace_mmu_aware_map(&state->mmu_state, step, &mid_buf, &step);
93 struct morecore_state *state = get_morecore_state(); local
94 errval_t err = vspace_mmu_aware_unmap(&state->mmu_state,
110 struct morecore_state *state = get_morecore_state(); local
112 thread_mutex_init(&state->mutex);
121 err = vspace_mmu_aware_init_aligned(&state->mmu_state, NULL, HEAP_REGION,
136 struct morecore_state *state = get_morecore_state(); local
138 size_t mapoffset = state->mmu_state.mapoffset;
139 size_t remapsize = ROUND_UP(mapoffset, state
[all...]
/barrelfish-2018-10-04/lib/bulk_transfer/backends/sm/
H A Dendpoint.c29 ep_desc->state = BULK_EPSTATE_CREATED;
46 ep_desc->state = BULK_EPSTATE_IREF_EXPORTED;
/barrelfish-2018-10-04/usr/monitor/include/
H A Dsend_cap.h24 struct captx_prepare_state *state,
32 void captx_handle_recv(intermon_captx_t *captx, struct captx_recv_state *state,
/barrelfish-2018-10-04/usr/monitor/
H A Dtrace_support.c71 struct trace_measure_time_state *state = malloc(sizeof(struct trace_measure_time_state)); local
77 state->elem.cont = trace_intermon_send_time_measurement_request;
78 state->origin_core = origin_core;
80 trace_intermon_send_time_measurement_request(ib, &state->elem);
92 struct trace_measure_time_state *state = (struct trace_measure_time_state*) elem; local
94 err = ib->tx_vtbl.trace_measure(ib, MKCONT(free, state), state->origin_core, rdtsc());
99 err = intermon_enqueue_send(ib, &ist->queue, get_default_waitset(), &state->elem.queue);
120 struct trace_measure_time_state *state = malloc(sizeof(struct trace_measure_time_state)); local
122 state
137 struct trace_measure_time_state *state = (struct trace_measure_time_state*) elem; local
193 struct trace_prepare_state *state = malloc(sizeof (struct trace_prepare_state)); local
304 struct trace_prepare_state *state = (struct trace_prepare_state*) elem; local
351 struct trace_prepare_state *state = malloc(sizeof(struct trace_prepare_state)); local
[all...]
/barrelfish-2018-10-04/lib/libc/sys/barrelfish/
H A Doldsys_morecore.c74 struct morecore_state *state = get_morecore_state();
76 vregion_get_base_addr(&state->mmu_state.vregion)
77 + state->mmu_state.offset;
83 Header *prevp = state->header_freep, *p;
87 state->header_freep = prevp;
94 if (p == state->header_freep) { /* wrapped around free list */
/barrelfish-2018-10-04/lib/barrelfish/slot_alloc/
H A Dslot_alloc.c31 struct slot_alloc_state *state = get_slot_alloc_state(); local
32 return (struct slot_allocator*)(&state->defca);
58 struct slot_alloc_state *state = get_slot_alloc_state(); local
59 size_t rootcn_free = single_slot_alloc_freecount(&state->rootca);
70 struct slot_allocator *ca = (struct slot_allocator*)(&state->rootca);
85 struct slot_alloc_state *state = get_slot_alloc_state(); local
86 struct single_slot_allocator *sca = &state->rootca;
152 struct slot_alloc_state *state = get_slot_alloc_state(); local
159 struct slot_allocator *ca = (struct slot_allocator*)(&state->rootca);
163 struct slot_allocator *ca = (struct slot_allocator*)(&state
176 struct slot_alloc_state *state = get_slot_alloc_state(); local
[all...]
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dsched.h61 int state; member in struct:task_struct
70 atomic_store_rel_int((volatile int *)&current->state, (x))
71 #define __set_current_state(x) current->state = (x)
82 if (current->state == TASK_INTERRUPTIBLE || \
83 current->state == TASK_UNINTERRUPTIBLE) { \
99 (x)->state = TASK_RUNNING; \
/barrelfish-2018-10-04/lib/angler/
H A Dangler.c34 /* internal state */
83 struct _angler_state *state = NULL; local
97 /* Initialize internal state */
98 state = malloc(sizeof(struct _angler_state));
99 assert(state != NULL);
100 state->err = SYS_ERR_OK;
101 state->binding = NULL;
105 err = terminal_session_bind(session_iref, bind_cb, state, &ws,
115 while (state->binding == NULL) {
117 if (err_is_fail(err) || err_is_fail(state
157 struct _angler_state *state = st; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/ocsp/
H A Docsp_ht.c77 int state; /* Current I/O state */ member in struct:ocsp_req_ctx_st
130 rctx->state = OHS_ASN1_WRITE;
161 rctx->state = OHS_ERROR;
268 if (!(rctx->state & OHS_NOREAD))
285 switch(rctx->state)
298 rctx->state = OHS_ERROR;
307 rctx->state = OHS_ASN1_FLUSH;
317 rctx->state = OHS_FIRSTLINE;
324 rctx->state
[all...]
/barrelfish-2018-10-04/lib/barrelfish/vspace/
H A Dmemobj_one_frame_one_map.c26 struct memobj_one_frame_one_map *state = local
29 if (state->vregion) {
33 state->vregion = vregion;
90 * \param region The vregion to modify the state on
105 * \param region The vregion to modify the state on
127 struct memobj_one_frame_one_map *state = local
131 state->frame = frame;
132 state->offset = offset;
149 struct memobj_one_frame_one_map *state = local
151 if (offset < state
198 memobj_create_one_frame_one_map(struct memobj_one_frame_one_map *state, size_t size, memobj_flags_t flags) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DScenarioIterator.java31 * This class represents the current state of a scenario playback
69 protected Collection getCommandList(int state) { argument
71 return eventCommandList.getCommandList(state);
106 * current state.
108 public void play(int state) { argument
111 "\n\niterator state = " + state +
114 for(Iterator it = getCommandList(state).iterator(); it.hasNext(); ) {
133 DebuggingSupport.logMessage(this, "iterator play, state="+state);
[all...]
/barrelfish-2018-10-04/lib/tftp/
H A Dclient.c42 /* client state */
43 tftp_st_t state; member in struct:tftp_client
105 if (tftp_client.state == TFTP_ST_LAST_DATA_SENT) {
106 tftp_client.state = TFTP_ST_CLOSED;
114 tftp_client.state = TFTP_ST_LAST_DATA_SENT;
121 tftp_client.state = TFTP_ST_DATA_SENT;
131 tftp_client.state = TFTP_ST_ERROR;
167 tftp_client.state = TFTP_ST_ERROR;
170 tftp_client.state = TFTP_ST_ACK_SENT;
174 TFTP_DEBUG("setting the last ack state\
[all...]
/barrelfish-2018-10-04/lib/zlib/
H A Dinffast.c42 state->mode == LEN
46 state->bits < 8
48 On return, state->mode is one of:
71 struct inflate_state FAR *state; local
97 /* copy state to local variables */
98 state = (struct inflate_state FAR *)strm->state;
105 dmax = state->dmax;
107 wsize = state->wsize;
108 whave = state
[all...]
/barrelfish-2018-10-04/lib/lwip/src/netif/
H A Dslipif.c82 LWIP_ASSERT("netif->state != NULL", (netif->state != NULL));
88 sio_send(SLIP_END, netif->state);
95 sio_send(SLIP_ESC, netif->state);
96 sio_send(SLIP_ESC_END, netif->state);
99 sio_send(SLIP_ESC, netif->state);
100 sio_send(SLIP_ESC_ESC, netif->state);
103 sio_send(c, netif->state);
108 sio_send(SLIP_END, netif->state);
130 LWIP_ASSERT("netif->state !
[all...]
/barrelfish-2018-10-04/lib/posixcompat/
H A Dioctl.c39 struct _pty *state = e->handle; local
44 memcpy(w, &state->winsize, sizeof(struct winsize));
51 memcpy(&state->winsize, w, sizeof(struct winsize));

Completed in 373 milliseconds

1234567891011>>