Searched refs:setting (Results 1 - 2 of 2) sorted by relevance

/ast/src/lib/libast/uwin/
H A Dcrypt.c840 * Return a pointer to static data consisting of the "setting"
841 * followed by an encryption produced by the "key" and "setting".
843 extern char * crypt(register const char *key, register const char *setting) { argument
867 switch (*setting) {
885 *encp++ = *setting++;
890 if ((t = (unsigned char)setting[i]) == '\0')
895 setting += 4;
906 if ((t = (unsigned char)setting[i]) == '\0')
/ast/src/lib/libtksh/tcl/
H A DtclUnixChan.c1478 int setting;
1483 setting = fcntl(sock, F_GETFL, 0);
1486 setting &= (~(O_NONBLOCK));
1489 setting |= O_NONBLOCK;
1491 if (fcntl(sock, F_SETFL, setting) < 0) {
1499 setting = 0;
1500 if (ioctl(sock, (int) FIONBIO, &setting) == -1) {
1505 setting = 1;
1506 if (ioctl(sock, (int) FIONBIO, &setting) == -1) {

Completed in 18 milliseconds