Home
last modified time | relevance | path

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

/external/libdrm/freedreno/kgsl/
Dkgsl_ringbuffer.c41 void *hostptr; member
63 drm_munmap(bo->hostptr, bo->size); in kgsl_rb_bo_del()
96 bo->hostptr = drm_mmap(NULL, size, PROT_WRITE|PROT_READ, in kgsl_rb_bo_new()
109 return kgsl_ring->bo->hostptr; in kgsl_ringbuffer_hostptr()
120 .hostptr = last_start, in kgsl_ringbuffer_flush()
143 ibdesc.hostptr = kgsl_ring->bo->hostptr; in kgsl_ringbuffer_flush()
145 req.timestamp = (uintptr_t)kgsl_ring->bo->hostptr; in kgsl_ringbuffer_flush()
197 .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.c201 .hostptr = (unsigned long)fbmem, in fd_bo_from_fbdev()
/external/boringssl/src/crypto/x509v3/
Dv3_ncons.c460 const char *hostptr = (char *)uri->data; in nc_uri() local
461 const char *p = strchr(hostptr, ':'); in nc_uri()
466 hostptr = p + 3; in nc_uri()
472 p = strchr(hostptr, ':'); in nc_uri()
475 p = strchr(hostptr, '/'); in nc_uri()
478 hostlen = strlen(hostptr); in nc_uri()
480 hostlen = p - hostptr; in nc_uri()
488 p = hostptr + hostlen - base->length; in nc_uri()
496 || 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.c330 *hostptr; /* Pointer into hostname */ in _httpTLSStart() local
387 if ((hostptr = hostname + strlen(hostname) - 1) >= hostname && in _httpTLSStart()
388 *hostptr == '.') in _httpTLSStart()
389 *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.c45 ring->start = ring->funcs->hostptr(ring); in fd_ringbuffer_new()
100 ring->start = ring->funcs->hostptr(ring); in fd_ringbuffer_grow()
Dfreedreno_priv.h137 void * (*hostptr)(struct fd_ringbuffer *ring); member
/external/curl/lib/
Durl.c3177 char *hostptr; in parse_connect_to_host_port() local
3196 hostptr = host_dup; in parse_connect_to_host_port()
3199 portptr = hostptr; in parse_connect_to_host_port()
3202 if(*hostptr == '[') { in parse_connect_to_host_port()
3204 char *ptr = ++hostptr; /* advance beyond the initial bracket */ in parse_connect_to_host_port()
3245 hostptr = NULL; in parse_connect_to_host_port()
3254 if(hostptr) { in parse_connect_to_host_port()
3255 *hostname_result = strdup(hostptr); in parse_connect_to_host_port()
/external/libdrm/freedreno/msm/
Dmsm_ringbuffer.c575 .hostptr = msm_ringbuffer_hostptr,