Searched defs:cfn (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/webrtc/base/
H A Dmacconversion.cc46 bool p_convertCFNumberToInt(CFNumberRef cfn, int* i) { argument
50 if (NULL != cfn) {
53 if (CFGetTypeID(cfn) == CFNumberGetTypeID()) {
54 CFNumberType ntype = CFNumberGetType(cfn);
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
78 converted = CFNumberGetValue(cfn, ntype,
84 converted = CFNumberGetValue(cfn, ntyp
146 p_isCFNumberTrue(CFNumberRef cfn) argument
[all...]
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsnce.c1040 char * cfn = NULL; /* cache file name */ local
1184 cfn = PR_smprintf("%s/.sslsvrcache.%d", directory, myPid);
1186 cfn = PR_smprintf("%s", directory);
1188 cfn = PR_smprintf("%s/svrcache_%d_%x.ssl", directory, myPid,
1191 cfn = PR_smprintf("%s/svrcache_%d_%x.ssl", directory, myPid,
1196 if (!cfn) {
1201 cacheMemMap = PR_OpenAnonFileMap(cfn, cache->cacheMemSize,
1204 PR_smprintf_free(cfn);
H A Dssl3con.c9897 char cfn[100]; local
9914 sprintf(cfn, "%s/%08d%s", testdir, fileNum, extension);
9915 cf = PR_Open(cfn, PR_RDONLY, 0);
9934 fprintf(stderr, "using %s\n", cfn);
9938 fprintf(stderr, "failed to use %s\n", cfn);

Completed in 220 milliseconds