Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dtempnam.c69 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/
Dnanoapp.c101 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/
Dgetnameinfo.c114 u_char pfx; local
172 pfx = ((struct sockaddr_in6 *)sa)->sin6_addr.s6_addr8[0];
173 if (pfx == 0 || pfx == 0xfe || pfx == 0xff)
Dgetaddrinfo.c418 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()
Dposixmodule.c7300 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/
Dnanoapp.h31 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/
Dcrt_stm32.c20 #define VEC_(nm, pfx) void nm##pfx(void) __attribute__ ((weak, alias ("IntDefaultHandler"))) argument
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Pkcs7Sign/
DReadme.md72 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/
Dmain.cpp44 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/
Dnanohubhal.cpp68 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()
Dnanohubhal.h41 void dumpBuffer(const char *pfx, const hub_app_name_t &appId, uint32_t evtId, uint16_t endpoint, co…
/device/linaro/bootloader/edk2/BaseTools/Scripts/
DPatchCheck.py294 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/
Dedk2module.c3601 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/
Dedk2module.c5647 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()