HomeSort by: relevance | last modified time | path
    Searched refs:ppath (Results 1 - 24 of 24) sorted by relevancy

  /src/common/include/ppath/
Makefile 4 INCS= ppath.h ppath_impl.h
6 INCSDIR= /usr/include/ppath
  /src/lib/libppath/
Makefile 21 LIB= ppath
23 MAN+= ppath.3
24 MLINKS+= ppath.3 ppath_component_at.3
25 MLINKS+= ppath.3 ppath_component_idx.3
26 MLINKS+= ppath.3 ppath_component_key.3
27 MLINKS+= ppath.3 ppath_component_release.3
28 MLINKS+= ppath.3 ppath_component_retain.3
29 MLINKS+= ppath.3 ppath_copy.3
30 MLINKS+= ppath.3 ppath_create.3
31 MLINKS+= ppath.3 ppath_idx.
    [all...]
ppath_malloc.c 37 #include <ppath/ppath_impl.h>
  /src/common/lib/libppath/
ppath_malloc.c 37 #include <ppath/ppath_impl.h>
ppath_extant.c 35 #include <ppath/ppath_impl.h>
ppath_kmem_alloc.c 36 #include <ppath/ppath_impl.h>
ppath.c 1 /* $NetBSD: ppath.c,v 1.5 2020/06/06 22:28:07 thorpej Exp $ */
33 __RCSID("$NetBSD: ppath.c,v 1.5 2020/06/06 22:28:07 thorpej Exp $");
38 #include <ppath/ppath.h>
39 #include <ppath/ppath_impl.h>
  /src/crypto/external/bsd/openssl.old/dist/crypto/ocsp/
ocsp_lib.c 117 int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
126 *ppath = NULL;
163 *ppath = OPENSSL_strdup("/");
165 *ppath = OPENSSL_strdup(p);
170 if (!*ppath)
212 OPENSSL_free(*ppath);
213 *ppath = NULL;
  /src/crypto/external/bsd/openssl/dist/crypto/http/
http_lib.c 55 char **ppath, char **pquery, char **pfrag)
72 init_pstring(ppath);
174 if (!copy_substring(ppath, path, path_end))
176 } else if (ppath != NULL) { /* must prepend '/' */
179 if ((*ppath = OPENSSL_malloc(buflen)) == NULL)
181 BIO_snprintf(*ppath, buflen, "/%s", path);
193 free_pstring(ppath);
201 char **ppath, char **pquery, char **pfrag)
210 ppath, pquery, pfrag))
250 free_pstring(ppath);
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/http/
http_lib.c 55 char **ppath, char **pquery, char **pfrag)
73 init_pstring(ppath);
172 if (!copy_substring(ppath, path, path_end))
174 } else if (ppath != NULL) { /* must prepend '/' */
177 if ((*ppath = OPENSSL_malloc(buflen)) == NULL)
179 BIO_snprintf(*ppath, buflen, "/%s", path);
191 free_pstring(ppath);
201 char **ppath, char **pquery, char **pfrag)
210 ppath, pquery, pfrag))
250 free_pstring(ppath);
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/include/
http_server.h 53 * ppath: pointer to variable where to place the request path, or NULL
60 * returns 0 in case caller should retry, then *preq == *ppath == *pcbio == NULL
61 * returns -1 on fatal error; also then holds *preq == *ppath == *pcbio == NULL
63 * *ppath == NULL and *preq == NULL if and only if the request is invalid,
66 * The caller must free any non-NULL *preq, *ppath, and *pcbio pointers.
69 char **ppath, BIO **pcbio, BIO *acbio,
  /src/crypto/external/apache2/openssl/dist/apps/lib/
