/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | controlFlowForCatchAndFinally.ts | 21 type Page = {close(): Promise<void>; content(): Promise<string>}; 22 type Browser = {close(): Promise<void>}; 59 await page.close(); // ok 60 AssertType(await page.close(), "void"); 61 AssertType(page.close(), "Promise<void>"); 62 AssertType(page.close, "() => Promise<void>"); 68 await browser.close(); // ok 69 AssertType(await browser.close(), "void"); 70 AssertType(browser.close(), "Promise<void>"); 71 AssertType(browser.close, "() => Promise<void>");
|
/arkcompiler/toolchain/websocket/ |
D | websocket.cpp | 225 close(client_); in Decode() 228 close(client_); in Decode() 309 close(fd_); in InitTcpWebSocket() 317 close(fd_); in InitTcpWebSocket() 328 close(fd_); in InitTcpWebSocket() 334 close(fd_); in InitTcpWebSocket() 356 close(fd_); in ConnectTcpWebSocket() 364 close(client_); in ConnectTcpWebSocket() 366 close(fd_); in ConnectTcpWebSocket() 388 close(fd_); in InitUnixWebSocket() [all …]
|
/arkcompiler/toolchain/websocket/test/ |
D | websocket_test.cpp | 69 close(client_); in ClientConnectUnixWebSocket() 78 close(client_); in ClientConnectUnixWebSocket() 86 close(client_); in ClientConnectUnixWebSocket() 97 close(client_); in ClientConnectUnixWebSocket() 124 close(client_); in ClientConnectTcpWebSocket() 133 close(client_); in ClientConnectTcpWebSocket() 142 close(client_); in ClientConnectTcpWebSocket() 151 close(client_); in ClientConnectTcpWebSocket() 181 close(client_); in ClientSendWSUpgradeReq() 209 close(client_); in ClientRecvWSUpgradeRsp() [all …]
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | dfx_jsnapi_tests.cpp | 65 fs.close(); in MatchJSONLineHeader() 71 fs.close(); in MatchJSONLineHeader() 81 outputString.close(); in HWTEST_F_L0() 109 outputString.close(); in HWTEST_F_L0() 186 outputString.close(); in HWTEST_F_L0() 205 inputStream.close(); in HWTEST_F_L0() 233 outputString.close(); in HWTEST_F_L0() 253 inputStream.close(); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
D | heap_tracker_test.cpp | 137 outputString.close(); in HWTEST_F_L0() 159 inputStream.close(); in HWTEST_F_L0() 191 outputString.close(); in HWTEST_F_L0() 215 inputStream.close(); in HWTEST_F_L0() 246 outputString.close(); in HWTEST_F_L0() 275 inputStream.close(); in HWTEST_F_L0() 466 outputString.close(); in HWTEST_F_L0() 502 inputStream.close(); in HWTEST_F_L0() 556 close(fd); in HWTEST_F_L0() 570 close(fd); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/platform/unix/ |
D | file.cpp | 74 close(fd); in Close() 87 close(fd); in FileMap() 93 close(fd); in FileMap()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
D | file_stream.cpp | 43 fileStream_.close(); in EndOfStream() 101 close(fd_); in EndOfStream()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot.cpp | 56 writer.close(); in Serialize() 84 writer.close(); in Serialize() 111 write.close(); in SerializeBuiltins() 117 write.close(); in SerializeBuiltins() 246 writer.close(); in WriteToFile()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
D | unix_native_stack_test.cpp | 42 close(fd);
|
/arkcompiler/ets_runtime/test/fuzztest/binarytotext_fuzzer/ |
D | binarytotext_fuzzer.cpp | 30 file.close(); in BinaryToTextFuzzTest()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
D | protobufSnapshotGenerator.cpp | 36 output.close(); in GenerateSnapshot() 97 output.close(); in UpdateCacheFile()
|
/arkcompiler/runtime_core/libpandabase/os/ |
D | unique_fd.h | 89 LOG_IF(PANDA_FAILURE_RETRY(::close(fd)) != 0, FATAL, COMMON) << "Incorrect fd: " << fd; in DefaultCloser()
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/ |
D | RightMenu.js | 52 RightMenu.close(); 70 static close() { method in RightMenu
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
D | file_path_helper_test.cpp | 64 stream.close(); in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | symbolTable.cpp | 42 fs.close(); in Initialize() 124 fs.close(); in WriteSymbolTable()
|
/arkcompiler/ets_frontend/test/scripts/ |
D | readme.md | 17 Do not close the cmd or terminal, or it will not run at the time you specified.
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | compilerUtils.ts | 70 iterator.close(); 186 iterator.close(); 193 iterator.close();
|
/arkcompiler/ets_runtime/tools/circuit_viewer/test/ |
D | test_viewer.py | 81 driver.close()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_ark_tools.cpp | 289 close(fd); in CreateFile() 293 close(fd); in CreateFile()
|
/arkcompiler/runtime_core/disassembler/ |
D | disasm.cpp | 47 res_pa.close(); in Disassemble()
|
/arkcompiler/runtime_core/libpandafile/tests/ |
D | pgo_test.cpp | 55 test_file.close(); in CreateProfile()
|
/arkcompiler/ets_frontend/ts2panda/src/base/ |
D | iterator.ts | 100 close(): void { method in Iterator
|
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/ |
D | readme.md | 19 <br />Click the "驱动卸载" button first and then click the "驱动安装" button, after that close the interfac…
|
/arkcompiler/ets_runtime/script/ |
D | run_ark_executable.py | 154 file.close()
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
D | file.h | 91 return close(fd_); in Close()
|