Searched refs:dep (Results 1 – 14 of 14) sorted by relevance
/u-boot/drivers/usb/dwc3/ |
A D | gadget.c | 343 if (dep->number == 0 || dep->number == 1) in dwc3_alloc_trb_pool() 625 strlcat(dep->name, "-control", sizeof(dep->name)); in dwc3_gadget_ep_enable() 628 strlcat(dep->name, "-isoc", sizeof(dep->name)); in dwc3_gadget_ep_enable() 631 strlcat(dep->name, "-bulk", sizeof(dep->name)); in dwc3_gadget_ep_enable() 634 strlcat(dep->name, "-int", sizeof(dep->name)); in dwc3_gadget_ep_enable() 666 snprintf(dep->name, sizeof(dep->name), "ep%d%s", in dwc3_gadget_ep_disable() 688 req->dep = dep; in dwc3_gadget_ep_alloc_request() 1084 if (req->dep != dep) { in dwc3_gadget_ep_queue() 1213 if (dep->number == 0 || dep->number == 1) in dwc3_gadget_ep_set_wedge() 1588 dep = kzalloc(sizeof(*dep), GFP_KERNEL); in dwc3_gadget_init_hw_endpoints() [all …]
|
A D | ep0.c | 71 dep->free_slot++; in dwc3_ep0_start_trans() 106 dep->number); in dwc3_ep0_start_trans() 258 dep = dwc->eps[1]; in dwc3_ep0_stall_and_restart() 262 dep = dwc->eps[0]; in dwc3_ep0_stall_and_restart() 321 return dep; in dwc3_wIndex_to_dep() 368 if (!dep) in dwc3_ep0_handle_status() 382 dwc->ep0_usb_req.dep = dep; in dwc3_ep0_handle_status() 480 if (!dep) in dwc3_ep0_handle_feature() 664 dwc->ep0_usb_req.dep = dep; in dwc3_ep0_set_sel() 949 dep->number); in __dwc3_ep0_do_control_data() [all …]
|
A D | gadget.h | 72 struct dwc3_ep *dep = req->dep; in dwc3_gadget_move_request_queued() local 75 list_move_tail(&req->list, &dep->req_queued); in dwc3_gadget_move_request_queued() 78 void dwc3_gadget_giveback(struct dwc3_ep *dep, struct dwc3_request *req, 88 int __dwc3_gadget_ep_set_halt(struct dwc3_ep *dep, int value, int protocol);
|
A D | core.h | 618 struct dwc3_ep *dep; member
|
/u-boot/scripts/kconfig/ |
A D | menu.c | 108 current_entry->dep = expr_alloc_and(current_entry->dep, dep); in menu_add_dep() 349 menu->dep = basedep; in menu_finalize() 390 dep = expr_transform(dep); in menu_finalize() 391 dep = expr_alloc_and(expr_copy(basedep), dep); in menu_finalize() 392 dep = expr_eliminate_dups(dep); in menu_finalize() 394 dep = expr_trans_bool(dep); in menu_finalize() 452 dep = menu->prompt ? menu->prompt->visible.expr : menu->dep; in menu_finalize() 469 dep = expr_trans_compare(dep, E_UNEQUAL, &symbol_no); in menu_finalize() 470 dep = expr_eliminate_dups(expr_transform(dep)); in menu_finalize() 473 expr_free(dep); in menu_finalize() [all …]
|
A D | lkc.h | 89 void menu_add_dep(struct expr *dep); 90 void menu_add_visibility(struct expr *dep); 91 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep); 92 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep); 93 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
|
A D | expr.h | 49 #define EXPR_NOT(dep) (2-(dep)) argument 253 struct expr *dep; member 307 int expr_contains_symbol(struct expr *dep, struct symbol *sym); 308 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
|
A D | streamline_config.pl | 224 my $dep = $3; 225 if ($dep !~ /^\s*(y|m|n)\s*$/) { 226 $dep =~ s/.*\sif\s+//; 227 $depends{$config} .= " " . $dep; 228 dprint "Added default depends $dep to $config\n";
|
A D | expr.c | 845 if (!dep) in expr_contains_symbol() 848 switch (dep->type) { in expr_contains_symbol() 854 return dep->left.sym == sym; in expr_contains_symbol() 861 return dep->left.sym == sym || in expr_contains_symbol() 862 dep->right.sym == sym; in expr_contains_symbol() 873 if (!dep) in expr_depends_symbol() 876 switch (dep->type) { in expr_depends_symbol() 881 return dep->left.sym == sym; in expr_depends_symbol() 883 if (dep->left.sym == sym) { in expr_depends_symbol() 884 if (dep->right.sym == &symbol_yes || dep->right.sym == &symbol_mod) in expr_depends_symbol() [all …]
|
/u-boot/board/intel/edison/ |
A D | config.mk | 17 HOSTCFLAGS_autoconf.mk.dep = -Wno-variadic-macros
|
/u-boot/scripts/ |
A D | Makefile.autoconf | 11 __all: include/autoconf.mk include/autoconf.mk.dep 47 include/autoconf.mk.dep: include/config.h FORCE
|
/u-boot/tools/buildman/ |
A D | kconfiglib.py | 1053 self.top_node.dep = self.y 1651 elif expr_value(node.dep) and \ 3139 node.dep = self.y 3154 node.dep = self._make_and(node.dep, 3651 dep = cur.dep = self._make_and(cur.dep, basedep) 5690 res = expr_items(self.dep) 5797 if self.dep is not self.kconfig.y: 5871 if self.dep is not sc.kconfig.y: 5887 if self.dep is expr: 6597 for dep in sym._dependents: [all …]
|
/u-boot/ |
A D | Makefile | 605 -include include/autoconf.mk.dep
|
A D | README | 3703 make dep
|
Completed in 49 milliseconds