Home
last modified time | relevance | path

Searched refs:wcstombs (Results 1 – 25 of 2530) sorted by relevance

12345678910>>...102

/dports/sysutils/javaservicewrapper/wrapper_3.5.45_src/src/c/
H A Dwrapper_i18n.c379 req = wcstombs(NULL, exe, 0); in _treadlink()
385 wcstombs(cExe, exe, req + 1); in _treadlink()
446 req = wcstombs(NULL, path, 0); in _tpathconf()
592 req = wcstombs(NULL, path, 0); in _tremove()
614 req = wcstombs(NULL, path, 0); in _trename()
623 req = wcstombs(NULL, to, 0); in _trename()
670 req = wcstombs(NULL, name, 0); in _tgetenv()
788 size = wcstombs(NULL, arg, 0); in _tmkfifo()
808 size = wcstombs(NULL, path, 0); in _tchdir()
1037 size = wcstombs(NULL, path, 0); in _topen()
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/tests/sfio/
H A Dtwc.c47 wcstombs(str, wuf, sizeof(str)); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
62 wcstombs(str, wuf, sizeof(str)); in tmain()
72 wcstombs(str, wuf, sizeof(str)); in tmain()
80 wcstombs(str, wuf, sizeof(str)); in tmain()
86 wcstombs(str, wuf, sizeof(str)); in tmain()
106 wcstombs(str, wuf, sizeof(str)); in tmain()
116 wcstombs(str, wuf, sizeof(str)); in tmain()
H A Dtwchar.c47 wcstombs(str, wuf, sizeof(str)); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
61 wcstombs(str, wuf, sizeof(str)); in tmain()
71 wcstombs(str, wuf, sizeof(str)); in tmain()
78 wcstombs(str, wuf, sizeof(str)); in tmain()
84 wcstombs(str, wuf, sizeof(str)); in tmain()
103 wcstombs(str, wuf, sizeof(str)); in tmain()
113 wcstombs(str, wuf, sizeof(str)); in tmain()
/dports/shells/ksh93/ast-93u/src/cmd/tests/sfio/
H A Dtwc.c47 wcstombs(str, wuf, sizeof(str)); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
62 wcstombs(str, wuf, sizeof(str)); in tmain()
72 wcstombs(str, wuf, sizeof(str)); in tmain()
80 wcstombs(str, wuf, sizeof(str)); in tmain()
86 wcstombs(str, wuf, sizeof(str)); in tmain()
106 wcstombs(str, wuf, sizeof(str)); in tmain()
116 wcstombs(str, wuf, sizeof(str)); in tmain()
H A Dtwchar.c47 wcstombs(str, wuf, sizeof(str)); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
61 wcstombs(str, wuf, sizeof(str)); in tmain()
71 wcstombs(str, wuf, sizeof(str)); in tmain()
78 wcstombs(str, wuf, sizeof(str)); in tmain()
84 wcstombs(str, wuf, sizeof(str)); in tmain()
103 wcstombs(str, wuf, sizeof(str)); in tmain()
113 wcstombs(str, wuf, sizeof(str)); in tmain()
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/tests/sfio/
H A Dtwc.c47 wcstombs(str, wuf, sizeof(str)); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
62 wcstombs(str, wuf, sizeof(str)); in tmain()
72 wcstombs(str, wuf, sizeof(str)); in tmain()
80 wcstombs(str, wuf, sizeof(str)); in tmain()
86 wcstombs(str, wuf, sizeof(str)); in tmain()
106 wcstombs(str, wuf, sizeof(str)); in tmain()
116 wcstombs(str, wuf, sizeof(str)); in tmain()
H A Dtwchar.c47 wcstombs(str, wuf, sizeof(str)); in tmain()
52 wcstombs(str, wuf, sizeof(str)); in tmain()
61 wcstombs(str, wuf, sizeof(str)); in tmain()
71 wcstombs(str, wuf, sizeof(str)); in tmain()
78 wcstombs(str, wuf, sizeof(str)); in tmain()
84 wcstombs(str, wuf, sizeof(str)); in tmain()
103 wcstombs(str, wuf, sizeof(str)); in tmain()
113 wcstombs(str, wuf, sizeof(str)); in tmain()
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/lib/
H A Dwcscoll-impl.h33 ret = wcstombs (mbbuf1, s1, sizeof (mbbuf1)); in wcscoll()
40 size_t need = wcstombs (NULL, s1, 0); in wcscoll()
46 ret = wcstombs (mbs1, s1, need + 1); in wcscoll()
56 ret = wcstombs (mbbuf2, s2, sizeof (mbbuf2)); in wcscoll()
63 size_t need = wcstombs (NULL, s2, 0); in wcscoll()
69 ret = wcstombs (mbs2, s2, need + 1); in wcscoll()
/dports/lang/zig-devel/zig-0.9.0/lib/libc/mingw/misc/
H A Dbasename.c99 if ((len = wcstombs( path, refcopy, len)) != (size_t)(-1)) in basename()
102 if ((len = wcstombs( NULL, refcopy, 0 )) != (size_t)(-1)) in basename()
110 retfail = realloc (retfail, len = 1 + wcstombs (NULL, L"/", 0)); in basename()
111 wcstombs (path = retfail, L"/", len); in basename()
128 retfail = realloc (retfail, len = 1 + wcstombs( NULL, L".", 0)); in basename()
129 wcstombs (retfail, L".", len); in basename()
H A Dwassert.c18 if ((len = wcstombs(NULL, _Message, 0)) != (size_t)-1) in mingw_wassert()
21 wcstombs(message, _Message, len + 1); in mingw_wassert()
24 if ((len = wcstombs(NULL, _File, 0)) != (size_t)-1) in mingw_wassert()
27 wcstombs(file, _File, len + 1); in mingw_wassert()
H A Ddirname.c142 if ((len = wcstombs( path, refcopy, len )) != (size_t)(-1)) in dirname()
163 retfail = realloc (retfail, len = 1 + wcstombs (NULL, refcopy, 0)); in dirname()
164 wcstombs (path = retfail, refcopy, len); in dirname()
177 retfail = realloc (retfail, len = 1 + wcstombs (NULL, L".", 0)); in dirname()
178 wcstombs (retfail, L".", len); in dirname()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/Freeware/
H A Dbasename.c119 if( (len = wcstombs( path, refcopy, len )) != (size_t)(-1) ) in basename()
122 if( (len = wcstombs( NULL, refcopy, 0 )) != (size_t)(-1) ) in basename()
133 retfail = realloc( retfail, len = 1 + wcstombs( NULL, L"/", 0 )); in basename()
134 wcstombs( path = retfail, L"/", len ); in basename()
157 retfail = realloc( retfail, len = 1 + wcstombs( NULL, L".", 0 )); in basename()
158 wcstombs( retfail, L".", len ); in basename()
/dports/lang/zig/zig-0.9.0/lib/libc/mingw/misc/
H A Dbasename.c99 if ((len = wcstombs( path, refcopy, len)) != (size_t)(-1)) in basename()
102 if ((len = wcstombs( NULL, refcopy, 0 )) != (size_t)(-1)) in basename()
110 retfail = realloc (retfail, len = 1 + wcstombs (NULL, L"/", 0)); in basename()
111 wcstombs (path = retfail, L"/", len); in basename()
128 retfail = realloc (retfail, len = 1 + wcstombs( NULL, L".", 0)); in basename()
129 wcstombs (retfail, L".", len); in basename()
H A Dwassert.c18 if ((len = wcstombs(NULL, _Message, 0)) != (size_t)-1) in mingw_wassert()
21 wcstombs(message, _Message, len + 1); in mingw_wassert()
24 if ((len = wcstombs(NULL, _File, 0)) != (size_t)-1) in mingw_wassert()
27 wcstombs(file, _File, len + 1); in mingw_wassert()
H A Ddirname.c142 if ((len = wcstombs( path, refcopy, len )) != (size_t)(-1)) in dirname()
163 retfail = realloc (retfail, len = 1 + wcstombs (NULL, refcopy, 0)); in dirname()
164 wcstombs (path = retfail, refcopy, len); in dirname()
177 retfail = realloc (retfail, len = 1 + wcstombs (NULL, L".", 0)); in dirname()
178 wcstombs (retfail, L".", len); in dirname()
/dports/devel/gnulib/gnulib-20140202-stable/lib/
H A Dwcscoll-impl.h33 ret = wcstombs (mbbuf1, s1, sizeof (mbbuf1)); in wcscoll()
40 size_t need = wcstombs (NULL, s1, 0); in wcscoll()
46 ret = wcstombs (mbs1, s1, need + 1); in wcscoll()
56 ret = wcstombs (mbbuf2, s2, sizeof (mbbuf2)); in wcscoll()
63 size_t need = wcstombs (NULL, s2, 0); in wcscoll()
69 ret = wcstombs (mbs2, s2, need + 1); in wcscoll()
/dports/audio/musepack/musepack_src_r475/win32/
H A Dbasename.c121 if( (len = wcstombs( path, refcopy, len )) != (size_t)(-1) ) in basename()
124 if( (len = wcstombs( NULL, refcopy, 0 )) != (size_t)(-1) ) in basename()
135 retfail = realloc( retfail, len = 1 + wcstombs( NULL, L"/", 0 )); in basename()
136 wcstombs( path = retfail, L"/", len ); in basename()
160 retfail = realloc( retfail, len = 1 + wcstombs( NULL, L".", 0 )); in basename()
161 wcstombs( retfail, L".", len ); in basename()
/dports/japanese/sj3-lib/sj3-2.0.1.20/sj3/
H A Dtoroku.c135 (void) wcstombs((char *)ytmp, WCMyomi, YOMILEN+1); in getyomi()
136 (void) wcstombs((char *)ktmp, kanji, KLEN+1); in getyomi()
142 (void) wcstombs((char *)ytmp, WCMyomi, YOMILEN+1); in getyomi()
225 (void) wcstombs((char *)ktmp, kanji, KLEN+1); in getcheck()
226 (void) wcstombs((char *)ytmp, yomi, YOMILEN+1); in getcheck()
227 (void) wcstombs((char *)ttmp, WCSYOUKYO_OK, BUFFLENGTH); in getcheck()
232 (void) wcstombs((char *)ktmp, kanji, KLEN+1); in getcheck()
233 (void) wcstombs((char *)ytmp, yomi, YOMILEN+1); in getcheck()
234 (void) wcstombs((char *)htmp, hinshi, YOMILEN+1); in getcheck()
235 (void) wcstombs((char *)ttmp, WCTOUROKU_OK, BUFFLENGTH); in getcheck()
[all …]
H A Detc.c231 (void) wcstombs((char *)mtmp, WCMHelp, BUFFLENGTH); in helplevel()
238 (void) wcstombs((char *)mtmp, WCMHelp, BUFFLENGTH); in helplevel()
274 (void) wcstombs((char *)SUCCorFAIL, WCNOTHsjrc, BUFFLENGTH); in exec_sjrc()
280 (void) wcstombs((char *)SUCCorFAIL, WCSUCCsjrc, BUFFLENGTH); in exec_sjrc()
287 (void) wcstombs((char *)SUCCorFAIL, WCSUCCsjrc, BUFFLENGTH); in exec_sjrc()
289 (void) wcstombs((char *)SUCCorFAIL, WCFAILsjrc, BUFFLENGTH); in exec_sjrc()
309 (void) wcstombs((char *)mtmp, WCWeight_mes, BUFFLENGTH); in change_weight()
341 (void) wcstombs((char *)dtmp, WCDiscon, BUFFLENGTH); in dconnect()
350 (void) wcstombs((char *)dtmp, WCRserv_OK, BUFFLENGTH); in dconnect()
392 (void) wcstombs((char *)rtmp, WCRserv, BUFFLENGTH); in reconnect()
[all …]
H A Dlibif.c70 (void) wcstombs((char *) yomi, yomiout, BUFFLENGTH*3); in SJ2_henkan()
153 (void) wcstombs((char *) yomi, s, BUFFLENGTH*3); in SJ2_getdouon()
193 (void) wcstombs((char *) y1, yomi1, BUFFLENGTH*2); in SJ2_clstudy()
194 (void) wcstombs((char *) y2, yomi2, BUFFLENGTH*2); in SJ2_clstudy()
210 (void)wcstombs((char *) y, yomi, (YOMILEN+1)*3); in SJ2_toroku()
211 (void)wcstombs((char *) k, kanji, (KLEN+1)*3); in SJ2_toroku()
227 (void)wcstombs((char *) y, yomi, (YOMILEN+1)*3); in SJ2_syoukyo()
228 (void)wcstombs((char *) k, kanji, (KLEN+1)*3); in SJ2_syoukyo()
/dports/devel/gnulib/gnulib-20140202-stable/doc/posix-functions/
H A Dwcstombs.texi1 @node wcstombs
2 @section @code{wcstombs}
3 @findex wcstombs
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstombs.html}
/dports/audio/libadplug/adplug-adplug-2.3.3/src/
H A Dvgm.cpp298 wcstombs(str, GD3.title_en, 256); in gettitle()
302 wcstombs(str, GD3.title_jp, 256); in gettitle()
313 wcstombs(str, GD3.author_en, 256); in getauthor()
317 wcstombs(str, GD3.author_jp, 256); in getauthor()
331 wcstombs(game, GD3.game_en, 256); in getdesc()
335 wcstombs(game, GD3.game_jp, 256); in getdesc()
339 wcstombs(system, GD3.system_en, 256); in getdesc()
343 wcstombs(system, GD3.system_jp, 256); in getdesc()
346 wcstombs(date, GD3.date, 256); in getdesc()
348 wcstombs(notes, GD3.notes, 256); in getdesc()
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/doc/posix-functions/
H A Dwcstombs.texi1 @node wcstombs
2 @section @code{wcstombs}
3 @findex wcstombs
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/wcstombs.htm…
/dports/security/beid/eid-mw-5.0.8/cardcomm/pkcs11/src/dialogs/dialogsgtk/
H A Ddlgs_gtk.cpp92 wcstombs(pin, wsPinName, sizeof pin); in DlgAskPin()
117 wcstombs(pin, wsPinName, sizeof pin); in DlgAskPins()
150 wcstombs(pin, wsPinName, sizeof pin); in DlgBadPin()
174 wcstombs(message, wsReader, 1024); in DlgDisplayPinpadInfo()
177 wcstombs(pin, wsPinName, sizeof pin); in DlgDisplayPinpadInfo()
224 wcstombs(message, wsAppPath, 1024); in DlgAskAccess()
/dports/shells/ksh93/ast-93u/src/lib/libast/stdio/
H A Dvfwscanf.c74 return wcstombs(buf, wuf, size); in wideread()
82 r = wcstombs(buf, wuf, size); in wideread()
99 n = wcstombs(NiL, fmt, 0); in vfwscanf()
109 wcstombs(w->fmt, fmt, n + 1); in vfwscanf()

12345678910>>...102