Home
last modified time | relevance | path

Searched refs:strmsg (Results 1 – 23 of 23) sorted by relevance

/dports/games/scummvm/scummvm-2.5.1/engines/glk/archetype/
H A Dsys_object.cpp69 void send_to_system(int transport, String &strmsg, ResultType &result, ContextType &context) { in send_to_system() argument
89 if (figure_state(strmsg)) { in send_to_system()
117 normalize_string(strmsg, g_vm->Command); in send_to_system()
130 result._data._str.acl_str = NewDynStr(strmsg); in send_to_system()
142 if (figure_state(strmsg)) { in send_to_system()
162 add_parse_word(target_list, strmsg, the_caller); in send_to_system()
168 if (figure_state(strmsg)) { in send_to_system()
177 drop_str_on_heap(strmsg); in send_to_system()
192 obj_index = find_object(strmsg); in send_to_system()
H A Dsys_object.h41 extern void send_to_system(int transport, String &strmsg, ResultType &result, ContextType &context);
/dports/mail/getmail6/getmail6-6.18.5/getmailcore/
H A Dmessage.py192 strmsg = self.__msg.as_bytes(
195 strmsg = self.__msg.as_string()
196 strmsg = _NL.join(strmsg.splitlines() + [b''])
202 strmsg = re.sub(u'�+',u'�',strm).encode()
206 strmsg = RE_FROMLINE.sub(b'>\\1', strmsg)
208 return ((fromline+rpline+dtline+rcvline).encode()+strmsg)
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/libRocket/Source/Core/Lua/
H A DUtilities.cpp88 String strmsg; in Report() local
93 strmsg = msg; in Report()
95 strmsg = String(place).Append(" ").Append(msg); in Report()
96 Log::Message(Log::LT_WARNING, strmsg.CString()); in Report()
/dports/audio/aubio/aubio-0.4.9/python/tests/
H A Dtest_note2midi.py64 strmsg = "len(u'\\U0001D12A') != 1, expected decoding failure"
65 strmsg += " | upgrade to Python 3 to fix"
66 strmsg += " | {:s} | {:s} {:s}"
68 skipTest(strmsg.format(repr(e), sys.platform, sys.version))
/dports/audio/py-aubio/aubio-0.4.9/python/tests/
H A Dtest_note2midi.py64 strmsg = "len(u'\\U0001D12A') != 1, expected decoding failure"
65 strmsg += " | upgrade to Python 3 to fix"
66 strmsg += " | {:s} | {:s} {:s}"
68 skipTest(strmsg.format(repr(e), sys.platform, sys.version))
/dports/irc/py-limnoria/Limnoria-master-2019-09-08/test/
H A Dtest_ircmsgs.py49 strmsg = str(msg)
50 self.failIf(len(msg) != len(strmsg) and \
51 strmsg.replace(':', '') == strmsg)
60 strmsg = str(msg).strip()
61 self.failIf(rawmsg != strmsg and \
62 strmsg.replace(':', '') == strmsg)
/dports/audio/csound/csound-6.15.0/OOps/
H A Ddisprep.c51 char strmsg[256]; in fdspset() local
60 snprintf(strmsg, 256, Str("instr %d, pvs-signal %s:"), in fdspset()
62 dispset(csound, &p->dwindow, (MYFLT*) p->fdata.auxp, p->size, strmsg, in fdspset()
87 char strmsg[256]; in dspset() local
117 snprintf(strmsg, 256, Str("instr %d, signal %s:"), in dspset()
119 dispset(csound, &p->dwindow, (MYFLT*) auxp, bufpts, strmsg, in dspset()
237 char strmsg[256]; in fftset() local
292 snprintf(strmsg, 256, Str("instr %d, signal %s, fft (%s):"), in fftset()
300 csound->disprep_fftcoefs+p->start, p->npts, strmsg, in fftset()
471 char strmsg[256]; in tempeset() local
[all …]
/dports/net/nss_ldap/nss_ldap-265/
H A Dldap-sldap.c1279 __ns_ldap_err2str (ns_ldap_return_code err, char **strmsg) in __ns_ldap_err2str() argument
1285 *strmsg = "Success"; in __ns_ldap_err2str()
1288 *strmsg = "Operation failed"; in __ns_ldap_err2str()
1291 *strmsg = "Not found"; in __ns_ldap_err2str()
1294 *strmsg = "Out of memory"; in __ns_ldap_err2str()
1297 *strmsg = "Configuration error"; in __ns_ldap_err2str()
1300 *strmsg = "Partial results received"; in __ns_ldap_err2str()
1303 *strmsg = "Internal LDAP error"; in __ns_ldap_err2str()
1306 *strmsg = "Invalid parameter"; in __ns_ldap_err2str()
1309 *strmsg = "Unknown error"; in __ns_ldap_err2str()
H A Dldap-sldap.h170 ns_ldap_return_code __ns_ldap_err2str(ns_ldap_return_code err, char **strmsg);
/dports/science/PETSc/petsc-3.14.1/config/BuildSystem/config/utilities/
H A DgetResidentSetSize.py12 self.strmsg = ''
16 return self.strmsg
H A DcacheDetails.py29 self.strmsg = ''
38 return self.strmsg
/dports/science/PETSc/petsc-3.14.1/config/PETSc/options/
H A DdataFilesPath.py12 self.strmsg = ''
17 return self.strmsg
/dports/devel/cpprestsdk/cpprestsdk-2.10.16/Release/tests/functional/websockets/utilities/
H A Dtest_websocket_server.cpp272 std::string strmsg(data.begin(), data.end()); in send_msg() local
276 close(strmsg); in send_msg()
281 m_srv.send(m_con, strmsg, flags); in send_msg()
/dports/mail/libvmime/vmime-0.9.2/src/vmime/platforms/posix/
H A DposixSocket.cpp885 const std::string strmsg(strerror_r(err, errbuf, sizeof(errbuf))); in throwSocketError() local
886 throw exceptions::socket_exception(strmsg); in throwSocketError()
892 const std::string strmsg(strerror(err)); in throwSocketError()
893 throw exceptions::socket_exception(strmsg); in throwSocketError()
/dports/sysutils/loganalyzer/loganalyzer-4.1.12/src/
H A Dindex.php898 function HighLightString($highlightArray, $strmsg) argument
904 …$strmsg = preg_replace( "/(" . $highlightword['highlight'] . ")/i", '<font class="' . $highlightwo…
908 return $strmsg;
/dports/java/sqlitejdbc/sqlitejdbc-v056/src/org/sqlite/
H A DNativeDB.c125 const char *strmsg = 0; in xFunc_error() local
145 strmsg = (*env)->GetStringUTFChars(env, msg, 0); in xFunc_error()
146 assert(strmsg); // out-of-memory in xFunc_error()
148 sqlite3_result_error(context, strmsg, msgsize); in xFunc_error()
150 (*env)->ReleaseStringUTFChars(env, msg, strmsg); in xFunc_error()
/dports/games/wizznic/Wizznic-1.1/src/
H A Dgame.c182 int lostLifeMsg( cursorType* cur, playField* pf, SDL_Surface* screen, const char* strmsg, const cha… in lostLifeMsg() argument
190 txtWriteCenter(screen, GAMEFONTMEDIUM, strmsg, HSCREENW,HSCREENH-24); in lostLifeMsg()
/dports/audio/csound/csound-6.15.0/Opcodes/
H A Dspectra.c525 char strmsg[256]; in spdspset() local
537 snprintf(strmsg, 256, in spdspset()
544 snprintf(strmsg, 256, in spdspset()
551 (int32_t)specp->npts, strmsg, (int32_t)*p->iwtflg, in spdspset()
/dports/databases/redis5/redis-5.0.14/src/
H A Dmodule.c1162 sds strmsg = sdsnewlen(prefix,1); in replyWithStatus() local
1163 strmsg = sdscat(strmsg,msg); in replyWithStatus()
1164 strmsg = sdscatlen(strmsg,"\r\n",2); in replyWithStatus()
1165 addReplySds(c,strmsg); in replyWithStatus()
/dports/devel/erlang-gpb/gpb-4.3.3/test/
H A Dgpb_compile_tests.erl2481 OrigMsg = {strmsg, [CodePoint]},
2487 MMDecoded = NEDM:decode_msg(MEncoded, strmsg),
2488 GMDecoded = gpb:decode_msg(MEncoded, strmsg, Defs),
2489 MGDecoded = NEDM:decode_msg(GEncoded, strmsg),
3296 StringMsg = {{msg,strmsg}, mk_fields_of_type([string], required)},
/dports/games/spring/spring_98.0/rts/Net/
H A DGameServer.cpp1126 std::string strmsg; local
1127 pckt >> strmsg;
1132 Broadcast(CBaseNetProtocol::Get().SendSystemMessage(playerNum, strmsg));
/dports/audio/csound/csound-6.15.0/Engine/
H A Dfgens.c2303 char strmsg[64]; in ftresdisp() local
2321 snprintf(strmsg, 64, Str("ftable %d:"), (int) ff->fno); in ftresdisp()
2324 strmsg, 0, "ftable"); in ftresdisp()