Searched refs:tempString (Results 1 - 7 of 7) sorted by path

/haiku/src/bin/mail_utils/
H A Dmail2mbox.cpp322 char tempString[2048]; local
326 sprintf(tempString, "Problems opening directory named \"%s\".",
328 DisplayErrorMessage(tempString, errno);
344 strlcpy(tempString, inputPathName, sizeof(tempString));
345 strlcat(tempString, entry->d_name, sizeof(tempString));
347 status = ProcessMessageFile(tempString);
/haiku/src/kits/debugger/value/value_formatters/
H A DStringValueFormatter.cpp31 BString tempString; local
32 if (!value->ToString(tempString))
35 for (int32 i = 0; i < tempString.Length(); i++) {
36 if (tempString[i] < 31) {
37 switch (tempString[i]) {
63 tempString.String()[i]);
68 } else if (tempString[i] == '\"')
71 _output << tempString[i]; local
/haiku/src/apps/codycam/
H A DFtpClient.cpp531 string line, tempString; local
555 tempString = line.substr(0, 3);
556 outCode = atoi(tempString.c_str());
565 if ((line.find(tempString) == 0) && line[3] == ' ')
/haiku/src/apps/mail/
H A DMailWindow.cpp613 char tempString [2048]; local
614 query.GetPredicate (tempString, sizeof (tempString));
615 printf ("Query failed, was looking for: %s\n", tempString);
2334 BString tempString; local
2340 tempStringPntr = tempString.LockBuffer (tempStringLength);
2349 if (tempString[i] == 0 || (tempString[i] & 0x80)) {
2356 tempString.UnlockBuffer (tempStringLength);
2365 offset = tempString
[all...]
/haiku/src/apps/text_search/
H A DGrepper.cpp193 char tempString[B_PATH_NAME_LENGTH + 32]; local
194 sprintf(tempString, B_TRANSLATE("%s: Not enough room to escape "
198 message.AddString("error", tempString);
/haiku/src/kits/mail/
H A DMailMessage.cpp361 char tempString[20]; local
367 sprintf (tempString, "%d", to);
368 SetHeaderField("X-Priority", tempString);
/haiku/src/kits/network/libnetservices/
H A DNetworkCookieJar.cpp377 BString tempString; local
381 tempString = tempCookieLine;
383 tempCookieLine.MoveInto(tempString, 0, endOfField);
389 tempCookie.SetDomain(tempString);
397 tempCookie.SetPath(tempString);
401 tempCookie.SetSecure(tempString == "TRUE");
405 tempCookie.SetExpirationDate(atoi(tempString));
409 tempCookie.SetName(tempString);
413 tempCookie.SetValue(tempString);

Completed in 64 milliseconds