/kernel/linux/linux-6.6/fs/jffs2/ |
H A D | writev.c | 21 int res; in jffs2_flash_direct_writev() local 22 res = jffs2_sum_add_kvec(c, vecs, count, (uint32_t) to); in jffs2_flash_direct_writev() 23 if (res) { in jffs2_flash_direct_writev() 24 return res; in jffs2_flash_direct_writev() 40 int res; in jffs2_flash_direct_write() local 45 res = jffs2_sum_add_kvec(c, vecs, 1, (uint32_t) ofs); in jffs2_flash_direct_write() 46 if (res) { in jffs2_flash_direct_write() 47 return res; in jffs2_flash_direct_write()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/ttm/ |
H A D | ttm_sys_manager.c | 13 struct ttm_resource **res) in ttm_sys_man_alloc() 15 *res = kzalloc(sizeof(**res), GFP_KERNEL); in ttm_sys_man_alloc() 16 if (!*res) in ttm_sys_man_alloc() 19 ttm_resource_init(bo, place, *res); in ttm_sys_man_alloc() 24 struct ttm_resource *res) in ttm_sys_man_free() 26 ttm_resource_fini(man, res); in ttm_sys_man_free() 27 kfree(res); in ttm_sys_man_free() 10 ttm_sys_man_alloc(struct ttm_resource_manager *man, struct ttm_buffer_object *bo, const struct ttm_place *place, struct ttm_resource **res) ttm_sys_man_alloc() argument 23 ttm_sys_man_free(struct ttm_resource_manager *man, struct ttm_resource *res) ttm_sys_man_free() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | lossless_audiodsp.c | 31 unsigned res = 0; in scalarproduct_and_madd_int16_c() local 34 res += *v1 * *v2++; in scalarproduct_and_madd_int16_c() 36 res += *v1 * *v2++; in scalarproduct_and_madd_int16_c() 39 return res; in scalarproduct_and_madd_int16_c() 46 int res = 0; in scalarproduct_and_madd_int32_c() local 49 res += *v1 * (uint32_t)*v2++; in scalarproduct_and_madd_int32_c() 51 res += *v1 * (uint32_t)*v2++; in scalarproduct_and_madd_int32_c() 54 return res; in scalarproduct_and_madd_int32_c()
|
/third_party/curl/tests/libtest/ |
H A D | lib1555.c | 40 CURLcode res = CURLE_OK; in progressCallback() local 48 res = curl_easy_recv(curl, buffer, 256, &n); in progressCallback() 49 printf("curl_easy_recv returned %d\n", res); in progressCallback() 50 res = curl_easy_send(curl, buffer, n, &n); in progressCallback() 51 printf("curl_easy_send returned %d\n", res); in progressCallback() 58 int res = 0; in test() local 73 res = curl_easy_perform(curl); in test() 82 return res; in test()
|
/third_party/node/test/internet/ |
H A D | test-inspector-help-page.js | 17 https.get(url, { agent: new https.Agent() }, common.mustCall((res) => { 18 assert(res.statusCode >= 200 && res.statusCode < 400); 20 if (res.statusCode >= 300) 21 return check(new URL(res.headers.location, url), cb); 25 res.setEncoding('utf8'); 26 res.on('data', (data) => { 30 res.on('end', common.mustCall(() => {
|
/third_party/node/test/sequential/ |
H A D | test-http-server-keep-alive-timeout-slow-server.js | 7 const server = http.createServer(common.mustCall((req, res) => { 9 res.end('ok'); 13 res.end('ok'); 26 const req = http.request({ agent, path, port }, common.mustCall((res) => { 27 assert.strictEqual(res.statusCode, 200); 29 res.setEncoding('utf8'); 32 res.on('data', (chunk) => { 36 res.on('end', common.mustCall(() => {
|
/kernel/linux/linux-5.10/drivers/mailbox/ |
H A D | zynqmp-ipi-mailbox.c | 123 struct arm_smccc_res *res) in zynqmp_ipi_fw_call() 131 arm_smccc_smc(a0, a1, a2, a3, 0, 0, 0, 0, res); in zynqmp_ipi_fw_call() 133 arm_smccc_hvc(a0, a1, a2, a3, 0, 0, 0, 0, res); in zynqmp_ipi_fw_call() 154 struct arm_smccc_res res; in zynqmp_ipi_interrupt() local 164 zynqmp_ipi_fw_call(ipi_mbox, arg0, arg3, &res); in zynqmp_ipi_interrupt() 165 ret = (int)(res.a0 & 0xFFFFFFFF); in zynqmp_ipi_interrupt() 194 struct arm_smccc_res res; in zynqmp_ipi_peek_data() local 202 zynqmp_ipi_fw_call(ipi_mbox, arg0, 0, &res); in zynqmp_ipi_peek_data() 203 ret = (int)(res.a0 & 0xFFFFFFFF); in zynqmp_ipi_peek_data() 234 struct arm_smccc_res res; in zynqmp_ipi_last_tx_done() local 121 zynqmp_ipi_fw_call(struct zynqmp_ipi_mbox *ipi_mbox, unsigned long a0, unsigned long a3, struct arm_smccc_res *res) zynqmp_ipi_fw_call() argument 272 struct arm_smccc_res res; zynqmp_ipi_send_data() local 322 struct arm_smccc_res res; zynqmp_ipi_startup() local 364 struct arm_smccc_res res; zynqmp_ipi_shutdown() local 436 zynqmp_ipi_mbox_get_buf_res(struct device_node *node, const char *name, struct resource *res) zynqmp_ipi_mbox_get_buf_res() argument 479 struct resource res; zynqmp_ipi_mbox_probe() local [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/intersil/hostap/ |
H A D | hostap_cs.c | 225 int res; in sandisk_set_iobase() local 228 res = pcmcia_write_config_byte(hw_priv->link, 0x10, in sandisk_set_iobase() 230 if (res != 0) { in sandisk_set_iobase() 232 " res=%d\n", res); in sandisk_set_iobase() 236 res = pcmcia_write_config_byte(hw_priv->link, 0x12, in sandisk_set_iobase() 238 if (res != 0) { in sandisk_set_iobase() 240 " res=%d\n", res); in sandisk_set_iobase() 262 int res, re in sandisk_enable_wireless() local 326 int res; prism2_pccard_cor_sreset() local 371 int res; prism2_pccard_genesis_reset() local [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/intersil/hostap/ |
H A D | hostap_cs.c | 224 int res; in sandisk_set_iobase() local 227 res = pcmcia_write_config_byte(hw_priv->link, 0x10, in sandisk_set_iobase() 229 if (res != 0) { in sandisk_set_iobase() 231 " res=%d\n", res); in sandisk_set_iobase() 235 res = pcmcia_write_config_byte(hw_priv->link, 0x12, in sandisk_set_iobase() 237 if (res != 0) { in sandisk_set_iobase() 239 " res=%d\n", res); in sandisk_set_iobase() 261 int res, re in sandisk_enable_wireless() local 325 int res; prism2_pccard_cor_sreset() local 370 int res; prism2_pccard_genesis_reset() local [all...] |
/kernel/linux/linux-6.6/drivers/mailbox/ |
H A D | zynqmp-ipi-mailbox.c | 121 struct arm_smccc_res *res) in zynqmp_ipi_fw_call() 129 arm_smccc_smc(a0, a1, a2, a3, 0, 0, 0, 0, res); in zynqmp_ipi_fw_call() 131 arm_smccc_hvc(a0, a1, a2, a3, 0, 0, 0, 0, res); in zynqmp_ipi_fw_call() 152 struct arm_smccc_res res; in zynqmp_ipi_interrupt() local 162 zynqmp_ipi_fw_call(ipi_mbox, arg0, arg3, &res); in zynqmp_ipi_interrupt() 163 ret = (int)(res.a0 & 0xFFFFFFFF); in zynqmp_ipi_interrupt() 192 struct arm_smccc_res res; in zynqmp_ipi_peek_data() local 200 zynqmp_ipi_fw_call(ipi_mbox, arg0, 0, &res); in zynqmp_ipi_peek_data() 201 ret = (int)(res.a0 & 0xFFFFFFFF); in zynqmp_ipi_peek_data() 232 struct arm_smccc_res res; in zynqmp_ipi_last_tx_done() local 119 zynqmp_ipi_fw_call(struct zynqmp_ipi_mbox *ipi_mbox, unsigned long a0, unsigned long a3, struct arm_smccc_res *res) zynqmp_ipi_fw_call() argument 270 struct arm_smccc_res res; zynqmp_ipi_send_data() local 320 struct arm_smccc_res res; zynqmp_ipi_startup() local 362 struct arm_smccc_res res; zynqmp_ipi_shutdown() local 434 zynqmp_ipi_mbox_get_buf_res(struct device_node *node, const char *name, struct resource *res) zynqmp_ipi_mbox_get_buf_res() argument 477 struct resource res; zynqmp_ipi_mbox_probe() local [all...] |
/third_party/lzma/C/Util/7z/ |
H A D | 7zMain.c | 217 WRes res;
in MyCreateDir() 221 res =
in MyCreateDir() 229 return res;
in MyCreateDir() 240 WRes res;
in OutFile_OpenUtf16() 243 res = OutFile_Open(p, (const char *)buf.data);
in OutFile_OpenUtf16() 245 return res;
in OutFile_OpenUtf16() 253 SRes res;
in PrintString() local 255 res = Utf16_To_Char(&buf, s
in PrintString() 260 if (res == SZ_OK)
in PrintString() 263 return res;
in PrintString() 408 int res; Set_File_FILETIME() local 552 SRes res; main() local [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_getres/ |
H A D | 3-1.c | 21 struct timespec res; in main() local 23 /* Initialize res to a number much larger than the resolution in main() 26 res.tv_sec = LARGENUM; in main() 27 res.tv_nsec = LARGENUM; in main() 28 if (clock_getres(CLOCK_MONOTONIC, &res) == 0) { in main() 29 if (res.tv_sec != LARGENUM) { //assume initialized in main() 32 (int)res.tv_sec, (int)res.tv_nsec); in main() 37 printf("clock_getres() success, but res not filled\n"); in main()
|
H A D | 1-1.c | 8 * Test that clock_getres() returns the resolution of clock_id in res. 19 struct timespec res; in main() local 21 /* Initialize res to a number much larger than the resolution in main() 24 res.tv_sec = LARGENUM; in main() 25 res.tv_nsec = LARGENUM; in main() 26 if (clock_getres(CLOCK_REALTIME, &res) == 0) { in main() 27 if (res.tv_sec != LARGENUM) { //assume initialized in main() 30 (int)res.tv_sec, (int)res.tv_nsec); in main() 35 printf("clock_getres() success, but res no in main() [all...] |
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ecp_ppc.c | 14 void ecp_nistz256_mul_mont(unsigned long res[4], const unsigned long a[4], 17 void ecp_nistz256_to_mont(unsigned long res[4], const unsigned long in[4]); 18 void ecp_nistz256_to_mont(unsigned long res[4], const unsigned long in[4]) in ecp_nistz256_to_mont() argument 25 ecp_nistz256_mul_mont(res, in, RR); in ecp_nistz256_to_mont() 28 void ecp_nistz256_from_mont(unsigned long res[4], const unsigned long in[4]); 29 void ecp_nistz256_from_mont(unsigned long res[4], const unsigned long in[4]) in ecp_nistz256_from_mont() argument 33 ecp_nistz256_mul_mont(res, in, one); in ecp_nistz256_from_mont()
|
/third_party/openssl/crypto/ec/ |
H A D | ecp_ppc.c | 14 void ecp_nistz256_mul_mont(unsigned long res[4], const unsigned long a[4], 17 void ecp_nistz256_to_mont(unsigned long res[4], const unsigned long in[4]); 18 void ecp_nistz256_to_mont(unsigned long res[4], const unsigned long in[4]) in ecp_nistz256_to_mont() argument 25 ecp_nistz256_mul_mont(res, in, RR); in ecp_nistz256_to_mont() 28 void ecp_nistz256_from_mont(unsigned long res[4], const unsigned long in[4]); 29 void ecp_nistz256_from_mont(unsigned long res[4], const unsigned long in[4]) in ecp_nistz256_from_mont() argument 33 ecp_nistz256_mul_mont(res, in, one); in ecp_nistz256_from_mont()
|
/foundation/ability/ability_runtime/services/dataobsmgr/src/ |
H A D | dataobs_mgr_proxy.cpp | 74 int32_t res = IPC_ERROR; in RegisterObserver() local 75 return reply.ReadInt32(res) ? res : IPC_ERROR; in RegisterObserver() 98 int32_t res = IPC_ERROR; in UnregisterObserver() local 99 return reply.ReadInt32(res) ? res : IPC_ERROR; in UnregisterObserver() 123 int32_t res = IPC_ERROR; in NotifyChange() local 124 return reply.ReadInt32(res) ? res : IPC_ERROR; in NotifyChange() 155 int32_t res in RegisterObserverExt() local 179 int32_t res = IPC_ERROR; UnregisterObserverExt() local 208 int32_t res = IPC_ERROR; UnregisterObserverExt() local 238 int32_t res = IPC_ERROR; NotifyChangeExt() local [all...] |
/kernel/linux/linux-5.10/drivers/dma/ |
H A D | mcf-edma.c | 104 struct resource *res; in mcf_edma_irq_init() local 106 res = platform_get_resource_byname(pdev, in mcf_edma_irq_init() 108 if (!res) in mcf_edma_irq_init() 111 for (ret = 0, i = res->start; i <= res->end; ++i) in mcf_edma_irq_init() 116 res = platform_get_resource_byname(pdev, in mcf_edma_irq_init() 118 if (!res) in mcf_edma_irq_init() 121 for (ret = 0, i = res->start; i <= res->end; ++i) in mcf_edma_irq_init() 149 struct resource *res; in mcf_edma_irq_free() local 185 struct resource *res; mcf_edma_probe() local [all...] |
/kernel/liteos_m/testsuites/unittest/posix/src/fs/pressure/ |
H A D | posix_fs_pressure_test.c | 152 int res; variable 162 res = sprintf_s(tmpFileName, TEST_BUF_SIZE, "%s%02d", TEMP_FILE_PATH, j); 163 if (res < 0) { 180 res = sprintf_s(tmpFileName, TEST_BUF_SIZE, "%s%02d", TEMP_FILE_PATH, i); 181 if (res < 0) { 190 res = sprintf_s(tmpDirName, TEST_BUF_SIZE, "%s%02d", TEMP_DIR_PATH, k); 191 if (res < 0) { 202 res = sprintf_s(tmpDirName, TEST_BUF_SIZE, "%s%02d", TEMP_DIR_PATH, i); 203 if (res < 0) { 212 res [all...] |
/third_party/astc-encoder/Test/ |
H A D | astc_test_image.py | 205 res = encoder.run_test(image, blkSz, "-%s" % quality, testRuns, 207 res = trs.Record(blkSz, image.testFile, res[0], res[1], res[2], res[3]) 208 resultSet.add_record(res) 211 refResult = testRef.get_matching_record(res) 212 res.set_status(determine_result(image, refResult, res)) [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_idiv.c | 171 nir_ssa_def *res = emit_udiv(bld, lhs, rhs, false); in emit_idiv() local 172 return nir_bcsel(bld, d_sign, nir_ineg(bld, res), res); in emit_idiv() 174 nir_ssa_def *res = emit_udiv(bld, lhs, rhs, true); in emit_idiv() local 175 res = nir_bcsel(bld, lh_sign, nir_ineg(bld, res), res); in emit_idiv() 177 nir_ssa_def *cond = nir_ieq_imm(bld, res, 0); in emit_idiv() 179 res = nir_bcsel(bld, cond, res, nir_iad in emit_idiv() 213 nir_ssa_def *res = nir_fmul(b, p, rcp); convert_instr_small() local [all...] |
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_opt.c | 131 int res = ctx->proc(ctx->data, arg, key, &ctx->outargs); in call_proc() local 132 if (res == -1 || !res) in call_proc() 133 return res; in call_proc() 222 int res; in process_opt_sep_arg() local 236 res = process_opt(ctx, opt, sep, newarg, iso); in process_opt_sep_arg() 239 return res; in process_opt_sep_arg() 248 int res; in process_gopt() local 250 res = process_opt_sep_arg(ctx, opt, sep, arg, iso); in process_gopt() 252 res in process_gopt() 266 int res; process_real_option_group() local 295 int res; process_option_group() local 360 int res; fuse_opt_parse() local [all...] |
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_manager_proxy_test.cpp | 169 sptr<DisplayInfo> res = nullptr; in HWTEST_F() local 172 res = screenSessionManagerProxy->GetDefaultDisplayInfo(); in HWTEST_F() 176 ASSERT_NE(res, expectation); in HWTEST_F() 178 ASSERT_EQ(res, expectation); in HWTEST_F() 197 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; in HWTEST_F() local 200 res = screenSessionManagerProxy->SetScreenActiveMode(id, modeId); in HWTEST_F() 204 ASSERT_NE(res, DMError::DM_ERROR_IPC_FAILED); in HWTEST_F() 206 ASSERT_EQ(res, DMError::DM_ERROR_IPC_FAILED); in HWTEST_F() 225 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; in HWTEST_F() local 228 res in HWTEST_F() 253 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 283 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 311 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 339 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 367 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 395 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 423 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 450 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 478 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 506 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 534 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 562 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 590 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 1030 sptr<ScreenGroupInfo> res = nullptr; HWTEST_F() local 1076 std::shared_ptr<Media::PixelMap> res = nullptr; HWTEST_F() local 1104 sptr<DisplayInfo> res = nullptr; HWTEST_F() local 1131 sptr<DisplayInfo> res = nullptr; HWTEST_F() local 1180 sptr<ScreenInfo> res = nullptr; HWTEST_F() local 1316 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 1345 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 1373 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local 1420 sptr<CutoutInfo> res = nullptr; HWTEST_F() local [all...] |
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | nfs42proc.c | 56 struct nfs42_falloc_res res = { in _nfs42_proc_fallocate() local 62 msg->rpc_resp = &res; in _nfs42_proc_fallocate() 75 res.falloc_fattr = nfs_alloc_fattr(); in _nfs42_proc_fallocate() 76 if (!res.falloc_fattr) in _nfs42_proc_fallocate() 80 &args.seq_args, &res.seq_res, 0); in _nfs42_proc_fallocate() 89 res.falloc_fattr); in _nfs42_proc_fallocate() 95 kfree(res.falloc_fattr); in _nfs42_proc_fallocate() 176 static int handle_async_copy(struct nfs42_copy_res *res, in handle_async_copy() argument 197 if (memcmp(&res->write_res.stateid, &iter->stateid, in handle_async_copy() 211 memcpy(©->stateid, &res in handle_async_copy() 256 process_copy_commit(struct file *dst, loff_t pos_dst, struct nfs42_copy_res *res) process_copy_commit() argument 309 _nfs42_proc_copy(struct file *src, struct nfs_lock_context *src_lock, struct file *dst, struct nfs_lock_context *dst_lock, struct nfs42_copy_args *args, struct nfs42_copy_res *res, struct nl4_server *nss, nfs4_stateid *cnr_stateid, bool *restart) _nfs42_proc_copy() argument 428 struct nfs42_copy_res res; nfs42_proc_copy() local 504 struct nfs42_offload_status_res res; global() member 585 _nfs42_proc_copy_notify(struct file *src, struct file *dst, struct nfs42_copy_notify_args *args, struct nfs42_copy_notify_res *res) _nfs42_proc_copy_notify() argument 617 trace_nfs4_copy_notify(file_inode(src), args, res, status); _nfs42_proc_copy_notify() local 626 nfs42_proc_copy_notify(struct file *src, struct file *dst, struct nfs42_copy_notify_res *res) nfs42_proc_copy_notify() argument 672 struct nfs42_seek_res res; _nfs42_proc_llseek() local 1065 struct nfs42_clone_res res = { _nfs42_proc_clone() local 1173 struct nfs42_removexattrres res; _nfs42_proc_removexattr() local 1205 struct nfs42_setxattrres res = { _nfs42_proc_setxattr() local 1261 struct nfs42_getxattrres res; _nfs42_proc_getxattr() local 1308 struct nfs42_listxattrsres res = { _nfs42_proc_listxattrs() local [all...] |
/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/ |
H A D | res_sched_service_test.cpp | 128 int res = resSchedService_->Dump(wrongFd, argsNull);
in HWTEST_F() local 129 EXPECT_NE(res, ERR_OK);
in HWTEST_F() 132 res = resSchedService_->Dump(correctFd, argsNull);
in HWTEST_F() 135 res = resSchedService_->Dump(correctFd, argsHelp);
in HWTEST_F() 138 res = resSchedService_->Dump(correctFd, argsAll);
in HWTEST_F() 141 res = resSchedService_->Dump(correctFd, argsError);
in HWTEST_F() 144 res = resSchedService_->Dump(correctFd, argsPlugin);
in HWTEST_F() 147 res = resSchedService_->Dump(correctFd, argsOnePlugin);
in HWTEST_F() 150 res = resSchedService_->Dump(correctFd, argsOnePlugin1);
in HWTEST_F() 153 res in HWTEST_F() 411 int32_t res = resSchedService_->GetSystemloadLevel(); HWTEST_F() local 431 int32_t res = resSchedService_->GetSystemloadLevel(); HWTEST_F() local 646 nlohmann::json res = resSchedServiceStub_->StringToJsonObj(""); HWTEST_F() local 653 nlohmann::json res = resSchedServiceStub_->StringToJsonObj(""); StringToJsonTask() local 682 int32_t res = resSchedServiceStub_->OnRemoteRequest( HWTEST_F() local 709 int32_t res = resSchedServiceStub_->OnRemoteRequest( RemoteRequestTask() local [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | mmsh.c | 79 int chunk_len, res, ext_header_len; in get_chunk_header() local 81 res = ffurl_read_complete(mms->mms_hd, chunk_header, CHUNK_HEADER_LENGTH); in get_chunk_header() 82 if (res != CHUNK_HEADER_LENGTH) { in get_chunk_header() 103 res = ffurl_read_complete(mms->mms_hd, ext_header, ext_header_len); in get_chunk_header() 104 if (res != ext_header_len) { in get_chunk_header() 117 int res; in read_data_packet() local 124 res = ffurl_read_complete(mms->mms_hd, mms->in_buffer, len); in read_data_packet() 126 if (res != len) { in read_data_packet() 145 int res, len; in get_http_header_data() local 150 res in get_http_header_data() 331 int res, len = 0; handle_chunk_type() local 358 int res = 0; mmsh_read() local [all...] |