/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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 …]
|
/freebsd/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_bit_string() 180 if (to->length != 0 && to->components == NULL) in der_copy_bit_string() 182 memcpy(to->components, from->components, in der_copy_bit_string() 183 to->length * sizeof(*to->components)); in der_copy_bit_string()
|
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()
|
H A D | der_get.c | 513 if (len + 1 > UINT_MAX/sizeof(data->components[0])) in der_get_tag() 516 data->components = malloc((len + 1) * sizeof(data->components[0])); in der_get_tag() 517 if (data->components == NULL) in der_get_tag() 519 data->components[0] = (*p) / 40; in der_get_tag() 520 data->components[1] = (*p) % 40; in der_get_tag() 536 data->components[n] = u; in der_get_tag()
|
/freebsd/crypto/openssl/ssl/record/ |
H A D | README.md | 7 The record layer is divided into a number of components. At the time of writing 9 of these components is defined by: 19 The source files map to components as follows: 27 interface to the record layer for the rest of libssl. The other 3 components are 35 directly access its members. Instead components use accessor macros, so if code
|
/freebsd/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 …]
|
/freebsd/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()
|
/freebsd/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.")
|
/freebsd/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.")
|
/freebsd/usr.sbin/periodic/etc/daily/ |
H A D | 406.status-gmirror | 19 components="$(gmirror status -s | fgrep -v COMPLETE)" 20 if [ "${components}" ]; then
|
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 | 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
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | openssl-pkey.pod.in | 38 converted between various forms and their components printed. 57 components. 92 With this option only the public components are read. 135 this option restricts the output to the public components. 146 Output the various key components in plain text 152 Output in text form only the public key components (also for private keys). 195 To print out the components of a private key to standard output: 199 To print out the public components of a private key to standard output:
|
/freebsd/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()
|
/freebsd/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 …]
|
/freebsd/sys/conf/ |
H A D | files | 416 contrib/dev/acpica/components/debugger/dbcmds.c optional acpi acpi_debug 417 contrib/dev/acpica/components/debugger/dbconvert.c optional acpi acpi_debug 418 contrib/dev/acpica/components/debugger/dbdisply.c optional acpi acpi_debug 419 contrib/dev/acpica/components/debugger/dbexec.c optional acpi acpi_debug 420 contrib/dev/acpica/components/debugger/dbhistry.c optional acpi acpi_debug 421 contrib/dev/acpica/components/debugger/dbinput.c optional acpi acpi_debug 422 contrib/dev/acpica/components/debugger/dbmethod.c optional acpi acpi_debug 423 contrib/dev/acpica/components/debugger/dbnames.c optional acpi acpi_debug 424 contrib/dev/acpica/components/debugger/dbobject.c optional acpi acpi_debug 425 contrib/dev/acpica/components/debugger/dbstats.c optional acpi acpi_debug [all …]
|
/freebsd/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
|
/freebsd/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.
|