http_server.c 265 char **ppath, BIO **pcbio, BIO *acbio,
277 if (ppath != NULL)
278 *ppath = NULL;
472 } else if (ppath != NULL && (*ppath = OPENSSL_strdup(url)) == NULL) {
492 if (ppath != NULL) {
493 OPENSSL_free(*ppath);
494 *ppath = NULL;
  /src/crypto/external/bsd/openssl/dist/apps/lib/
http_server.c 287 char **ppath, BIO **pcbio, BIO *acbio,
300 if (ppath != NULL)
301 *ppath = NULL;
480 } else if (ppath != NULL && (*ppath = OPENSSL_strdup(url)) == NULL) {
500 if (ppath != NULL) {
501 OPENSSL_free(*ppath);
502 *ppath = NULL;
  /src/crypto/external/bsd/openssl/dist/apps/include/
http_server.h 70 * ppath: pointer to variable where to place the request path, or NULL
78 * returns 0 in case caller should retry, then *preq == *ppath == *pcbio == NULL
79 * returns -1 on fatal error; also then holds *preq == *ppath == *pcbio == NULL
81 * *ppath == NULL and *preq == NULL if and only if the request is invalid,
84 * The caller must free any non-NULL *preq, *ppath, and *pcbio pointers.
87 char **ppath, BIO **pcbio, BIO *acbio,
  /src/sys/dev/i2c/
tps65217pmic.c 403 uint8_t intr, intrmask, status, ppath; local
415 ppath = tps65217pmic_reg_read(sc, TPS65217PMIC_PPATH);
423 sc->sc_usbenabled = ppath & TPS65217PMIC_PPATH_USB_EN;
424 sc->sc_acenabled = ppath & TPS65217PMIC_PPATH_AC_EN;
591 tps65217pmic_ppath_max_ac_current(uint8_t ppath)
593 switch ((ppath & TPS65217PMIC_PPATH_IAC) >>
608 tps65217pmic_ppath_max_usb_current(uint8_t ppath)
610 switch (ppath & TPS65217PMIC_PPATH_IUSB) {
715 uint8_t status, ppath; local
717 ppath = tps65217pmic_reg_read(sc, TPS65217PMIC_PPATH)
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/openssl/
http.h 38 char **ppath, char **pquery, char **pfrag);
109 char **ppath, char **pquery, char **pfrag);
  /src/crypto/external/bsd/openssl/dist/include/openssl/
http.h 100 char **ppath, char **pquery, char **pfrag);
103 char **ppath, char **pquery, char **pfrag);
  /src/include/
Makefile 54 SUBDIR+= ../common/include/ppath
  /src/external/gpl2/dtc/dist/
flattree.c 715 static char *nodename_from_path(const char *ppath, const char *cpath)
719 plen = strlen(ppath);
721 if (!strstarts(cpath, ppath))
723 cpath, ppath);
726 if (!streq(ppath, "/"))
  /src/external/bsd/openldap/dist/servers/slapd/back-ldif/
ldif.c 1059 struct berval ppath = BER_BVNULL; local
1085 rc = get_parent_path( dnpath, &ppath );
1090 if ( rc == LDAP_SUCCESS && stat( ppath.bv_val, &st ) < 0 ) {
1091 rc = errno == ENOENT && ppath.bv_len > li->li_base_path.bv_len
1097 dir2ldif_name( ppath );
1098 rc = ldif_read_entry( op, ppath.bv_val, NULL, NULL,
1119 ldif2dir_name( ppath );
1120 *need_dir = ppath.bv_val;
1136 if ( *need_dir == NULL && ppath.bv_val != NULL )
1137 SLAP_FREE( ppath.bv_val )
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
ocsp.h 229 int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
  /src/sys/arch/x86/pci/
pci_ranges.c 44 #include <ppath/ppath.h>
  /src/tests/lib/libppath/
t_ppath.c 14 #include <ppath/ppath.h>
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_pool.c 2131 zpool_find_vdev_by_physpath(zpool_handle_t *zhp, const char *ppath,
2137 verify(nvlist_add_string(search, ZPOOL_CONFIG_PHYS_PATH, ppath) == 0);

Completed in 54 milliseconds