HelenOS sources
target 88 uspace/app/modplay/modplay.c const char *target = HOUND_DEFAULT_TARGET;
target 105 uspace/app/modplay/modplay.c target = *argv++;
target 149 uspace/app/modplay/modplay.c rc = hound_context_connect_target(hound, target);
target 152 uspace/app/modplay/modplay.c target, str_error(rc));
target 133 uspace/app/top/top.c static const char *read_data(data_t *target)
target 136 uspace/app/top/top.c target->load = NULL;
target 137 uspace/app/top/top.c target->cpus = NULL;
target 138 uspace/app/top/top.c target->cpus_perc = NULL;
target 139 uspace/app/top/top.c target->tasks = NULL;
target 140 uspace/app/top/top.c target->tasks_perc = NULL;
target 141 uspace/app/top/top.c target->threads = NULL;
target 142 uspace/app/top/top.c target->exceptions = NULL;
target 143 uspace/app/top/top.c target->exceptions_perc = NULL;
target 144 uspace/app/top/top.c target->physmem = NULL;
target 145 uspace/app/top/top.c target->ucycles_diff = NULL;
target 146 uspace/app/top/top.c target->kcycles_diff = NULL;
target 147 uspace/app/top/top.c target->ecycles_diff = NULL;
target 148 uspace/app/top/top.c target->ecount_diff = NULL;
target 149 uspace/app/top/top.c target->table.name = NULL;
target 150 uspace/app/top/top.c target->table.num_columns = 0;
target 151 uspace/app/top/top.c target->table.columns = NULL;
target 152 uspace/app/top/top.c target->table.num_fields = 0;
target 153 uspace/app/top/top.c target->table.fields = NULL;
target 159 uspace/app/top/top.c target->hours = (time.tv_sec % DAY) / HOUR;
target 160 uspace/app/top/top.c target->minutes = (time.tv_sec % HOUR) / MINUTE;
target 161 uspace/app/top/top.c target->seconds = time.tv_sec % MINUTE;
target 167 uspace/app/top/top.c target->udays = uptime.tv_sec / DAY;
target 168 uspace/app/top/top.c target->uhours = (uptime.tv_sec % DAY) / HOUR;
target 169 uspace/app/top/top.c target->uminutes = (uptime.tv_sec % HOUR) / MINUTE;
target 170 uspace/app/top/top.c target->useconds = uptime.tv_sec % MINUTE;
target 173 uspace/app/top/top.c target->load = stats_get_load(&(target->load_count));
target 174 uspace/app/top/top.c if (target->load == NULL)
target 178 uspace/app/top/top.c target->cpus = stats_get_cpus(&(target->cpus_count));
target 179 uspace/app/top/top.c if (target->cpus == NULL)
target 182 uspace/app/top/top.c target->cpus_perc =
target 183 uspace/app/top/top.c (perc_cpu_t *) calloc(target->cpus_count, sizeof(perc_cpu_t));
target 184 uspace/app/top/top.c if (target->cpus_perc == NULL)
target 188 uspace/app/top/top.c target->tasks = stats_get_tasks(&(target->tasks_count));
target 189 uspace/app/top/top.c if (target->tasks == NULL)
target 192 uspace/app/top/top.c target->tasks_perc =
target 193 uspace/app/top/top.c (perc_task_t *) calloc(target->tasks_count, sizeof(perc_task_t));
target 194 uspace/app/top/top.c if (target->tasks_perc == NULL)
target 198 uspace/app/top/top.c target->threads = stats_get_threads(&(target->threads_count));
target 199 uspace/app/top/top.c if (target->threads == NULL)
target 203 uspace/app/top/top.c target->exceptions = stats_get_exceptions(&(target->exceptions_count));
target 204 uspace/app/top/top.c if (target->exceptions == NULL)
target 207 uspace/app/top/top.c target->exceptions_perc =
target 208 uspace/app/top/top.c (perc_exc_t *) calloc(target->exceptions_count, sizeof(perc_exc_t));
target 209 uspace/app/top/top.c if (target->exceptions_perc == NULL)
target 213 uspace/app/top/top.c target->physmem = stats_get_physmem();
target 214 uspace/app/top/top.c if (target->physmem == NULL)
target 217 uspace/app/top/top.c target->ucycles_diff = calloc(target->tasks_count,
target 219 uspace/app/top/top.c if (target->ucycles_diff == NULL)
target 223 uspace/app/top/top.c target->kcycles_diff = calloc(target->tasks_count,
target 225 uspace/app/top/top.c if (target->kcycles_diff == NULL)
target 228 uspace/app/top/top.c target->ecycles_diff = calloc(target->exceptions_count,
target 230 uspace/app/top/top.c if (target->ecycles_diff == NULL)
target 233 uspace/app/top/top.c target->ecount_diff = calloc(target->exceptions_count,
target 235 uspace/app/top/top.c if (target->ecount_diff == NULL)
target 535 uspace/app/top/top.c static void free_data(data_t *target)
target 537 uspace/app/top/top.c if (target->load != NULL)
target 538 uspace/app/top/top.c free(target->load);
target 540 uspace/app/top/top.c if (target->cpus != NULL)
target 541 uspace/app/top/top.c free(target->cpus);
target 543 uspace/app/top/top.c if (target->cpus_perc != NULL)
target 544 uspace/app/top/top.c free(target->cpus_perc);
target 546 uspace/app/top/top.c if (target->tasks != NULL)
target 547 uspace/app/top/top.c free(target->tasks);
target 549 uspace/app/top/top.c if (target->tasks_perc != NULL)
target 550 uspace/app/top/top.c free(target->tasks_perc);
target 552 uspace/app/top/top.c if (target->threads != NULL)
target 553 uspace/app/top/top.c free(target->threads);
target 555 uspace/app/top/top.c if (target->exceptions != NULL)
target 556 uspace/app/top/top.c free(target->exceptions);
target 558 uspace/app/top/top.c if (target->exceptions_perc != NULL)
target 559 uspace/app/top/top.c free(target->exceptions_perc);
target 561 uspace/app/top/top.c if (target->physmem != NULL)
target 562 uspace/app/top/top.c free(target->physmem);
target 564 uspace/app/top/top.c if (target->ucycles_diff != NULL)
target 565 uspace/app/top/top.c free(target->ucycles_diff);
target 567 uspace/app/top/top.c if (target->kcycles_diff != NULL)
target 568 uspace/app/top/top.c free(target->kcycles_diff);
target 570 uspace/app/top/top.c if (target->ecycles_diff != NULL)
target 571 uspace/app/top/top.c free(target->ecycles_diff);
target 573 uspace/app/top/top.c if (target->ecount_diff != NULL)
target 574 uspace/app/top/top.c free(target->ecount_diff);
target 576 uspace/app/top/top.c if (target->table.fields != NULL)
target 577 uspace/app/top/top.c free(target->table.fields);
target 121 uspace/app/wavplay/main.c static errno_t hplay(const char *filename, const char *target)
target 160 uspace/app/wavplay/main.c ret = hound_context_connect_target(hound, target);
target 162 uspace/app/wavplay/main.c printf("Failed to connect to target '%s': %s\n", target,
target 253 uspace/app/wavplay/main.c const char *target = HOUND_DEFAULT_TARGET;
target 274 uspace/app/wavplay/main.c target = optarg;
target 352 uspace/app/wavplay/main.c hplay(file, target);
target 134 uspace/dist/src/c/demos/top/top.c static const char *read_data(data_t *target)
target 137 uspace/dist/src/c/demos/top/top.c target->load = NULL;
target 138 uspace/dist/src/c/demos/top/top.c target->cpus = NULL;
target 139 uspace/dist/src/c/demos/top/top.c target->cpus_perc = NULL;
target 140 uspace/dist/src/c/demos/top/top.c target->tasks = NULL;
target 141 uspace/dist/src/c/demos/top/top.c target->tasks_perc = NULL;
target 142 uspace/dist/src/c/demos/top/top.c target->threads = NULL;
target 143 uspace/dist/src/c/demos/top/top.c target->exceptions = NULL;
target 144 uspace/dist/src/c/demos/top/top.c target->exceptions_perc = NULL;
target 145 uspace/dist/src/c/demos/top/top.c target->physmem = NULL;
target 146 uspace/dist/src/c/demos/top/top.c target->ucycles_diff = NULL;
target 147 uspace/dist/src/c/demos/top/top.c target->kcycles_diff = NULL;
target 148 uspace/dist/src/c/demos/top/top.c target->ecycles_diff = NULL;
target 149 uspace/dist/src/c/demos/top/top.c target->ecount_diff = NULL;
target 150 uspace/dist/src/c/demos/top/top.c target->table.name = NULL;
target 151 uspace/dist/src/c/demos/top/top.c target->table.num_columns = 0;
target 152 uspace/dist/src/c/demos/top/top.c target->table.columns = NULL;
target 153 uspace/dist/src/c/demos/top/top.c target->table.num_fields = 0;
target 154 uspace/dist/src/c/demos/top/top.c target->table.fields = NULL;
target 160 uspace/dist/src/c/demos/top/top.c target->hours = (time.tv_sec % DAY) / HOUR;
target 161 uspace/dist/src/c/demos/top/top.c target->minutes = (time.tv_sec % HOUR) / MINUTE;
target 162 uspace/dist/src/c/demos/top/top.c target->seconds = time.tv_sec % MINUTE;
target 168 uspace/dist/src/c/demos/top/top.c target->udays = uptime.tv_sec / DAY;
target 169 uspace/dist/src/c/demos/top/top.c target->uhours = (uptime.tv_sec % DAY) / HOUR;
target 170 uspace/dist/src/c/demos/top/top.c target->uminutes = (uptime.tv_sec % HOUR) / MINUTE;
target 171 uspace/dist/src/c/demos/top/top.c target->useconds = uptime.tv_sec % MINUTE;
target 174 uspace/dist/src/c/demos/top/top.c target->load = stats_get_load(&(target->load_count));
target 175 uspace/dist/src/c/demos/top/top.c if (target->load == NULL)
target 179 uspace/dist/src/c/demos/top/top.c target->cpus = stats_get_cpus(&(target->cpus_count));
target 180 uspace/dist/src/c/demos/top/top.c if (target->cpus == NULL)
target 183 uspace/dist/src/c/demos/top/top.c target->cpus_perc =
target 184 uspace/dist/src/c/demos/top/top.c (perc_cpu_t *) calloc(target->cpus_count, sizeof(perc_cpu_t));
target 185 uspace/dist/src/c/demos/top/top.c if (target->cpus_perc == NULL)
target 189 uspace/dist/src/c/demos/top/top.c target->tasks = stats_get_tasks(&(target->tasks_count));
target 190 uspace/dist/src/c/demos/top/top.c if (target->tasks == NULL)
target 193 uspace/dist/src/c/demos/top/top.c target->tasks_perc =
target 194 uspace/dist/src/c/demos/top/top.c (perc_task_t *) calloc(target->tasks_count, sizeof(perc_task_t));
target 195 uspace/dist/src/c/demos/top/top.c if (target->tasks_perc == NULL)
target 199 uspace/dist/src/c/demos/top/top.c target->threads = stats_get_threads(&(target->threads_count));
target 200 uspace/dist/src/c/demos/top/top.c if (target->threads == NULL)
target 204 uspace/dist/src/c/demos/top/top.c target->exceptions = stats_get_exceptions(&(target->exceptions_count));
target 205 uspace/dist/src/c/demos/top/top.c if (target->exceptions == NULL)
target 208 uspace/dist/src/c/demos/top/top.c target->exceptions_perc =
target 209 uspace/dist/src/c/demos/top/top.c (perc_exc_t *) calloc(target->exceptions_count, sizeof(perc_exc_t));
target 210 uspace/dist/src/c/demos/top/top.c if (target->exceptions_perc == NULL)
target 214 uspace/dist/src/c/demos/top/top.c target->physmem = stats_get_physmem();
target 215 uspace/dist/src/c/demos/top/top.c if (target->physmem == NULL)
target 218 uspace/dist/src/c/demos/top/top.c target->ucycles_diff = calloc(target->tasks_count,
target 220 uspace/dist/src/c/demos/top/top.c if (target->ucycles_diff == NULL)
target 224 uspace/dist/src/c/demos/top/top.c target->kcycles_diff = calloc(target->tasks_count,
target 226 uspace/dist/src/c/demos/top/top.c if (target->kcycles_diff == NULL)
target 229 uspace/dist/src/c/demos/top/top.c target->ecycles_diff = calloc(target->exceptions_count,
target 231 uspace/dist/src/c/demos/top/top.c if (target->ecycles_diff == NULL)
target 234 uspace/dist/src/c/demos/top/top.c target->ecount_diff = calloc(target->exceptions_count,
target 236 uspace/dist/src/c/demos/top/top.c if (target->ecount_diff == NULL)
target 536 uspace/dist/src/c/demos/top/top.c static void free_data(data_t *target)
target 538 uspace/dist/src/c/demos/top/top.c if (target->load != NULL)
target 539 uspace/dist/src/c/demos/top/top.c free(target->load);
target 541 uspace/dist/src/c/demos/top/top.c if (target->cpus != NULL)
target 542 uspace/dist/src/c/demos/top/top.c free(target->cpus);
target 544 uspace/dist/src/c/demos/top/top.c if (target->cpus_perc != NULL)
target 545 uspace/dist/src/c/demos/top/top.c free(target->cpus_perc);
target 547 uspace/dist/src/c/demos/top/top.c if (target->tasks != NULL)
target 548 uspace/dist/src/c/demos/top/top.c free(target->tasks);
target 550 uspace/dist/src/c/demos/top/top.c if (target->tasks_perc != NULL)
target 551 uspace/dist/src/c/demos/top/top.c free(target->tasks_perc);
target 553 uspace/dist/src/c/demos/top/top.c if (target->threads != NULL)
target 554 uspace/dist/src/c/demos/top/top.c free(target->threads);
target 556 uspace/dist/src/c/demos/top/top.c if (target->exceptions != NULL)
target 557 uspace/dist/src/c/demos/top/top.c free(target->exceptions);
target 559 uspace/dist/src/c/demos/top/top.c if (target->exceptions_perc != NULL)
target 560 uspace/dist/src/c/demos/top/top.c free(target->exceptions_perc);
target 562 uspace/dist/src/c/demos/top/top.c if (target->physmem != NULL)
target 563 uspace/dist/src/c/demos/top/top.c free(target->physmem);
target 565 uspace/dist/src/c/demos/top/top.c if (target->ucycles_diff != NULL)
target 566 uspace/dist/src/c/demos/top/top.c free(target->ucycles_diff);
target 568 uspace/dist/src/c/demos/top/top.c if (target->kcycles_diff != NULL)
target 569 uspace/dist/src/c/demos/top/top.c free(target->kcycles_diff);
target 571 uspace/dist/src/c/demos/top/top.c if (target->ecycles_diff != NULL)
target 572 uspace/dist/src/c/demos/top/top.c free(target->ecycles_diff);
target 574 uspace/dist/src/c/demos/top/top.c if (target->ecount_diff != NULL)
target 575 uspace/dist/src/c/demos/top/top.c free(target->ecount_diff);
target 577 uspace/dist/src/c/demos/top/top.c if (target->table.fields != NULL)
target 578 uspace/dist/src/c/demos/top/top.c free(target->table.fields);
target 150 uspace/drv/bus/usb/ehci/ehci_rh.c batch->error = virthub_base_request(&instance->base, batch->target,
target 209 uspace/drv/bus/usb/ehci/ehci_rh.c batch->error = virthub_base_request(&instance->base, batch->target,
target 299 uspace/drv/bus/usb/ehci/hc.c if (batch->target.address == ehci_rh_get_address(&hc->rh)) {
target 297 uspace/drv/bus/usb/ohci/hc.c if (batch->target.address == ohci_rh_get_address(&hc->rh)) {
target 183 uspace/drv/bus/usb/ohci/ohci_rh.c batch->error = virthub_base_request(&instance->base, batch->target,
target 234 uspace/drv/bus/usb/ohci/ohci_rh.c batch->error = virthub_base_request(&instance->base, batch->target,
target 582 uspace/drv/bus/usb/uhci/hc.c if (batch->target.address == uhci_rh_get_address(&hc->rh))
target 69 uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.c bool low_speed, usb_target_t target, usb_packet_id pid, const void *buffer,
target 98 uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.c ((target.address & TD_DEVICE_ADDRESS_MASK) <<
target 100 uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.c ((target.endpoint & TD_DEVICE_ENDPOINT_MASK) <<
target 101 uspace/drv/bus/usb/uhci/hw_struct/transfer_descriptor.h bool iso, bool low_speed, usb_target_t target, usb_packet_id pid,
target 243 uspace/drv/bus/usb/uhci/uhci_batch.c toggle, false, low_speed, uhci_batch->base.target, pid, buffer, next_td);
target 288 uspace/drv/bus/usb/uhci/uhci_batch.c const usb_target_t target = uhci_batch->base.target;
target 294 uspace/drv/bus/usb/uhci/uhci_batch.c low_speed, target, USB_PID_SETUP,
target 308 uspace/drv/bus/usb/uhci/uhci_batch.c toggle, false, low_speed, target, data_stage_pid,
target 323 uspace/drv/bus/usb/uhci/uhci_batch.c target, status_stage_pid, NULL, NULL);
target 108 uspace/drv/bus/usb/uhci/uhci_rh.c batch->error = virthub_base_request(&instance->base, batch->target,
target 68 uspace/drv/bus/usb/usbdiag/device.c #define _MAP_EP(target, ep_no) do {\
target 75 uspace/drv/bus/usb/usbdiag/device.c target = &epm->pipe;\
target 43 uspace/drv/bus/usb/vhc/transfer.c if (transfer->batch.target.endpoint != 0) {
target 220 uspace/drv/bus/usb/vhc/transfer.c if (dev->address == transfer->batch.target.address) {
target 757 uspace/drv/bus/usb/xhci/hc.c void hc_ring_doorbell(xhci_hc_t *hc, unsigned doorbell, unsigned target)
target 760 uspace/drv/bus/usb/xhci/hc.c uint32_t v = host2xhci(32, target & BIT_RRANGE(uint32_t, 7));
target 762 uspace/drv/bus/usb/xhci/hc.c usb_log_debug2("Ringing doorbell %d (target: %d)", doorbell, target);
target 780 uspace/drv/bus/usb/xhci/hc.c const uint32_t target = (stream_id << 16) | (dci & 0x1ff);
target 781 uspace/drv/bus/usb/xhci/hc.c hc_ring_doorbell(hc, dev->slot_id, target);
target 119 uspace/drv/bus/usb/xhci/transfers.c return xhci_endpoint_get_ring(xhci_ep, transfer->batch.target.stream);
target 432 uspace/drv/bus/usb/xhci/transfers.c if (!batch->target.address) {
target 508 uspace/drv/bus/usb/xhci/transfers.c hc_ring_ep_doorbell(xhci_ep, batch->target.stream);
target 75 uspace/drv/nic/ar9271/ath_usb.c #define _MAP_EP(target, ep_no) do {\
target 82 uspace/drv/nic/ar9271/ath_usb.c target = &epm->pipe;\
target 71 uspace/lib/c/include/io/pixelmap.h pixel_t *target = pixelmap_pixel_at(pixelmap, x, y);
target 72 uspace/lib/c/include/io/pixelmap.h if (target != NULL) {
target 73 uspace/lib/c/include/io/pixelmap.h *target = pixel;
target 153 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp auto [bucket, target, idx] = table.find_insertion_spot(key);
target 158 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp if (target && table.keys_equal(key, target->value))
target 165 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp target
target 194 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp auto [bucket, target, idx] = table.find_insertion_spot(key);
target 199 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp if (target && table.keys_equal(key, target->value))
target 206 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp target
target 236 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp auto [bucket, target, idx] = table.find_insertion_spot(key);
target 241 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp if (target && table.keys_equal(key, target->value))
target 248 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp target
target 445 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp auto [bucket, target, idx] = table.find_insertion_spot(key);
target 450 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp if (target && table.keys_equal(key, target->value))
target 451 uspace/lib/cpp/include/__bits/adt/hash_table_policies.hpp target->append(node);
target 685 uspace/lib/cpp/include/__bits/adt/list.hpp auto target = head_->prev;
target 687 uspace/lib/cpp/include/__bits/adt/list.hpp if (!target)
target 694 uspace/lib/cpp/include/__bits/adt/list.hpp auto tmp = target;
target 695 uspace/lib/cpp/include/__bits/adt/list.hpp target->prev->next = target->next;
target 696 uspace/lib/cpp/include/__bits/adt/list.hpp target->next->prev = target->prev;
target 697 uspace/lib/cpp/include/__bits/adt/list.hpp target = target->next;
target 872 uspace/lib/cpp/include/__bits/adt/list.hpp auto target = it.node();
target 875 uspace/lib/cpp/include/__bits/adt/list.hpp target->prev->next = target->next;
target 876 uspace/lib/cpp/include/__bits/adt/list.hpp target->next->prev = target->prev;
target 879 uspace/lib/cpp/include/__bits/adt/list.hpp node->prev->next = target;
target 880 uspace/lib/cpp/include/__bits/adt/list.hpp target->prev = node->prev;
target 882 uspace/lib/cpp/include/__bits/adt/list.hpp node->prev = target;
target 883 uspace/lib/cpp/include/__bits/adt/list.hpp target->next = node;
target 949 uspace/lib/cpp/include/__bits/adt/list.hpp auto target = position.node();
target 950 uspace/lib/cpp/include/__bits/adt/list.hpp target->prev->next = first_node;
target 951 uspace/lib/cpp/include/__bits/adt/list.hpp first_node->prev = target->prev;
target 953 uspace/lib/cpp/include/__bits/adt/list.hpp target->prev = last_node;
target 954 uspace/lib/cpp/include/__bits/adt/list.hpp last_node->next = target;
target 319 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp auto [bucket, target, idx] = table_.find_insertion_spot(key);
target 324 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp if (target && table_.keys_equal(key, target->value))
target 331 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp target
target 354 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp auto [bucket, target, idx] = table_.find_insertion_spot(key);
target 359 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp if (target && table_.keys_equal(key, target->value))
target 366 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp target
target 401 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp auto [bucket, target, idx] = table_.find_insertion_spot(key);
target 406 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp if (target && table_.keys_equal(key, target->value))
target 409 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp target->value.second = forward<T>(val);
target 414 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp target
target 437 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp auto [bucket, target, idx] = table_.find_insertion_spot(key);
target 442 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp if (target && table_.keys_equal(key, target->value))
target 445 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp target->value.second = forward<T>(val);
target 450 uspace/lib/cpp/include/__bits/adt/unordered_map.hpp target
target 542 uspace/lib/cpp/include/__bits/adt/vector.hpp void destroy_from_end_until_(iterator target)
target 547 uspace/lib/cpp/include/__bits/adt/vector.hpp while(last != target)
target 398 uspace/lib/cpp/src/__bits/test/string.cpp std::string target{"ABC"};
target 403 uspace/lib/cpp/src/__bits/test/string.cpp auto idx = str1.find(target, 0);
target 409 uspace/lib/cpp/src/__bits/test/string.cpp idx = str1.find(target, 3);
target 415 uspace/lib/cpp/src/__bits/test/string.cpp idx = str1.rfind(target, miss);
target 421 uspace/lib/cpp/src/__bits/test/string.cpp idx = str1.rfind(target, 1);
target 441 uspace/lib/cpp/src/__bits/test/string.cpp idx = str2.find(target, 0);
target 447 uspace/lib/cpp/src/__bits/test/string.cpp idx = str2.find(target, 5);
target 453 uspace/lib/cpp/src/__bits/test/string.cpp idx = str2.rfind(target, miss);
target 459 uspace/lib/cpp/src/__bits/test/string.cpp idx = str2.rfind(target, 6);
target 467 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_of(target);
target 473 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_of(target, 6);
target 485 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_first_of(target, 9);
target 509 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of(target);
target 515 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of(target, 6);
target 527 uspace/lib/cpp/src/__bits/test/string.cpp idx = str3.find_last_of(target, 1);
target 55 uspace/lib/ext4/src/bitmap.c uint8_t *target = bitmap + byte_index;
target 57 uspace/lib/ext4/src/bitmap.c *target &= ~(1 << bit_index);
target 71 uspace/lib/ext4/src/bitmap.c uint8_t *target;
target 81 uspace/lib/ext4/src/bitmap.c target = bitmap + byte_index;
target 82 uspace/lib/ext4/src/bitmap.c *target &= ~(1 << bit_index);
target 95 uspace/lib/ext4/src/bitmap.c target = bitmap + byte_index;
target 99 uspace/lib/ext4/src/bitmap.c *target = 0;
target 103 uspace/lib/ext4/src/bitmap.c target++;
target 113 uspace/lib/ext4/src/bitmap.c target = bitmap + byte_index;
target 114 uspace/lib/ext4/src/bitmap.c *target &= ~(1 << bit_index);
target 132 uspace/lib/ext4/src/bitmap.c uint8_t *target = bitmap + byte_index;
target 134 uspace/lib/ext4/src/bitmap.c *target |= 1 << bit_index;
target 150 uspace/lib/ext4/src/bitmap.c uint8_t *target = bitmap + byte_index;
target 152 uspace/lib/ext4/src/bitmap.c if (*target & (1 << bit_index))
target 63 uspace/lib/hound/include/hound/client.h errno_t hound_context_connect_target(hound_context_t *hound, const char *target);
target 64 uspace/lib/hound/include/hound/client.h errno_t hound_context_disconnect_target(hound_context_t *hound, const char *target);
target 234 uspace/lib/hound/src/client.c errno_t hound_context_connect_target(hound_context_t *hound, const char *target)
target 237 uspace/lib/hound/src/client.c assert(target);
target 242 uspace/lib/hound/src/client.c if (str_cmp(target, HOUND_DEFAULT_TARGET) == 0) {
target 248 uspace/lib/hound/src/client.c target = tgt[0];
target 254 uspace/lib/hound/src/client.c hound->session, target, hound->name);
target 257 uspace/lib/hound/src/client.c hound->session, hound->name, target);
target 271 uspace/lib/hound/src/client.c errno_t hound_context_disconnect_target(hound_context_t *hound, const char *target)
target 274 uspace/lib/hound/src/client.c assert(target);
target 278 uspace/lib/hound/src/client.c hound->session, target, hound->name);
target 281 uspace/lib/hound/src/client.c hound->session, hound->name, target);
target 71 uspace/lib/posix/include/libc/io/pixelmap.h pixel_t *target = pixelmap_pixel_at(pixelmap, x, y);
target 72 uspace/lib/posix/include/libc/io/pixelmap.h if (target != NULL) {
target 73 uspace/lib/posix/include/libc/io/pixelmap.h *target = pixel;
target 134 uspace/lib/usb/include/usb/usb.h static inline bool usb_target_is_valid(const usb_target_t *target)
target 136 uspace/lib/usb/include/usb/usb.h return usb_address_is_valid(target->address) &&
target 137 uspace/lib/usb/include/usb/usb.h usb_endpoint_is_valid(target->endpoint);
target 162 uspace/lib/usbhost/include/usb/host/bus.h usb_target_t target;
target 59 uspace/lib/usbhost/include/usb/host/usb_transfer_batch.h usb_target_t target;
target 561 uspace/lib/usbhost/src/bus.c assert(usb_target_is_valid(&request->target));
target 583 uspace/lib/usbhost/src/bus.c assert(device->address == request->target.address);
target 586 uspace/lib/usbhost/src/bus.c endpoint_t *ep = bus_find_endpoint(device, request->target.endpoint, request->dir);
target 589 uspace/lib/usbhost/src/bus.c device->address, request->target.endpoint, request->name);
target 642 uspace/lib/usbhost/src/bus.c errno_t bus_device_send_batch_sync(device_t *device, usb_target_t target,
target 652 uspace/lib/usbhost/src/bus.c .target = target,
target 284 uspace/lib/usbhost/src/ddf_helpers.c const usb_target_t target = {
target 292 uspace/lib/usbhost/src/ddf_helpers.c if (!usb_target_is_valid(&target))
target 305 uspace/lib/usbhost/src/ddf_helpers.c .target = target,
target 216 uspace/lib/usbhost/src/endpoint.c req->target.address, req->target.endpoint,
target 221 uspace/lib/usbhost/src/endpoint.c req->target.address, req->target.endpoint,
target 261 uspace/lib/usbhost/src/endpoint.c batch->target = req->target;
target 65 uspace/lib/usbvirt/include/usbvirt/virthub_base.h errno_t virthub_base_request(virthub_base_t *instance, usb_target_t target,
target 111 uspace/lib/usbvirt/src/virthub_base.c errno_t virthub_base_request(virthub_base_t *instance, usb_target_t target,
target 119 uspace/lib/usbvirt/src/virthub_base.c if (target.address != virthub_base_get_address(instance))
target 124 uspace/lib/usbvirt/src/virthub_base.c if (target.endpoint == 0) {
target 130 uspace/lib/usbvirt/src/virthub_base.c USB_TRANSFER_INTERRUPT, target.endpoint,
target 134 uspace/lib/usbvirt/src/virthub_base.c if (target.endpoint == 0) {
target 99 uspace/srv/net/inetsrv/ndp.c inet_addr_t target;
target 100 uspace/srv/net/inetsrv/ndp.c inet_addr_set6(packet.target_proto_addr, &target);
target 109 uspace/srv/net/inetsrv/ndp.c laddr = inet_addrobj_find(&target, iaf_addr);
HelenOS homepage, sources at GitHub