Home
last modified time | relevance | path

Searched refs:hostptr (Results 1 – 14 of 14) sorted by relevance

/external/libdrm/freedreno/kgsl/
Dkgsl_ringbuffer.c45 void *hostptr; member
67 drm_munmap(bo->hostptr, bo->size); in kgsl_rb_bo_del()
100 bo->hostptr = drm_mmap(NULL, size, PROT_WRITE|PROT_READ, in kgsl_rb_bo_new()
113 return kgsl_ring->bo->hostptr; in kgsl_ringbuffer_hostptr()
124 .hostptr = last_start, in kgsl_ringbuffer_flush()
147 ibdesc.hostptr = kgsl_ring->bo->hostptr; in kgsl_ringbuffer_flush()
149 req.timestamp = (uint32_t)kgsl_ring->bo->hostptr; in kgsl_ringbuffer_flush()
201 .hostptr = kgsl_ringbuffer_hostptr,
Dmsm_kgsl.h198 void *hostptr; member
331 unsigned int hostptr; /*input param */ member
401 void *hostptr; member
424 unsigned int hostptr; member
Dkgsl_drm.h138 uint32_t hostptr; member
Dkgsl_bo.c205 .hostptr = (unsigned long)fbmem, in fd_bo_from_fbdev()
/external/boringssl/src/crypto/x509v3/
Dv3_ncons.c444 const char *hostptr = (char *)uri->data; in nc_uri() local
445 const char *p = strchr(hostptr, ':'); in nc_uri()
450 hostptr = p + 3; in nc_uri()
456 p = strchr(hostptr, ':'); in nc_uri()
459 p = strchr(hostptr, '/'); in nc_uri()
462 hostlen = strlen(hostptr); in nc_uri()
464 hostlen = p - hostptr; in nc_uri()
472 p = hostptr + hostlen - base->length; in nc_uri()
480 || OPENSSL_strncasecmp(hostptr, baseptr, hostlen)) in nc_uri()
/external/libcups/cups/
Dtls-gnutls.c1247 *hostptr; /* Pointer into hostname */ in _httpTLSStart() local
1338 if ((hostptr = hostname + strlen(hostname) - 1) >= hostname && in _httpTLSStart()
1339 *hostptr == '.') in _httpTLSStart()
1340 *hostptr = '\0'; in _httpTLSStart()
1410 …if ((access(cacrtfile, R_OK) || access(cakeyfile, R_OK)) && (hostptr = strchr(hostname, '.')) != N… in _httpTLSStart()
1416 hostptr ++; in _httpTLSStart()
1417 if (strchr(hostptr, '.')) in _httpTLSStart()
1419 … snprintf(cacrtfile, sizeof(cacrtfile), "/etc/letsencrypt/live/%s/fullchain.pem", hostptr); in _httpTLSStart()
1420 snprintf(cakeyfile, sizeof(cakeyfile), "/etc/letsencrypt/live/%s/privkey.pem", hostptr); in _httpTLSStart()
1457 …if ((access(cacrtfile, R_OK) || access(cakeyfile, R_OK)) && (hostptr = strchr(tls_common_name, '.'… in _httpTLSStart()
[all …]
Dhttp-support.c226 const char *hostptr; /* Pointer into hostname */ in httpAssembleURI() local
256 for (hostptr = host, in httpAssembleURI()
258 *hostptr && have_ipv6; in httpAssembleURI()
259 hostptr ++) in httpAssembleURI()
260 if (*hostptr != ':' && !isxdigit(*hostptr & 255)) in httpAssembleURI()
262 have_ipv6 = *hostptr == '%'; in httpAssembleURI()
2288 *hostptr, /* Pointer into hostTarget */ in http_resolve_cb() local
2397 (hostptr = hostTarget + strlen(hostTarget) - 7) > hostTarget && in http_resolve_cb()
2398 !_cups_strcasecmp(hostptr, ".local.")) in http_resolve_cb()
2421 if ((hostptr = fqdn + strlen(fqdn) - 6) <= fqdn || in http_resolve_cb()
[all …]
Dtls-boringssl.c435 *hostptr; /* Pointer into hostname */ in _httpTLSStart() local
487 if ((hostptr = hostname + strlen(hostname) - 1) >= hostname && in _httpTLSStart()
488 *hostptr == '.') in _httpTLSStart()
489 *hostptr = '\0'; in _httpTLSStart()
Dtls-sspi.c934 *hostptr; /* Pointer into hostname */ in _httpTLSStart() local
966 if ((hostptr = hostname + strlen(hostname) - 1) >= hostname && in _httpTLSStart()
967 *hostptr == '.') in _httpTLSStart()
968 *hostptr = '\0'; in _httpTLSStart()
1231 *hostptr; /* Pointer into hostname */
1255 if ((hostptr = hostname + strlen(hostname) - 1) >= hostname &&
1256 *hostptr == '.')
1257 *hostptr = '\0';
Dtls-darwin.c1162 *hostptr; /* Pointer into hostname */ in _httpTLSStart() local
1531 if ((hostptr = hostname + strlen(hostname) - 1) >= hostname && in _httpTLSStart()
1532 *hostptr == '.') in _httpTLSStart()
1533 *hostptr = '\0'; in _httpTLSStart()
/external/libdrm/freedreno/
Dfreedreno_ringbuffer.c49 ring->start = ring->funcs->hostptr(ring); in fd_ringbuffer_new()
104 ring->start = ring->funcs->hostptr(ring); in fd_ringbuffer_grow()
Dfreedreno_priv.h136 void * (*hostptr)(struct fd_ringbuffer *ring); member
/external/curl/lib/
Durl.c5555 char *hostptr; in parse_connect_to_host_port() local
5570 hostptr = host_dup; in parse_connect_to_host_port()
5573 portptr = hostptr; in parse_connect_to_host_port()
5576 if(*hostptr == '[') { in parse_connect_to_host_port()
5577 char *ptr = ++hostptr; /* advance beyond the initial bracket */ in parse_connect_to_host_port()
5613 hostptr = NULL; in parse_connect_to_host_port()
5622 if(hostptr) { in parse_connect_to_host_port()
5623 *hostname_result = strdup(hostptr); in parse_connect_to_host_port()
/external/libdrm/freedreno/msm/
Dmsm_ringbuffer.c573 .hostptr = msm_ringbuffer_hostptr,