Searched refs:getstr (Results 1 – 10 of 10) sorted by relevance
/third_party/curl/src/ |
D | tool_getparam.c | 57 static ParameterError getstr(char **str, const char *val, bool allowblank) in getstr() function 892 err = getstr(&postdata, p, ALLOW_BLANK); in data_urlencode() 1121 err = getstr(&postdata, nextarg, ALLOW_BLANK); in set_data() 1358 err = getstr(&config->dns_ipv4_addr, nextarg, DENY_BLANK); in getparameter() 1365 err = getstr(&config->dns_ipv6_addr, nextarg, DENY_BLANK); in getparameter() 1372 err = getstr(&config->oauth_bearer, nextarg, DENY_BLANK); in getparameter() 1382 err = getstr(&config->doh_url, nextarg, ALLOW_BLANK); in getparameter() 1388 err = getstr(&config->cipher_list, nextarg, DENY_BLANK); in getparameter() 1395 err = getstr(&config->dns_interface, nextarg, DENY_BLANK); in getparameter() 1411 err = getstr(&config->dns_servers, nextarg, DENY_BLANK); in getparameter() [all …]
|
/third_party/cups-filters/filter/ |
D | getline.c | 42 getstr (lineptr, n, stream, terminator, offset) in getstr() function 121 return getstr (lineptr, n, stream, '\n', 0);
|
/third_party/python/Lib/test/ |
D | test_curses.py | 355 self.assertRaises(ValueError, win.getstr, -400) 356 self.assertRaises(ValueError, win.getstr, 2, 3, -400) 361 self.assertEqual(win.getstr(3, 1, 2), b'Lo') 363 self.assertEqual(win.getstr(3, 5, 10), b'ipsum') 365 self.assertEqual(win.getstr(1, 5), b'dolor') 367 self.assertEqual(win.getstr(2), b'si') 369 self.assertEqual(win.getstr(), b'amet')
|
/third_party/node/src/crypto/ |
D | crypto_common.cc | 305 template <const char* (*getstr)(const SSL_CIPHER* cipher)> 310 return OneByteString(env->isolate(), getstr(cipher)); in GetCipherValue()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0a4.rst | 316 In the curses module, raise an error if window.getstr() or window.instr() is
|
D | 3.5.3rc1.rst | 1186 In the curses module, raise an error if window.getstr() or window.instr() is
|
/third_party/python/Doc/howto/ |
D | curses.rst | 484 :meth:`~curses.window.getstr`. It isn't used very often, because its 492 s = stdscr.getstr(0,0, 15)
|
/third_party/python/Doc/library/ |
D | curses.rst | 984 .. method:: window.getstr() 985 window.getstr(n) 986 window.getstr(y, x) 987 window.getstr(y, x, n)
|
/third_party/curl/ |
D | CHANGES | 1374 Already in the getstr() function that clones the input argument.
|
/third_party/python/Misc/ |
D | HISTORY | 39 - In the curses module, raise an error if window.getstr() or window.instr() is
|