Searched refs:line (Results 1 – 11 of 11) sorted by relevance
/unit/test/java/mirror/ |
H A D | app.java | 20 String line; in doPost() local 22 while ((line = reader.readLine()) != null) { in doPost() 23 buffer.append(line); in doPost()
|
/unit/src/java/nginx/unit/websocket/ |
H A D | WsWebSocketContainer.java | 796 String line = null; in processResponse() local 809 if (line == null) { in processResponse() 810 line = readLine(response); in processResponse() 812 line += readLine(response); in processResponse() 814 if ("\r\n".equals(line)) { in processResponse() 816 } else if (line.endsWith("\r\n")) { in processResponse() 818 parseHeaders(line, headers); in processResponse() 820 status = parseStatus(line); in processResponse() 823 line = null; in processResponse() 835 String[] parts = line.trim().split(" "); in parseStatus() [all …]
|
/unit/ |
H A D | CONTRIBUTING.md | 73 - In the subject line, use the past tense ("Added feature", not "Add feature"); 77 - Limit the subject line to 67 characters, and the rest of the commit message 80 - Use subject line prefixes for commits that affect a specific portion of the 84 - Reference issues and PRs liberally after the subject line; if the commit 89 - Don't rely on command-line commit messages with `-m`; use the editor instead
|
H A D | README.md | 110 command line:
|
/unit/test/ |
H A D | test_proxy_chunked.py | 55 for line in re.split('\r\n', body): 57 m1 = re.search(r'(.*)\sX\s(\d+)', line) 62 add = line
|
/unit/src/python/ |
H A D | nxt_python_wsgi.c | 1257 if (nxt_slow_path(line == NULL)) { in nxt_py_input_readlines() 1262 if (PyBytes_GET_SIZE(line) == 0) { in nxt_py_input_readlines() 1263 Py_DECREF(line); in nxt_py_input_readlines() 1267 PyList_Append(res, line); in nxt_py_input_readlines() 1268 Py_DECREF(line); in nxt_py_input_readlines() 1286 PyObject *line; in nxt_py_input_next() local 1296 line = nxt_py_input_getline(pctx, SSIZE_MAX); in nxt_py_input_next() 1297 if (nxt_slow_path(line == NULL)) { in nxt_py_input_next() 1301 if (PyBytes_GET_SIZE(line) == 0) { in nxt_py_input_next() 1302 Py_DECREF(line); in nxt_py_input_next() [all …]
|
/unit/test/unit/ |
H A D | http.py | 221 for line in headers_lines: 222 m = re.search(r'(.*)\:\s(.*)', line)
|
/unit/src/ |
H A D | nxt_conf.h | 112 void nxt_conf_json_position(u_char *start, const u_char *pos, nxt_uint_t *line,
|
H A D | nxt_controller.c | 37 nxt_uint_t line; member 1240 &resp.line, &resp.column); in nxt_controller_process_config() 2043 resp->line != 0 ? 3 : 1); in nxt_controller_response() 2049 if (resp->line != 0) { in nxt_controller_response() 2051 resp->line, 1); in nxt_controller_response()
|
H A D | nxt_openssl.c | 60 static void nxt_openssl_lock(int mode, int type, const char *file, int line); 245 nxt_openssl_lock(int mode, int type, const char *file, int line) in nxt_openssl_lock() argument
|
H A D | nxt_conf.c | 2608 nxt_conf_json_position(u_char *start, const u_char *pos, nxt_uint_t *line, in nxt_conf_json_position() argument 2630 *line = lines; in nxt_conf_json_position()
|