• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/bootp-298/bootplib/

Lines Matching +defs:range +defs:list

77     dynarray_t		list;
263 if (i == (end + 1)) { /* previously exhausted ip range */
299 CFRange range, CFStringEncoding encoding)
304 CFStringGetBytes(cfstr, range, encoding, 0, FALSE, NULL, 0, &len);
309 CFStringGetBytes(cfstr, range, encoding, 0, FALSE, (UInt8 *)str, len, &len);
317 CFRange range;
318 range = CFRangeMake(0, CFStringGetLength(cfstr));
319 return (myCFStringCreateCStringWithRange(cfstr, range, encoding));
594 strlcpy(err, "Could not convert DNS search to string list",
662 CFRange range;
672 range = CFRangeMake(5, CFStringGetLength(this_key));
673 option_name = myCFStringCreateCStringWithRange(this_key, range,
741 OptionTLVRef list, int buf_space)
762 start_options = (char *)list + sizeof(OptionTLV) * count;
773 list[i].tag = tag;
774 list[i].length = this_length;
775 list[i].value = start_options;
793 return (list);
957 /* get the ip range */
980 strlcpy(err, "Invalid '" SUBNET_PROP_NET_RANGE "' range start",
989 strlcpy(err, "Invalid '" SUBNET_PROP_NET_RANGE "' range end",
1078 return (dynarray_count(&subnets->list));
1084 return (dynarray_element(&subnets->list, i));
1116 dynarray_insert(&subnets->list, new_entry, i);
1122 dynarray_add(&subnets->list, new_entry);
1135 SubnetListCreateWithArray(CFArrayRef list)
1142 if (isA_CFArray(list) == NULL) {
1157 dynarray_init(&subnets->list, (void *)SubnetFree, NULL);
1158 count = CFArrayGetCount(list);
1160 CFDictionaryRef dict = CFArrayGetValueAtIndex(list, i);
1198 dynarray_free(&subnets->list);
1304 CFArrayRef list;
1317 list = CFDictionaryGetValue(plist, CFSTR("Subnets"));
1318 subnets = SubnetListCreateWithArray(list);