Searched refs:record (Results 1 - 25 of 92) sorted by relevance

1234

/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DRecordableCommand.java31 public void record() { method in class:RecordableCommand
39 record();
/barrelfish-2018-10-04/usr/tests/octopus/
H A Dd2barrier.c31 char* record = NULL; local
34 err = oct_barrier_enter("my_barrier", &record, wait_for);
37 debug_printf("Barrier record is: %s\n", record);
43 err = oct_barrier_leave(record);
48 free(record);
H A Dd2trigger.c30 static void trigger_handler(octopus_mode_t m, char* record, void* state) argument
34 debug_printf("trigger_handler got: %s\n", record);
38 free(record);
41 static void persistent_trigger(octopus_mode_t m, char* record, void* state) { argument
46 debug_printf("persistent_trigger ON SET: %s\n", record);
49 debug_printf("persistent_trigger ON DEL: %s\n", record);
52 debug_printf("persistent trigger CLEANUP: %s\n", record);
53 assert(record == NULL);
56 free(record);
H A Dd2bench1.c43 char record[300]; local
44 sprintf(record, "rec { attr: '%s' }", payload);
45 printf("record is: %s\n", record);
47 errval_t err = oct_set(record);
62 //DEBUG_ERR(error_code, "got record");
67 cl->call_seq.set(cl, record, SET_DEFAULT, NOP_TRIGGER, false, &reply, &tid, &error_code);
69 //DEBUG_ERR(error_code, "set record");
H A Dd2pubsub.c26 static void message_handler(oct_mode_t mode, char* record, void* st) argument
35 debug_printf("Message: %s received: %zx\n", record, *received);
37 errval_t err = oct_read(record, "%s", &name);
43 free(record);
/barrelfish-2018-10-04/lib/octopus/client/
H A Dnameservice_client.c30 char* record = NULL;
31 err = oct_get(&record, iface);
38 err = oct_read(record, "_ { iref: %d }", &iref_number);
45 free(record);
53 char* record = NULL;
66 err = cl->call_seq.get(cl, iface, &record, t, &error_code);
72 assert(record == NULL);
73 cl->recv.trigger(cl, &mode, &fn, &state, &record);
78 assert(record != NULL);
81 err = oct_read(record, "
[all...]
H A Dpubsub.c35 uint64_t fn, octopus_mode_t mode, const char *record,
45 handler_fn(mode, record, state);
49 id, record);
56 * \param[in] function Handler function in case a matching record is
61 * \param ... Additional arguments to format the record using vsprintf.
124 * \brief Publishes a record.
126 * \param record The record to publish.
127 * \param ... Additional arguments to format the record using vsprintf.
133 errval_t oct_publish(const char *record, argument
34 subscription_handler(struct octopus_binding *b, subscription_t id, uint64_t fn, octopus_mode_t mode, const char *record, uint64_t st) argument
[all...]
H A Dtrigger.c31 uint64_t t, octopus_mode_t mode, const char* record, uint64_t st)
40 trigger_fn(mode, record, state);
44 id, record);
105 char* record = NULL; // freed by cpu_change_event local
129 err = oct_get(&record, names[i]);
133 event_handler(OCT_ON_SET, record, state);
140 DEBUG_ERR(err, "Unable to retrieve core record for %s", names[i]);
30 trigger_handler(struct octopus_binding* b, octopus_trigger_id_t id, uint64_t t, octopus_mode_t mode, const char* record, uint64_t st) argument
H A Dgetset.c35 * \brief Retrieve all record names matching a given query.
81 * \brief Gets one record matching the given query.
128 * \brief Sets a record.
130 * \param query The record to set.
163 * \brief Sets a record.
165 * \param query The record to set.
199 * \brief Sets a record and returns and in case of no error
202 * Additonally the mode how a record is set can be specified.
205 * \param[out] record The new record
217 oct_set_get(oct_mode_t mode, char** record, const char* query, ...) argument
399 oct_wait_for(char** record, const char *query, ...) argument
[all...]
H A Dsemaphores.c32 char* record = NULL; local
41 err = oct_get(&record, "sem.ids { current_id: _ }");
43 err = oct_read(record, "_ { current_id: %d }", &id);
61 free(record);
123 // No record found, wait until one is posted
145 // Return with no record error to caller
/barrelfish-2018-10-04/usr/kaluga/
H A Ddriver_startup.h15 char* record, struct driver_argument * int_arg);
17 errval_t newstyle_start_function(coreid_t where, struct module_info* driver, char* record,
21 default_start_function_new(coreid_t where, struct module_info* mi, char* record,
H A Dstart_cpu.h12 char* record, struct driver_argument * int_arg);
H A Dstart_cpu.c39 static void cpu_change_event(octopus_mode_t mode, const char* record, void* state) argument
42 KALUGA_DEBUG("CPU found: %s\n", record);
44 /* try to extract basic information from the record */
46 errval_t err = oct_read(record, "_ { " HW_PROCESSOR_GENERIC_FIELDS " }",
49 DEBUG_ERR(err, "Cannot read record.");
50 printf("Malformed CPU record. Do not boot discovered CPU %"PRIu64".\n",
58 err = mi->start_function(0, mi, (CONST_CAST)record, NULL);
67 KALUGA_DEBUG("CPU removed: %s\n", record);
91 static void delete_inheritcn(octopus_mode_t mode, const char *record, void *state) argument
117 char* record, struc
116 start_boot_driver(coreid_t where, struct module_info* mi, char* record, struct driver_argument * int_arg) argument
235 spawnd_change_event(octopus_mode_t mode, const char* record, void* state) argument
265 char* record = NULL; local
[all...]
H A Ddriver_startup.c47 char* record, struct driver_argument * arg)
77 err = oct_read(record, "_ { bus: %d, device: %d, function: %d, vendor: %d, device_id: %d }",
136 default_start_function_new(coreid_t where, struct module_info* mi, char* record, argument
165 err = oct_read(record, "%s { bus: %d, device: %d, function: %d, vendor: %d, device_id: %d }",
242 char* record, struct driver_argument * int_arg)
257 err = default_start_function_new(where, driver, record, int_arg);
276 err = oct_read(record, "_ { bus: %d, device: %d, function: %d, vendor: %d, device_id: %d }",
309 char* record, struct driver_argument * arg)
318 err = oct_read(record, "_ { bus: %d, device: %d, function: %d, vendor: %d, device_id: %d }",
350 err = oct_read(record, "
45 default_start_function(coreid_t where, struct module_info* mi, char* record, struct driver_argument * arg) argument
240 start_networking_new(coreid_t where, struct module_info* driver, char* record, struct driver_argument * int_arg) argument
307 start_networking(coreid_t core, struct module_info* driver, char* record, struct driver_argument * arg) argument
[all...]
/barrelfish-2018-10-04/include/octopus/
H A Dpubsub.h21 typedef void(*subscription_handler_fn)(octopus_mode_t mode, const char* record, void* state);
H A Dtrigger.h27 typedef void(*trigger_handler_fn)(octopus_mode_t mode, const char* record, void* state);
/barrelfish-2018-10-04/lib/libc/gen/
H A Dgetcap.c65 static char *toprec; /* Additional record specified by cgetset() */
98 * Cgetcap searches the capability record buf for the capability cap with
152 * Cgetent extracts the capability record name from the NULL terminated file
156 * -1 if the requested record couldn't be found, -2 if a system error was
175 * pointer to a malloc'ed capability record with all tc= capabilities fully
193 char *record, *cbuf; local
205 * Check if we have a top record from cgetset().
208 if ((record = malloc (topreclen + BFRAG)) == NULL) {
212 (void)strcpy(record, toprec);
215 rp = record
[all...]
/barrelfish-2018-10-04/usr/skb/octopus/
H A Dcode_generator.h28 errval_t transform_record(struct ast_object* ast, struct skb_ec_terms* record);
/barrelfish-2018-10-04/lib/net/
H A Ddhcp.c155 char* record = NULL; local
156 err = oct_get(&record, "net.current_ip");
159 err = oct_wait_for(&record, NET_CONFIG_CURRENT_IP_RECORD_REGEX);
164 DEBUG_ERR(err, "cannot get static ip record\n");
169 err = oct_read(record, "_" NET_CONFIG_IP_RECORD_FIELDS, &ip, &gw, &nm);
171 DEBUG_ERR(err, "cannot read current ip record '%s\n", record);
172 free(record);
175 free(record);
211 char* record local
[all...]
/barrelfish-2018-10-04/usr/skb/skb_simple/
H A Doctopus_stubs.c43 struct record { struct
45 struct ast_object* record; member in struct:record
49 static struct record record_storage[MAX_RECORDS] = { { NULL, NULL, NULL } };
147 OCT_DEBUG("get record %s\n", RECORD_NAME(ast));
152 struct record* entry = &record_storage[i];
157 if (strcmp(RECORD_NAME(ast), entry->name) == 0 && entry->record != NULL) {
158 transform_to_string(entry->record, sqs->std_out.buffer);
166 static void wakeup_clients(struct record* entry)
175 transform_to_string(entry->record,
197 struct record* entr
[all...]
/barrelfish-2018-10-04/lib/xeon_phi/
H A Dxeon_phi_domain.c153 err = r->rpc_tx_vtbl.wait_for(r, iface, reply.record, &reply.error_code);
166 err = oct_read(reply.record, "_ { domid: %d }", &domid);
199 // Format record
202 char* record = malloc(len+1);
203 if (record == NULL) {
206 snprintf(record, len+1, format, iface, domid);
210 err = r->rpc_tx_vtbl.set(r, record, 0, NOP_TRIGGER, 0, NULL, &tid, &error_code);
217 free(record);
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Ddomain.c37 const char* record,
47 err = oct_read(record, "_ { domid: %d }", &domid);
179 // Format record
182 char* record = malloc(len + 1); local
183 if (record == NULL) {
186 snprintf(record, len + 1, format, iface, domid);
190 err = r->rpc_tx_vtbl.set(r, record, 0, NOP_TRIGGER, 0, NULL, &tid, &error_code);
196 out: free(record);
36 domain_wait_trigger_handler(octopus_mode_t mode, const char* record, void* state) argument
/barrelfish-2018-10-04/lib/barrelfish/
H A Dnameservice_client.c85 err = r->rpc_tx_vtbl.wait_for(r, iface, reply.record, &reply.error_code);
98 err = oct_read(reply.record, "_ { iref: %d }", &iref_number);
126 // Format record
129 char* record = malloc(len+1); local
130 if (record == NULL) {
133 snprintf(record, len+1, format, iface, iref);
137 err = r->rpc_tx_vtbl.set(r, record, 0, NOP_TRIGGER, 0, NULL, &tid, &error_code);
144 free(record);
/barrelfish-2018-10-04/lib/spawndomain/
H A Dspawn_omp.c322 // Format record
325 char* record = malloc(len + 1); local
326 if (record == NULL) {
329 snprintf(record, len + 1, format, binary, idx, symname, address);
332 if (record[i] >= 'A' && record[i] <= 'Z') {
333 record[i] -= ('A' - 'a');
339 err = r->rpc_tx_vtbl.set(r, record, 0, NOP_TRIGGER,
347 free(record);
/barrelfish-2018-10-04/lib/octopus/parser/
H A Dparse.y59 %type <nPtr> record
68 record { ((struct oct_parser_state*) data)->ast = $1; YYACCEPT; }
70 record: label

Completed in 184 milliseconds

1234