| /src/release/scripts/ |
| H A D | pkgbase-stage.lua | 33 local components = {} 38 components[set] = package 40 components["kernel"] = package 42 components["kernel-dbg"] = package 44 components["pkg"] = package 47 assert(components["kernel"]) 48 assert(components["base"]) 49 assert(components["pkg"]) 53 table.insert(selected, components["pkg"]) 54 table.insert(selected, components["base"]) [all …]
|
| /src/usr.sbin/acpi/ |
| H A D | Makefile.inc | 15 ${ACPICA_DIR}/components/debugger \ 16 ${ACPICA_DIR}/components/disassembler \ 17 ${ACPICA_DIR}/components/dispatcher \ 18 ${ACPICA_DIR}/components/events \ 19 ${ACPICA_DIR}/components/executer \ 20 ${ACPICA_DIR}/components/hardware \ 21 ${ACPICA_DIR}/components/namespace \ 22 ${ACPICA_DIR}/components/parser \ 23 ${ACPICA_DIR}/components/resources \ 24 ${ACPICA_DIR}/components/tables \ [all …]
|
| /src/crypto/openssl/util/perl/OpenSSL/ |
| H A D | OID.pm | 156 my @components; 159 @components = ( $oid =~ m/${objcomponent_re}\s*/g ); 162 @components = ( $oid =~ m/${xmlobjcomponent_re}\.?/g ); 165 croak "Invalid ASN.1 object '$input'" unless @components; 167 unless scalar(@components) % 2 == 0; 178 } ( @components[0..1] ); 188 } @components[2..$#components] 194 if (scalar @components > 2 195 && $components[0] ne '' 196 && defined $name2oid{$components[0]}) { [all …]
|
| /src/lib/libc/locale/ |
| H A D | xlocale.c | 180 if (loc->components[type]) { in destruct_locale() 181 xlocale_release(loc->components[type]); in destruct_locale() 221 struct xlocale_component *src = base->components[type]; in dupcomponent() 224 new->components[type] = constructors[type](src->locale, new); in dupcomponent() 225 if (new->components[type]) { in dupcomponent() 226 strncpy(new->components[type]->locale, src->locale, in dupcomponent() 228 strncpy(new->components[type]->version, src->version, in dupcomponent() 231 } else if (base->components[type]) { in dupcomponent() 232 new->components[type] = xlocale_retain(base->components[type]); in dupcomponent() 240 return (0 != new->components[type]); in dupcomponent() [all …]
|
| /src/sys/geom/virstor/ |
| H A D | g_virstor.c | 307 fcp = sc->components[0].gcons; in virstor_ctl_add() 362 if (strcmp(sc->components[j].gcons->provider->name, in virstor_ctl_add() 371 sc->components = realloc(sc->components, in virstor_ctl_add() 372 sizeof(*sc->components) * (sc->n_components + 1), in virstor_ctl_add() 376 sc->components[nc].gcons = cp; in virstor_ctl_add() 377 sc->components[nc].sc = sc; in virstor_ctl_add() 378 sc->components[nc].index = nc; in virstor_ctl_add() 379 sc->components[nc].chunk_count = cp->provider->mediasize / in virstor_ctl_add() 381 sc->components[nc].chunk_next = 0; in virstor_ctl_add() 382 sc->components[nc].chunk_reserved = 0; in virstor_ctl_add() [all …]
|
| /src/crypto/heimdal/lib/asn1/ |
| H A D | der_format.c | 117 p = rk_strpoolprintf(p, "%d", oid->components[i]); in der_print_heim_oid() 140 data->components = NULL; in der_parse_heim_oid() 151 c = realloc(data->components, in der_parse_heim_oid() 152 (data->length + 1) * sizeof(data->components[0])); in der_parse_heim_oid() 158 data->components = c; in der_parse_heim_oid() 166 data->components[data->length++] = l; in der_parse_heim_oid()
|
| H A D | der_copy.c | 179 to->components = malloc(to->length * sizeof(*to->components)); in der_copy_oid() 180 if (to->length != 0 && to->components == NULL) in der_copy_oid() 182 memcpy(to->components, from->components, in der_copy_oid() 183 to->length * sizeof(*to->components)); in der_copy_oid()
|
| H A D | der_cmp.c | 41 return memcmp(p->components, in der_heim_oid_cmp() 42 q->components, in der_heim_oid_cmp() 43 p->length * sizeof(*p->components)); in der_heim_oid_cmp()
|
| /src/contrib/lib9p/pytest/ |
| H A D | p9conn.py | 827 def lookup(self, fid, components): argument 843 if (isinstance(components, (str, bytes) or 844 not all(isinstance(i, bytes) for i in components))): 846 'components {1!r}'.format(self, components)) 851 nwname=len(components), wname=components) 857 '{1}'.format(components, self.getpathX(fid)), 861 if resp.nwqid > len(components): 866 'items'.format(self, components, 868 if resp.nwqid < len(components): 872 missing = components[resp.nwqid] [all …]
|
| /src/usr.sbin/bsdinstall/scripts/ |
| H A D | pkgbase.in | 78 local function select_components(components, options) 104 -- Sorting the components is necessary to ensure that the ordering is 108 -- Determine which components we want to offer the user. 152 for component, _ in pairs(components) do 204 if components["pkg"] then 221 -- These are the components which aren't generated automatically from 264 local selected = select_components(components, options) 277 local pkglist = components[component]
|
| /src/sys/dev/usb/input/ |
| H A D | atp.c | 650 fg_stroke_component_t components[NUM_AXES]; member 1406 if (strokep->components[axis].matched) in fg_match_strokes_against_pspans() 1414 &strokep->components[axis], &pspans[i], in fg_match_strokes_against_pspans() 1417 strokep->components[axis].matched = true; in fg_match_strokes_against_pspans() 1503 strokep->components[X].matched = false; in fg_update_strokes() 1504 strokep->components[Y].matched = false; in fg_update_strokes() 1552 if (strokep->components[X].matched && in fg_update_strokes() 1553 strokep->components[Y].matched) { in fg_update_strokes() 1556 strokep->components[X].delta_mickeys; in fg_update_strokes() 1558 strokep->components[Y].delta_mickeys; in fg_update_strokes() [all …]
|
| /src/usr.sbin/periodic/etc/daily/ |
| H A D | 407.status-graid3 | 19 components="$(graid3 status -s | fgrep -v COMPLETE)" 20 if [ "${components}" ]; then
|
| H A D | 408.status-gstripe | 19 components="$(gstripe status -s | fgrep -v UP)" 20 if [ "${components}" ]; then
|
| H A D | 406.status-gmirror | 19 components="$(gmirror status -s | fgrep -v COMPLETE)" 20 if [ "${components}" ]; then
|
| H A D | 409.status-gconcat | 19 components="$(gconcat status -s | fgrep -v UP)" 20 if [ "${components}" ]; then
|
| H A D | 401.status-graid | 19 components="$(graid status -s | fgrep -v OPTIMAL)" 20 if [ "${components}" ]; then
|
| /src/contrib/libevent/cmake/ |
| H A D | LibeventConfig.cmake.in | 3 # LIBEVENT_FOUND - true if libevent and all required components found on the system 4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system 15 # When you try to locate the libevent libraries, you should specify which components you want to us… 16 # The following table lists all available components. If none is given, all imported targets will u… 24 # If no component provided, all components will be used. 76 "The valid components are core, extra${pthreadlib} and openssl.")
|
| /src/contrib/ntp/sntp/libevent/cmake/ |
| H A D | LibeventConfig.cmake.in | 3 # LIBEVENT_FOUND - true if libevent and all required components found on the system 4 # LIBEVENT_xxx_FOUND - true if component xxx(see available components) found on the system 15 # When you try to locate the libevent libraries, you should specify which components you want to us… 16 # The following table lists all available components. If none is given, all imported targets will u… 24 # If no component provided, all components will be used. 76 "The valid components are core, extra${pthreadlib} and openssl.")
|
| /src/kerberos5/lib/libgssapi_krb5/ |
| H A D | gss_krb5.c | 600 oid.components = calloc(oid.length, sizeof(*oid.components)); in gsskrb5_extract_authz_data_from_sec_context() 601 if (oid.components == NULL) { in gsskrb5_extract_authz_data_from_sec_context() 608 memcpy(oid.components, baseoid.components, in gsskrb5_extract_authz_data_from_sec_context() 609 baseoid.length * sizeof(*baseoid.components)); in gsskrb5_extract_authz_data_from_sec_context() 613 oid.components[oid.length - 1] = ad_type; in gsskrb5_extract_authz_data_from_sec_context() 618 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context() 625 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context() 633 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context()
|
| /src/crypto/heimdal/lib/gssapi/mech/ |
| H A D | gss_krb5.c | 630 oid.components = calloc(oid.length, sizeof(*oid.components)); in gsskrb5_extract_authz_data_from_sec_context() 631 if (oid.components == NULL) { in gsskrb5_extract_authz_data_from_sec_context() 638 memcpy(oid.components, baseoid.components, in gsskrb5_extract_authz_data_from_sec_context() 639 baseoid.length * sizeof(*baseoid.components)); in gsskrb5_extract_authz_data_from_sec_context() 643 oid.components[oid.length - 1] = ad_type; in gsskrb5_extract_authz_data_from_sec_context() 648 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context() 655 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context() 663 free(oid.components); in gsskrb5_extract_authz_data_from_sec_context()
|
| /src/crypto/krb5/src/lib/kdb/ |
| H A D | kdb_convert.c | 171 kdbe_data_t *components; in conv_princ_2ulog() local 188 p->k_components.k_components_val = components in conv_princ_2ulog() 196 memset(components, 0, princ->length * sizeof(kdbe_data_t)); in conv_princ_2ulog() 198 components[i].k_data.utf8str_t_val = NULL; in conv_princ_2ulog() 200 components[i].k_magic = princ->data[i].magic; in conv_princ_2ulog() 201 if (data_to_utf8str(&components[i].k_data, princ->data[i]) < 0) { in conv_princ_2ulog() 204 free(components[j].k_data.utf8str_t_val); in conv_princ_2ulog() 205 components[j].k_data.utf8str_t_val = NULL; in conv_princ_2ulog() 207 free(components); in conv_princ_2ulog() 253 kdbe_data_t *components; in conv_princ_2db() local [all …]
|
| /src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Path.cpp | 426 SmallVector<StringRef, 4> components; in append() local 427 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); in append() 428 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); in append() 429 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); in append() 430 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); in append() 432 for (auto &component : components) { in append() 721 SmallVector<StringRef, 16> components; in remove_dots() local 754 if (!components.empty() && components.back() != "..") { in remove_dots() 755 components.pop_back(); in remove_dots() 757 components.push_back(component); in remove_dots() [all …]
|
| /src/sys/contrib/device-tree/Bindings/power/ |
| H A D | power-controller.txt | 3 Power-management integrated circuits or miscellaneous hardware components are 5 components might need to define this capability, which tells the kernel that
|
| /src/sys/conf/ |
| H A D | files | 415 contrib/dev/acpica/components/debugger/dbcmds.c optional acpi acpi_debug 416 contrib/dev/acpica/components/debugger/dbconvert.c optional acpi acpi_debug 417 contrib/dev/acpica/components/debugger/dbdisply.c optional acpi acpi_debug 418 contrib/dev/acpica/components/debugger/dbexec.c optional acpi acpi_debug 419 contrib/dev/acpica/components/debugger/dbhistry.c optional acpi acpi_debug 420 contrib/dev/acpica/components/debugger/dbinput.c optional acpi acpi_debug 421 contrib/dev/acpica/components/debugger/dbmethod.c optional acpi acpi_debug 422 contrib/dev/acpica/components/debugger/dbnames.c optional acpi acpi_debug 423 contrib/dev/acpica/components/debugger/dbobject.c optional acpi acpi_debug 424 contrib/dev/acpica/components/debugger/dbstats.c optional acpi acpi_debug [all …]
|
| /src/sys/contrib/device-tree/Bindings/spi/ |
| H A D | spi-sprd-adi.txt | 11 we can configure them to allow other hardware components to use it independently, 14 triggered by hardware components instead of ADI software channels. 19 the analog chip address where user want to access by hardware components. 49 by hardware components.
|