Searched refs:ws (Results 1 - 25 of 208) sorted by relevance

123456789

/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dwcsdup.c31 wcsdup (ws)
32 const wchar_t *ws;
37 len = wcslen (ws);
42 return (wcscpy (ret, ws));
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dastwinsize.c76 struct winsize ws; local
78 if (!ttctl(fd, TIOCGWINSZ, &ws) && ws.ws_col > 0 && ws.ws_row > 0)
80 if (rows) *rows = ws.ws_row;
81 if (cols) *cols = ws.ws_col;
98 struct winsize ws;
100 if (!ttctl(fd, JWINSIZE, &ws) && ws.bytesx > 0 && ws
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DLocaleXlocale.inc27 llvm::SmallVector<wchar_t,200> ws(size);
28 size = mbstowcs_l(&ws[0],s.c_str(),ws.size(),l);
29 assert(ws.size()==size);
30 return wcswidth_l(&ws[0],ws.size(),l);
/macosx-10.9.5/Heimdal-323.92.1/appl/telnet/telnetd/
H A Dtermstat.c96 struct winsize ws; local
105 ws.ws_col = parm1;
106 ws.ws_row = parm2;
107 ioctl(ourpty, TIOCSWINSZ, (char *)&ws);
/macosx-10.9.5/ruby-104/ruby/lib/irb/cmd/
H A Dpushws.rb2 # change-ws.rb -
20 irb_context.workspaces.collect{|ws| ws.main}
/macosx-10.9.5/Security-55471.14.18/include/security_filedb/
H A DMetaAttribute.cpp70 MetaAttribute::packNumberOfValues(WriteSection &ws, uint32 numValues, uint32 &valueOffset) const argument
76 ws.put(offset, 0);
80 ws.put(offset, valueOffset | 1);
84 ws.put(offset, valueOffset);
85 valueOffset = ws.put(valueOffset, numValues);
112 MetaAttribute::packAttribute(WriteSection &ws, uint32 &valueOffset, uint32 numValues, argument
115 packNumberOfValues(ws, numValues, valueOffset);
117 packValue(ws, valueOffset, values[i]);
146 MetaAttribute::copyValueBytes(uint32 valueIndex, const ReadSection &rs, WriteSection &ws, argument
157 copyValue(rs, valueOffset, ws, writeOffse
[all...]
H A DMetaAttribute.h49 void packAttribute(WriteSection &ws, uint32 &valueOffset,
55 void copyValueBytes(uint32 valueIndex, const ReadSection &rs, WriteSection &ws,
61 virtual void packValue(WriteSection &ws, uint32 &offset, const CSSM_DATA &data) const = 0;
65 virtual void copyValue(const ReadSection &rs, uint32 &readOffset, WriteSection &ws,
75 void packNumberOfValues(WriteSection &ws, uint32 numValues, uint32 &valueOffset) const;
102 void packValue(WriteSection &ws, uint32 &offset, const CSSM_DATA &data) const argument
105 value.pack(ws, offset);
129 void copyValue(const ReadSection &rs, uint32 &readOffset, WriteSection &ws, uint32 &writeOffset) const argument
132 value.pack(ws, writeOffset);
/macosx-10.9.5/Security-55471.14.18/libsecurity_filedb/lib/
H A DMetaAttribute.cpp70 MetaAttribute::packNumberOfValues(WriteSection &ws, uint32 numValues, uint32 &valueOffset) const argument
76 ws.put(offset, 0);
80 ws.put(offset, valueOffset | 1);
84 ws.put(offset, valueOffset);
85 valueOffset = ws.put(valueOffset, numValues);
112 MetaAttribute::packAttribute(WriteSection &ws, uint32 &valueOffset, uint32 numValues, argument
115 packNumberOfValues(ws, numValues, valueOffset);
117 packValue(ws, valueOffset, values[i]);
146 MetaAttribute::copyValueBytes(uint32 valueIndex, const ReadSection &rs, WriteSection &ws, argument
157 copyValue(rs, valueOffset, ws, writeOffse
[all...]
H A DMetaAttribute.h49 void packAttribute(WriteSection &ws, uint32 &valueOffset,
55 void copyValueBytes(uint32 valueIndex, const ReadSection &rs, WriteSection &ws,
61 virtual void packValue(WriteSection &ws, uint32 &offset, const CSSM_DATA &data) const = 0;
65 virtual void copyValue(const ReadSection &rs, uint32 &readOffset, WriteSection &ws,
75 void packNumberOfValues(WriteSection &ws, uint32 numValues, uint32 &valueOffset) const;
102 void packValue(WriteSection &ws, uint32 &offset, const CSSM_DATA &data) const argument
105 value.pack(ws, offset);
129 void copyValue(const ReadSection &rs, uint32 &readOffset, WriteSection &ws, uint32 &writeOffset) const argument
132 value.pack(ws, writeOffset);
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dfgetws.c43 fgetws_l(wchar_t * __restrict ws, int n, FILE * __restrict fp, locale_t loc) argument
66 wsp = ws;
93 if (wsp == ws)
102 return (ws);
110 fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp) argument
112 return fgetws_l(ws, n, fp, __current_locale());
H A Dfputws.c44 fputws_l(const wchar_t * __restrict ws, FILE * __restrict fp, locale_t loc) argument
50 const wchar_t *wsp = ws;
81 fputws(const wchar_t * __restrict ws, FILE * __restrict fp) argument
83 return fputws_l(ws, fp, __current_locale());
/macosx-10.9.5/dtrace-118.1/test/tst/common/speculation/
H A Derr.D_ACT_SPEC.SpeculateWithBreakPoint.d1 #!/usr/sbin/dtrace -ws
H A Derr.D_ACT_SPEC.SpeculateWithChill.d1 #!/usr/sbin/dtrace -ws
H A Derr.D_ACT_SPEC.SpeculateWithCopyOut.d1 #!/usr/sbin/dtrace -ws
H A Derr.D_ACT_SPEC.SpeculateWithCopyOutStr.d1 #!/usr/sbin/dtrace -ws
H A Derr.D_ACT_SPEC.SpeculateWithPanic.d1 #!/usr/sbin/dtrace -ws
H A Derr.D_ACT_SPEC.SpeculateWithRaise.d1 #!/usr/sbin/dtrace -ws
H A Derr.D_ACT_SPEC.SpeculateWithStop.d1 #!/usr/sbin/dtrace -ws
/macosx-10.9.5/ruby-104/ruby/lib/irb/ext/
H A Dworkspaces.rb2 # push-ws.rb -
40 ws = workspaces.pop
42 @workspace = ws
/macosx-10.9.5/apache-786.1/httpd/server/
H A Dscoreboard.c344 worker_score *ws; local
349 ws = &ap_scoreboard_image->servers[sb->child_num][sb->thread_num];
352 times(&ws->times);
354 ws->access_count++;
355 ws->my_access_count++;
356 ws->conn_count++;
357 ws->bytes_served += r->bytes_sent;
358 ws->my_bytes_served += r->bytes_sent;
359 ws->conn_bytes += r->bytes_sent;
428 worker_score *ws; local
485 worker_score *ws; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dget_window_size.c67 struct winsize ws; local
69 ret = ioctl(fd, TIOCGWINSZ, &ws);
72 *lines = ws.ws_row;
74 *columns = ws.ws_col;
/macosx-10.9.5/mail_cmds-29/mail/
H A Dmain.c374 struct winsize ws; local
377 if (ioctl(1, TIOCGWINSZ, (char *)&ws) < 0)
378 ws.ws_col = ws.ws_row = 0;
387 else if (ws.ws_row != 0)
388 screenheight = ws.ws_row;
391 if ((realscreenheight = ws.ws_row) == 0)
393 if ((screenwidth = ws.ws_col) == 0)
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_windows.c127 wchar_t *ws, *wsp; local
195 ws = wsp = malloc(slen * sizeof(wchar_t));
196 if (ws == NULL) {
213 return (ws);
445 wchar_t *ws; local
456 ws = permissive_name(path);
457 if (ws == NULL) {
461 r = SetCurrentDirectoryW(ws);
462 free(ws);
473 wchar_t *ws; local
569 wchar_t *ws; local
615 wchar_t *ws; local
763 wchar_t *ws; local
982 wchar_t *ws; local
[all...]
/macosx-10.9.5/libarchive-29/libarchive/tar/
H A Dbsdtar_windows.c64 wchar_t *ws, *wsp; local
132 ws = wsp = malloc(slen * sizeof(wchar_t));
133 if (ws == NULL) {
149 ws[alloclen - 1] = L'\0';
150 return (ws);
156 wchar_t *ws; local
167 ws = permissive_name(path);
168 if (ws == NULL) {
172 r = SetCurrentDirectoryW(ws);
173 free(ws);
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/telnetd.tproj/
H A Dtermstat.c523 struct winsize ws; local
540 ws.ws_col = parm1;
541 ws.ws_row = parm2;
542 (void) ioctl(spty, TIOCSWINSZ, (char *)&ws);
605 struct winsize ws; local
607 memset((char *)&ws, 0, sizeof(ws));
608 ws.ws_col = def_col;
609 ws.ws_row = def_row;
610 (void) ioctl(spty, TIOCSWINSZ, (char *)&ws);
[all...]

Completed in 166 milliseconds

123456789