Lines Matching defs:ul
77 unsigned long ul;
123 ul = strtoul(optarg, &ep, 10);
124 if (*optarg == '\0' || *ep != '\0' || ul == 0)
128 server_limit = ul;
136 ul = strtoul(optarg, &ep, 0);
138 || ul > 0xffff || L2CAP_PSM_INVALID(ul))
141 l2cap_psm = ul;
146 for (ul = 0; ul < __arraycount(services); ul++) {
147 if (strcasecmp(optarg, services[ul].name) == 0)
151 if (ul == __arraycount(services))
155 service_name = services[ul].name;
157 service_class = services[ul].class;