/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/ |
D | tempnam.c | 69 gentemp(char *name, size_t len, const char *tmp, const char *pfx) in gentemp() argument 71 (void)snprintf(name, len, "%s%s%sXXXX", tmp, trailsl(tmp), pfx); in gentemp() 76 tempnam(const char *dir, const char *pfx) in tempnam() argument 85 if (!pfx) in tempnam() 86 pfx = "tmp."; in tempnam() 89 (f = gentemp(name, (size_t)MAXPATHLEN, tmp, pfx)) != NULL) in tempnam() 93 (f = gentemp(name, (size_t)MAXPATHLEN, dir, pfx)) != NULL) in tempnam() 99 if ((f = gentemp(name, (size_t)MAXPATHLEN, _PATH_TMP, pfx)) != NULL) in tempnam()
|
/device/google/contexthub/lib/nanohub/ |
D | nanoapp.c | 101 static void doPrintHash(FILE *out, const char *pfx, const uint32_t *hash, size_t size, int incremen… in doPrintHash() argument 105 fprintf(out, "%s: ", pfx); in doPrintHash() 111 void printHash(FILE *out, const char *pfx, const uint32_t *hash, size_t size) in printHash() argument 113 doPrintHash(out, pfx, hash, size, 1); in printHash() 116 void printHashRev(FILE *out, const char *pfx, const uint32_t *hash, size_t size) in printHashRev() argument 118 doPrintHash(out, pfx, hash + size - 1, size, -1); in printHashRev()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | getnameinfo.c | 114 u_char pfx; local 172 pfx = ((struct sockaddr_in6 *)sa)->sin6_addr.s6_addr8[0]; 173 if (pfx == 0 || pfx == 0xfe || pfx == 0xff)
|
D | getaddrinfo.c | 418 u_char pfx; in getaddrinfo() local 433 pfx = ((struct in6_addr *)pton)->s6_addr8[0]; in getaddrinfo() 434 if (pfx == 0 || pfx == 0xfe || pfx == 0xff) in getaddrinfo()
|
D | posixmodule.c | 7300 char *pfx = NULL; in posix_tempnam() local 7303 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx)) in posix_tempnam() 7315 name = _tempnam(dir, pfx); in posix_tempnam() 7317 name = tempnam(dir, pfx); in posix_tempnam()
|
/device/google/contexthub/lib/include/nanohub/ |
D | nanoapp.h | 31 void printHash(FILE *out, const char *pfx, const uint32_t *hash, size_t size); 32 void printHashRev(FILE *out, const char *pfx, const uint32_t *hash, size_t size);
|
/device/google/contexthub/firmware/os/platform/stm32/ |
D | crt_stm32.c | 20 #define VEC_(nm, pfx) void nm##pfx(void) __attribute__ ((weak, alias ("IntDefaultHandler"))) argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/ |
D | Readme.md | 72 openssl pkcs12 -export -out TestCert.pfx -inkey TestCert.key -in TestCert.crt 73 openssl pkcs12 -in TestCert.pfx -nodes -out TestCert.pem
|
/device/google/contexthub/contexthubhal/test/ |
D | main.cpp | 44 void dumpBuffer(std::ostream &os, const char *pfx, const hub_app_name_t &appId, uint32_t evtId, con… in dumpBuffer() argument 47 os << pfx << ": [ID=" << appId << "; SZ=" << std::dec << len; in dumpBuffer()
|
/device/google/contexthub/contexthubhal/ |
D | nanohubhal.cpp | 68 void dumpBuffer(const char *pfx, const hub_app_name_t &appId, uint32_t evtId, uint16_t endpoint, co… in dumpBuffer() argument 72 os << pfx << ": [ID=" << appId << "; SZ=" << std::dec << len; in dumpBuffer()
|
D | nanohubhal.h | 41 void dumpBuffer(const char *pfx, const hub_app_name_t &appId, uint32_t evtId, uint16_t endpoint, co…
|
/device/linaro/bootloader/edk2/BaseTools/Scripts/ |
D | PatchCheck.py | 294 for pfx in self.pre_patch_prefixes: 295 if line.startswith(pfx):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/ |
D | edk2module.c | 3601 char *pfx = NULL; in edk2_tempnam() local 3604 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx)) in edk2_tempnam() 3615 name = tempnam(dir, pfx); in edk2_tempnam()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/ |
D | edk2module.c | 5647 char *pfx = NULL; in posix_tempnam() local 5650 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx)) in posix_tempnam() 5661 name = tempnam(dir, pfx); in posix_tempnam()
|