Lines Matching refs:str
322 char str[32]; in init_device() local
324 LTRACEF("pci location %s\n", pci_loc_string(loc_, str)); in init_device()
341 snprintf(str, sizeof(str), "e1000 %d bar0", unit_); in init_device()
342 err = vmm_alloc_physical(vmm_get_kernel_aspace(), str, 128*1024, &bar0_regs_, 0, in init_device()
368 snprintf(str, sizeof(str), "e1000 %d rxring", unit_); in init_device()
369 …err = vmm_alloc_contiguous(vmm_get_kernel_aspace(), str, rxring_len * sizeof(rdesc), (void **)&rxr… in init_device()
378 snprintf(str, sizeof(str), "e1000 %d txring", unit_); in init_device()
379 …err = vmm_alloc_contiguous(vmm_get_kernel_aspace(), str, txring_len * sizeof(tdesc), (void **)&txr… in init_device()
389 snprintf(str, sizeof(str), "e1000 %d rx buffers", unit_); in init_device()
390 …err = vmm_alloc_contiguous(vmm_get_kernel_aspace(), str, rxring_len * rxbuffer_len, (void **)&rx_b… in init_device()
486 snprintf(str, sizeof(str), "e1000 %d rx worker", unit_); in init_device()
487 rx_worker_thread_ = thread_create(str, wrapper_lambda, this, HIGH_PRIORITY, DEFAULT_STACK_SIZE); in init_device()
556 char str[14]; in e1000_init() local
557 printf("e1000: device at %s failed to initialize\n", pci_loc_string(loc, str)); in e1000_init()