Searched refs:strlen (Results 176 - 200 of 793) sorted by relevance

1234567891011>>

/vbox/src/VBox/Runtime/testcase/
H A DtstRTSymlink.cpp49 size_t cchTarget = strlen(pszTarget);
142 size_t cchExecDir = strlen(szExecDir);
147 size_t cchExecFile = strlen(szExecFile);
/vbox/src/VBox/RDP/client-1.8.3/
H A Diso.c72 int length = 30 + strlen(username);
89 out_uint8p(s, "Cookie: mstshash=", strlen("Cookie: mstshash="));
90 out_uint8p(s, username, strlen(username));
H A Drdesktop.c533 strncpy(server, server + 1, strlen(server));
650 g_username = (char *) xmalloc(strlen(optarg) + 1);
651 STRNCPY(g_username, optarg, strlen(optarg) + 1);
939 g_rdpdr_clientname = xmalloc(strlen(optarg + 11) + 1);
993 if (strncmp(optarg, "sc-csp-name", strlen("sc-scp-name")) ==
998 strlen("sc-reader-name")) == 0)
1002 strlen("sc-card-name")) == 0)
1006 strlen("sc-container-name")) == 0)
1090 int pwlen = strlen(pw->pw_name) + 1;
1201 g_username = (char *) xmalloc(strlen(g_redirect_usernam
[all...]
/vbox/src/VBox/Runtime/common/ldr/
H A DldrNative.cpp194 size_t cchFilename = strlen(pszFilename);
251 size_t cchFilename = strlen(pszFilename);
259 cchSuffix = strlen(pszSuffix);
/vbox/src/VBox/Runtime/common/string/
H A Dstrformattype.cpp259 cchType = strlen(pszType);
342 i = rtstrFormatTypeLookup(pszType, strlen(pszType));
388 i = rtstrFormatTypeLookup(pszType, strlen(pszType));
/vbox/src/VBox/Runtime/r3/win/
H A Denv-win.cpp143 const size_t cchVar = strlen(pszVar);
144 const size_t cchValue = strlen(pszValue);
219 size_t cchVar = strlen(pszVar);
/vbox/src/libs/xpcom18a4/ipc/ipcd/shared/src/
H A Dipcm.cpp130 namesLen += (strlen(names[i]) + 1);
161 PRUint32 len = strlen(names[i]) + 1;
209 name += strlen(name) + 1;
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsCRT.h127 *** nsCRT::strlen()
135 static PRUint32 strlen(const char* s) { function in class:nsCRT
136 return PRUint32(::strlen(s));
204 /// Like strlen except for ucs2 strings
205 static PRUint32 strlen(const PRUnichar* s);
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsStringStream.cpp151 dataLen = strlen(data);
162 dataLen = strlen(data);
178 dataLen = strlen(data);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dtchar.h48 #define _strncnt(str,max) (strlen(str)>(max) ? (max) : strlen(str))
119 #define _tcsclen WINE_tchar_routine(strlen, _mbslen, wcslen)
130 #define _tcslen WINE_tchar_routine(strlen, strlen, wcslen)
/vbox/src/VBox/Additions/solaris/SharedFolders/
H A Dvboxfs_vfs.c414 kmem_free(mount_point, strlen(mount_point) + 1);
423 kmem_free(share_name, strlen(share_name) + 1);
424 kmem_free(mount_point, strlen(mount_point) + 1);
521 kmem_free(sffs->sf_share_name, strlen(sffs->sf_share_name) + 1);
522 kmem_free(sffs->sf_mntpath, strlen(sffs->sf_mntpath) + 1);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dtchar.h48 #define _strncnt(str,max) (strlen(str)>(max) ? (max) : strlen(str))
119 #define _tcsclen WINE_tchar_routine(strlen, _mbslen, wcslen)
130 #define _tcslen WINE_tchar_routine(strlen, strlen, wcslen)
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpec.cpp101 CopyFrom(inString, strlen(inString));
140 CopyFrom(inString, strlen(inString));
173 int newLength = Length() + strlen(inOther);
196 int newLength = Length() + strlen(inString1) + strlen(inString2);
234 mData->mLength = strlen(mData->mString);
367 (lastSeparator - chars) + strlen(inLeafName) + (trailingSeparator != 0);
460 char* startDir = (char*)PR_Malloc(strlen(pathCopy) + 2);
927 = nsFileSpecHelpers::kMaxCoreLeafNameLength - strlen(suffix) - 1;
928 if ((int)strlen(leafNam
[all...]
H A DnsSpecialSystemDirectory.cpp196 int length = strlen(aPath);
980 int len = strlen(path);
994 int len = strlen(path);
1008 int len = strlen(path);
1022 int len = strlen(path);
1078 int len = strlen (szPath);
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dauth.c313 l = strlen(user);
316 l = strlen(passwd);
358 int l = strlen(addr);
896 *msglen = strlen(*msg);
920 *msglen = strlen(*msg);
1090 len = (int)strlen(ppp_settings.passwd);
1117 len = strlen(secbuf);
/vbox/src/VBox/Runtime/generic/
H A Denv-generic.cpp399 const size_t cchVar = strlen(pszVar);
400 const size_t cchValue = strlen(pszValue);
505 const size_t cchVar = strlen(pszVar);
561 size_t cch = strlen(pszValueUtf8);
591 const size_t cchVar = strlen(pszVar);
599 size_t cch = strlen(pszValueOrg);
654 const size_t cchVar = strlen(pszVar);
/vbox/src/libs/zlib-1.2.6/test/
H A Dexample.c93 uLong len = (uLong)strlen(hello)+1;
123 int len = (int)strlen(hello)+1;
180 if (strlen((char*)uncompr) != 7) { /* " hello!" */
206 uLong len = (uLong)strlen(hello)+1;
381 uInt len = (uInt)strlen(hello)+1;
480 c_stream.avail_in = (uInt)strlen(hello)+1;
576 argc = strlen(argv[0]);
/vbox/src/VBox/Runtime/r0drv/nt/
H A DntBldSymDb.cpp355 size_t cbPdb = strlen(pszPdb) + 1;
437 size_t cchPrefix = strlen(pszPrefix);
454 size_t cchCur = strlen(pszCur);
581 size_t cbNeeded = strlen(pszMember) + strlen(pszPrefix) + sizeof(".");
610 size_t cbNeeded = strlen(pszMember) + strlen(pszPrefix) + sizeof("[xxxxxxxxxxxxxxxx].");
692 size_t cchString = strlen(pszString);
693 size_t cchSuffix = strlen(pszSuffix);
1097 return processDirSub(szPath, strlen(szPat
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrUtilityLib.cpp135 if ((mName = new CHAR8[strlen (Name) + 1]) != NULL) {
141 if ((mId = new CHAR8[strlen (Id) + 1]) != NULL) {
162 if ((mName = new CHAR8[strlen (Name) + 1]) != NULL) {
168 if ((mId = new CHAR8[strlen (Id) + 1]) != NULL) {
344 if ((mItemListPos->mId = new CHAR8[strlen (Id) + 1]) == NULL) {
976 if (strlen(TypeName) >= MAX_NAME_LEN) {
1004 if (strlen (FieldName) >= MAX_NAME_LEN) {
1312 mVarStoreName = new CHAR8[strlen(StoreName) + 1];
1339 mVarStoreName = new CHAR8[strlen(StoreName) + 1];
1357 mVarStoreName = new CHAR8[strlen(StoreNam
[all...]
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_proxy.c429 slen = strlen(buffer);
441 if ((int)(ntohs(pip->ip_len) + strlen(buffer)) > maxpacketsize)
695 cmd_len = strlen(cmd);
703 len = strlen(buffer);
946 if (strlen(str_port) != 0) {
958 if (strlen(str_server_port) != 0) {
/vbox/src/VBox/Main/src-client/
H A DEmulatedUSBImpl.cpp239 if (RTStrNICmp(pszSrc, "drv:", strlen("drv:")) == 0)
241 pszSrc += strlen("drv:");
244 else if (RTStrNICmp(pszSrc, "dev:", strlen("dev:")) == 0)
246 pszSrc += strlen("dev:");
260 pszEnd = pszEq + strlen(pszEq);
626 pvIdCopy = RTMemDup(pszId, strlen(pszId) + 1);
H A DNvram.cpp172 Assert(strlen(apszTodo[i]) < 16);
214 Assert(strlen(s_apszValueNames[i]) < 16);
289 *pcchName = (uint32_t)strlen(pszName);
/vbox/src/VBox/Main/src-server/solaris/
H A DPerformanceSolaris.cpp335 int cbIface = strlen(pszIfaceName);
385 AssertReturn(strlen(name) < KSTAT_STRLEN, VERR_INVALID_PARAMETER);
449 AssertReturn(strlen(name) < KSTAT_STRLEN, VERR_INVALID_PARAMETER);
488 char *pszEnd = pszDataset + strlen(pszDataset);
546 AssertReturn(strlen(name) + 5 < KSTAT_STRLEN, VERR_INVALID_PARAMETER);
587 size_t cbName = strlen(pcszPhysName);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_program.c416 fname = alloca(strlen(prp->pr_name) + 1 + i);
467 mname = alloca(strlen(prp->pr_name) + 1);
470 fname = alloca(strlen(prp->pr_name) + 1 + i);
553 info.dthi_pmname = alloca(strlen(pvp->pv_desc.dtvd_name) + 1);
556 info.dthi_pfname = alloca(strlen(pvp->pv_desc.dtvd_name) + 1 + i);
593 mfname = alloca(strlen(fname) + 1);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/
H A Ddebug.c118 if (strlen(name) >= sizeof(debug_options[0].name)) return;
163 int len = strlen(debug_classes[i]);
340 if (n == -1) n = strlen(str);

Completed in 96 milliseconds

1234567891011>>