├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .kotlin-js-store ├── js │ └── yarn.lock └── wasm │ └── yarn.lock ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RELEASING.md ├── gh-pages └── publish.sh ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library └── process │ ├── .gitignore │ ├── README.md │ ├── api │ ├── process.api │ └── process.klib.api │ ├── build.gradle.kts │ ├── gradle.properties │ └── src │ ├── androidNativeArm32Main │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── AndroidNativeArm32Platform.kt │ │ └── spawn │ │ └── AndroidNativeArm32PosixSpawn.kt │ ├── androidNativeArm64Main │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── AndroidNativeArm64Platform.kt │ │ └── spawn │ │ └── AndroidNativeArm64PosixSpawn.kt │ ├── androidNativeMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── AndroidNativePlatform.kt │ │ ├── spawn │ │ └── AndroidNativePosixSpawn.kt │ │ └── stdio │ │ └── AndroidStdioDescriptor.kt │ ├── androidNativeTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── AndroidNativeTestPlatform.kt │ │ ├── spawn │ │ └── PosixSpawnAndroidNativeUnitTest.kt │ │ └── stdio │ │ └── StdioDescriptorAndroidNativeUnitTest.kt │ ├── androidNativeX64Main │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── AndroidNativeX64Platform.kt │ │ └── spawn │ │ └── AndroidNativeX64PosixSpawn.kt │ ├── androidNativeX86Main │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── AndroidNativeX86Platform.kt │ │ └── spawn │ │ └── AndroidNativeX86PosixSpawn.kt │ ├── blockingMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── AsyncWriteStream.kt │ │ ├── Blocking.kt │ │ ├── BufferedWriteStream.kt │ │ ├── ReadBuffer.kt │ │ └── internal │ │ ├── -BlockingPlatform.kt │ │ ├── -OutputFeedBuffer.kt │ │ ├── ReadStream.kt │ │ └── WriteStream.kt │ ├── blockingTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── BlockingUnitTest.kt │ │ ├── ReadBufferLineLineOutputFeedUnitTest.kt │ │ └── internal │ │ ├── OutputFeedBufferUnitTest.kt │ │ └── ProcessBlockingUnitTest.kt │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── AsyncWriteStream.kt │ │ ├── Blocking.kt │ │ ├── InternalProcessApi.kt │ │ ├── Output.kt │ │ ├── OutputFeed.kt │ │ ├── Process.kt │ │ ├── ProcessException.kt │ │ ├── ReadBuffer.kt │ │ ├── Signal.kt │ │ ├── Stdio.kt │ │ └── internal │ │ ├── -CommonPlatform.kt │ │ ├── -Condition.kt │ │ ├── -DoNotReferenceDirectly.kt │ │ ├── -Instance.kt │ │ ├── -Lock.kt │ │ ├── -RealLineOutputFeed.kt │ │ ├── -SynchronizedSet.kt │ │ ├── PID.kt │ │ └── PlatformBuilder.kt │ ├── commonTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── CommonTestPlatform.kt │ │ ├── OutputOptionsUnitTest.kt │ │ ├── ProcessUnitTest.kt │ │ ├── ReadBufferUnitTest.kt │ │ ├── StdioConfigUnitTest.kt │ │ └── internal │ │ └── InstanceUnitTest.kt │ ├── darwinMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── DarwinPlatform.kt │ │ ├── spawn │ │ └── DarwinPosixSpawn.kt │ │ └── stdio │ │ └── DarwinStdioDescriptor.kt │ ├── darwinTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ └── DarwinTestPlatform.kt │ ├── iosMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── PlatformBuilder.kt │ │ └── spawn │ │ └── IosPosixSpawn.kt │ ├── iosTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── IosTestPlatform.kt │ │ └── spawn │ │ └── PosixSpawnIosUnitTest.kt │ ├── jsMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── JsEvents.kt │ │ ├── JsPlatform.kt │ │ ├── js │ │ ├── _JsArrays.kt │ │ ├── _JsError.kt │ │ └── _JsObject.kt │ │ └── node │ │ ├── _ModuleBuffer.kt │ │ ├── _ModuleEvents.kt │ │ ├── _ModuleStream.kt │ │ └── _Modules.kt │ ├── jsTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── JsTestPlatform.kt │ ├── jsWasmJsMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── AsyncWriteStream.kt │ │ ├── Blocking.kt │ │ ├── JsProcessBuilder.kt │ │ ├── ReadBuffer.kt │ │ └── internal │ │ ├── JsWasmJsLock.kt │ │ ├── JsWasmJsPlatform.kt │ │ ├── NodeJsProcess.kt │ │ ├── PID.kt │ │ ├── PlatformBuilder.kt │ │ ├── js │ │ ├── JsArrays.kt │ │ ├── JsError.kt │ │ └── JsObject.kt │ │ └── node │ │ ├── ModuleBuffer.kt │ │ ├── ModuleChildProcess.kt │ │ ├── ModuleEvents.kt │ │ ├── ModuleFs.kt │ │ ├── ModuleOs.kt │ │ ├── ModuleProcess.kt │ │ ├── ModuleStream.kt │ │ └── Modules.kt │ ├── jsWasmJsTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── JsWasmJsTestPlatform.kt │ │ └── internal │ │ └── js │ │ └── JsArrayUnitTest.kt │ ├── jvmMain │ ├── java9 │ │ └── module-info.java │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── BufferedWriteStream.kt │ │ └── internal │ │ ├── -AndroidApi23Stdio.kt │ │ ├── -JvmLock.kt │ │ ├── -JvmPlatform.kt │ │ ├── -JvmProcess.kt │ │ ├── -PID.kt │ │ └── -PlatformBuilder.kt │ ├── jvmTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── JvmTestPlatform.kt │ │ └── internal │ │ ├── PIDUnitTest.kt │ │ └── ScanLinesUnitTest.kt │ ├── linuxMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── LinuxPlatform.kt │ │ ├── spawn │ │ └── LinuxPosixSpawn.kt │ │ └── stdio │ │ └── LinuxStdioDescriptor.kt │ ├── linuxTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── LinuxTestPlatform.kt │ │ └── spawn │ │ └── PosixFileActionsUnitTest.kt │ ├── macosMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── MacosPlatform.kt │ │ └── spawn │ │ └── MacosPosixSpawn.kt │ ├── nativeInterop │ └── cinterop │ │ ├── kmp_process_sys.c │ │ ├── kmp_process_sys.def │ │ ├── kmp_process_sys.h │ │ ├── spawn.def │ │ └── syscall.def │ ├── nativeMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── BufferedWriteStream.kt │ │ └── internal │ │ ├── NativeCloseable.kt │ │ ├── NativeLock.kt │ │ ├── NativePlatform.kt │ │ ├── NativeProcess.kt │ │ ├── PATHIterator.kt │ │ ├── PID.kt │ │ ├── ReadStream.kt │ │ ├── WriteStream.kt │ │ └── stdio │ │ ├── StdioDescriptor.kt │ │ └── StdioHandle.kt │ ├── nativeTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── NativeTestPlatform.kt │ │ └── internal │ │ ├── PATHIteratorUnitTest.kt │ │ └── stdio │ │ ├── StdioDescriptorUnitTest.kt │ │ └── StdioHandleUnitTest.kt │ ├── nonAppleMobileMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── NonAppleMobileProcessBuilder.kt │ ├── unixForkMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ ├── UnixForkProcessBuilder.kt │ │ └── internal │ │ ├── ChildProcess.kt │ │ ├── PlatformBuilder.kt │ │ └── UnixForkPlatform.kt │ ├── unixForkTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── ForkUnitTest.kt │ │ └── UnixForkTestPlatform.kt │ ├── unixMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── UnixPlatform.kt │ │ ├── spawn │ │ └── UnixPosixSpawn.kt │ │ └── stdio │ │ └── UnixStdioDescriptor.kt │ ├── unixTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── UnixTestPlatform.kt │ │ ├── spawn │ │ └── PosixSpawnUnitTest.kt │ │ └── stdio │ │ └── UnixStdioDescriptorUnitTest.kt │ ├── wasmJsMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── internal │ │ ├── js │ │ ├── _JsArrays.kt │ │ ├── _JsError.kt │ │ └── _JsObject.kt │ │ └── node │ │ ├── _ModuleBuffer.kt │ │ ├── _ModuleEvents.kt │ │ ├── _ModuleStream.kt │ │ └── _Modules.kt │ └── wasmJsTest │ └── kotlin │ └── io │ └── matthewnelson │ └── kmp │ └── process │ └── WasmJsTestPlatform.kt ├── settings.gradle.kts ├── test-api ├── .gitignore ├── README.md ├── build.gradle.kts └── src │ ├── androidInstrumentedTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ ├── ProcessAndroidNativeTest.kt │ │ └── ProcessAndroidTest.kt │ ├── androidMain │ └── AndroidManifest.xml │ ├── androidNativeTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── AndroidNativeTestPlatform.kt │ ├── androidUnitTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── ProcessAndroidUnitTest.kt │ ├── commonMain │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── -Stub.kt │ ├── commonTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ ├── CommonTestPlatform.kt │ │ └── ProcessBaseTest.kt │ ├── iosTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── IosTestPlatform.kt │ ├── jsTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ ├── JsTestPlatform.kt │ │ └── ProcessJsUnitTest.kt │ ├── jvmAndroidTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── JvmAndroidTestPlatform.kt │ ├── jvmTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── ProcessJvmUnitTest.kt │ ├── linuxTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── LinuxTestPlatform.kt │ ├── macosTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ └── MacosTestPlatform.kt │ ├── nativeTest │ └── kotlin │ │ └── io │ │ └── matthewnelson │ │ └── kmp │ │ └── process │ │ └── test │ │ └── api │ │ ├── NativeTestPlatform.kt │ │ └── ProcessNativeUnitTest.kt │ └── wasmJsTest │ └── kotlin │ └── io │ └── matthewnelson │ └── kmp │ └── process │ └── test │ └── api │ ├── ProcessWasmJsUnitTest.kt │ └── WasmJsTestPlatform.kt └── tools └── check-publication ├── .gitignore ├── build.gradle.kts └── src ├── androidMain └── AndroidManifest.xml └── commonMain └── kotlin └── tools └── check └── publication └── Stub.kt /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/.gitignore -------------------------------------------------------------------------------- /.kotlin-js-store/js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/.kotlin-js-store/js/yarn.lock -------------------------------------------------------------------------------- /.kotlin-js-store/wasm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/.kotlin-js-store/wasm/yarn.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/RELEASING.md -------------------------------------------------------------------------------- /gh-pages/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gh-pages/publish.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/process/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /library/process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/README.md -------------------------------------------------------------------------------- /library/process/api/process.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/api/process.api -------------------------------------------------------------------------------- /library/process/api/process.klib.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/api/process.klib.api -------------------------------------------------------------------------------- /library/process/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/build.gradle.kts -------------------------------------------------------------------------------- /library/process/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/gradle.properties -------------------------------------------------------------------------------- /library/process/src/androidNativeArm32Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeArm32Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeArm32Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeArm32Platform.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeArm32Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeArm32PosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeArm32Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeArm32PosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeArm64Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeArm64Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeArm64Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeArm64Platform.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeArm64Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeArm64PosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeArm64Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeArm64PosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeMain/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativePlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeMain/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativePlatform.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativePosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativePosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/AndroidStdioDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/AndroidStdioDescriptor.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixSpawnAndroidNativeUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixSpawnAndroidNativeUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioDescriptorAndroidNativeUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioDescriptorAndroidNativeUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeX64Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeX64Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeX64Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeX64Platform.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeX64Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeX64PosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeX64Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeX64PosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeX86Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeX86Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeX86Main/kotlin/io/matthewnelson/kmp/process/internal/AndroidNativeX86Platform.kt -------------------------------------------------------------------------------- /library/process/src/androidNativeX86Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeX86PosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/androidNativeX86Main/kotlin/io/matthewnelson/kmp/process/internal/spawn/AndroidNativeX86PosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/AsyncWriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/AsyncWriteStream.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/Blocking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/Blocking.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/BufferedWriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/BufferedWriteStream.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/ReadBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/ReadBuffer.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/-BlockingPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/-BlockingPlatform.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/-OutputFeedBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/-OutputFeedBuffer.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/ReadStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/ReadStream.kt -------------------------------------------------------------------------------- /library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/WriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingMain/kotlin/io/matthewnelson/kmp/process/internal/WriteStream.kt -------------------------------------------------------------------------------- /library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/BlockingUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/BlockingUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/ReadBufferLineLineOutputFeedUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/ReadBufferLineLineOutputFeedUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/internal/OutputFeedBufferUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/internal/OutputFeedBufferUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/internal/ProcessBlockingUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/blockingTest/kotlin/io/matthewnelson/kmp/process/internal/ProcessBlockingUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/AsyncWriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/AsyncWriteStream.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Blocking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Blocking.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/InternalProcessApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/InternalProcessApi.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Output.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Output.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/OutputFeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/OutputFeed.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Process.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Process.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/ProcessException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/ProcessException.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/ReadBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/ReadBuffer.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Signal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Signal.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Stdio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/Stdio.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-CommonPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-CommonPlatform.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-Condition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-Condition.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-DoNotReferenceDirectly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-DoNotReferenceDirectly.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-Instance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-Instance.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-Lock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-Lock.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-RealLineOutputFeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-RealLineOutputFeed.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-SynchronizedSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/-SynchronizedSet.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/PID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/PID.kt -------------------------------------------------------------------------------- /library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt -------------------------------------------------------------------------------- /library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/CommonTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/CommonTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/OutputOptionsUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/OutputOptionsUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/ProcessUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/ProcessUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/ReadBufferUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/ReadBufferUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/StdioConfigUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/StdioConfigUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/internal/InstanceUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/commonTest/kotlin/io/matthewnelson/kmp/process/internal/InstanceUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/darwinMain/kotlin/io/matthewnelson/kmp/process/internal/DarwinPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/darwinMain/kotlin/io/matthewnelson/kmp/process/internal/DarwinPlatform.kt -------------------------------------------------------------------------------- /library/process/src/darwinMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/DarwinPosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/darwinMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/DarwinPosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/darwinMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/DarwinStdioDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/darwinMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/DarwinStdioDescriptor.kt -------------------------------------------------------------------------------- /library/process/src/darwinTest/kotlin/io/matthewnelson/kmp/process/internal/DarwinTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/darwinTest/kotlin/io/matthewnelson/kmp/process/internal/DarwinTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/iosMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/iosMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt -------------------------------------------------------------------------------- /library/process/src/iosMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/IosPosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/iosMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/IosPosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/iosTest/kotlin/io/matthewnelson/kmp/process/internal/IosTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/iosTest/kotlin/io/matthewnelson/kmp/process/internal/IosTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/iosTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixSpawnIosUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/iosTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixSpawnIosUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/JsEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/JsEvents.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/JsPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/JsPlatform.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsArrays.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsError.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsObject.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleBuffer.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleEvents.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleStream.kt -------------------------------------------------------------------------------- /library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_Modules.kt -------------------------------------------------------------------------------- /library/process/src/jsTest/kotlin/io/matthewnelson/kmp/process/JsTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsTest/kotlin/io/matthewnelson/kmp/process/JsTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/AsyncWriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/AsyncWriteStream.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/Blocking.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/Blocking.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/JsProcessBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/JsProcessBuilder.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/ReadBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/ReadBuffer.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/JsWasmJsLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/JsWasmJsLock.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/JsWasmJsPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/JsWasmJsPlatform.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/NodeJsProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/NodeJsProcess.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/PID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/PID.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/JsArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/JsArrays.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/JsError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/JsError.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/JsObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/JsObject.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleBuffer.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleChildProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleChildProcess.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleEvents.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleFs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleFs.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleOs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleOs.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleProcess.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/ModuleStream.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/Modules.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsTest/kotlin/io/matthewnelson/kmp/process/JsWasmJsTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsTest/kotlin/io/matthewnelson/kmp/process/JsWasmJsTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/jsWasmJsTest/kotlin/io/matthewnelson/kmp/process/internal/js/JsArrayUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jsWasmJsTest/kotlin/io/matthewnelson/kmp/process/internal/js/JsArrayUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/java9/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/java9/module-info.java -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/BufferedWriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/BufferedWriteStream.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-AndroidApi23Stdio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-AndroidApi23Stdio.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-JvmLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-JvmLock.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-JvmPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-JvmPlatform.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-JvmProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-JvmProcess.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-PID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-PID.kt -------------------------------------------------------------------------------- /library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-PlatformBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmMain/kotlin/io/matthewnelson/kmp/process/internal/-PlatformBuilder.kt -------------------------------------------------------------------------------- /library/process/src/jvmTest/kotlin/io/matthewnelson/kmp/process/JvmTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmTest/kotlin/io/matthewnelson/kmp/process/JvmTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/jvmTest/kotlin/io/matthewnelson/kmp/process/internal/PIDUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmTest/kotlin/io/matthewnelson/kmp/process/internal/PIDUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/jvmTest/kotlin/io/matthewnelson/kmp/process/internal/ScanLinesUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/jvmTest/kotlin/io/matthewnelson/kmp/process/internal/ScanLinesUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/linuxMain/kotlin/io/matthewnelson/kmp/process/internal/LinuxPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/linuxMain/kotlin/io/matthewnelson/kmp/process/internal/LinuxPlatform.kt -------------------------------------------------------------------------------- /library/process/src/linuxMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/LinuxPosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/linuxMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/LinuxPosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/linuxMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/LinuxStdioDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/linuxMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/LinuxStdioDescriptor.kt -------------------------------------------------------------------------------- /library/process/src/linuxTest/kotlin/io/matthewnelson/kmp/process/internal/LinuxTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/linuxTest/kotlin/io/matthewnelson/kmp/process/internal/LinuxTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/linuxTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixFileActionsUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/linuxTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixFileActionsUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/macosMain/kotlin/io/matthewnelson/kmp/process/internal/MacosPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/macosMain/kotlin/io/matthewnelson/kmp/process/internal/MacosPlatform.kt -------------------------------------------------------------------------------- /library/process/src/macosMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/MacosPosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/macosMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/MacosPosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/nativeInterop/cinterop/kmp_process_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeInterop/cinterop/kmp_process_sys.c -------------------------------------------------------------------------------- /library/process/src/nativeInterop/cinterop/kmp_process_sys.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeInterop/cinterop/kmp_process_sys.def -------------------------------------------------------------------------------- /library/process/src/nativeInterop/cinterop/kmp_process_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeInterop/cinterop/kmp_process_sys.h -------------------------------------------------------------------------------- /library/process/src/nativeInterop/cinterop/spawn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeInterop/cinterop/spawn.def -------------------------------------------------------------------------------- /library/process/src/nativeInterop/cinterop/syscall.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeInterop/cinterop/syscall.def -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/BufferedWriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/BufferedWriteStream.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativeCloseable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativeCloseable.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativeLock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativeLock.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativePlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativePlatform.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativeProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/NativeProcess.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/PATHIterator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/PATHIterator.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/PID.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/PID.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/ReadStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/ReadStream.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/WriteStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/WriteStream.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioDescriptor.kt -------------------------------------------------------------------------------- /library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioHandle.kt -------------------------------------------------------------------------------- /library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/NativeTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/NativeTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/internal/PATHIteratorUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/internal/PATHIteratorUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioDescriptorUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioDescriptorUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioHandleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nativeTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/StdioHandleUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/nonAppleMobileMain/kotlin/io/matthewnelson/kmp/process/NonAppleMobileProcessBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/nonAppleMobileMain/kotlin/io/matthewnelson/kmp/process/NonAppleMobileProcessBuilder.kt -------------------------------------------------------------------------------- /library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/UnixForkProcessBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/UnixForkProcessBuilder.kt -------------------------------------------------------------------------------- /library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/internal/ChildProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/internal/ChildProcess.kt -------------------------------------------------------------------------------- /library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/internal/PlatformBuilder.kt -------------------------------------------------------------------------------- /library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/internal/UnixForkPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixForkMain/kotlin/io/matthewnelson/kmp/process/internal/UnixForkPlatform.kt -------------------------------------------------------------------------------- /library/process/src/unixForkTest/kotlin/io/matthewnelson/kmp/process/internal/ForkUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixForkTest/kotlin/io/matthewnelson/kmp/process/internal/ForkUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/unixForkTest/kotlin/io/matthewnelson/kmp/process/internal/UnixForkTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixForkTest/kotlin/io/matthewnelson/kmp/process/internal/UnixForkTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/unixMain/kotlin/io/matthewnelson/kmp/process/internal/UnixPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixMain/kotlin/io/matthewnelson/kmp/process/internal/UnixPlatform.kt -------------------------------------------------------------------------------- /library/process/src/unixMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/UnixPosixSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixMain/kotlin/io/matthewnelson/kmp/process/internal/spawn/UnixPosixSpawn.kt -------------------------------------------------------------------------------- /library/process/src/unixMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/UnixStdioDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixMain/kotlin/io/matthewnelson/kmp/process/internal/stdio/UnixStdioDescriptor.kt -------------------------------------------------------------------------------- /library/process/src/unixTest/kotlin/io/matthewnelson/kmp/process/internal/UnixTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixTest/kotlin/io/matthewnelson/kmp/process/internal/UnixTestPlatform.kt -------------------------------------------------------------------------------- /library/process/src/unixTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixSpawnUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixTest/kotlin/io/matthewnelson/kmp/process/internal/spawn/PosixSpawnUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/unixTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/UnixStdioDescriptorUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/unixTest/kotlin/io/matthewnelson/kmp/process/internal/stdio/UnixStdioDescriptorUnitTest.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsArrays.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsArrays.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsError.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsObject.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/js/_JsObject.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleBuffer.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleEvents.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_ModuleStream.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsMain/kotlin/io/matthewnelson/kmp/process/internal/node/_Modules.kt -------------------------------------------------------------------------------- /library/process/src/wasmJsTest/kotlin/io/matthewnelson/kmp/process/WasmJsTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/library/process/src/wasmJsTest/kotlin/io/matthewnelson/kmp/process/WasmJsTestPlatform.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /test-api/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | src/androidInstrumentedTest/jniLibs/ 3 | -------------------------------------------------------------------------------- /test-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/README.md -------------------------------------------------------------------------------- /test-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/build.gradle.kts -------------------------------------------------------------------------------- /test-api/src/androidInstrumentedTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessAndroidNativeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/androidInstrumentedTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessAndroidNativeTest.kt -------------------------------------------------------------------------------- /test-api/src/androidInstrumentedTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessAndroidTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/androidInstrumentedTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessAndroidTest.kt -------------------------------------------------------------------------------- /test-api/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /test-api/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/test/api/AndroidNativeTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/androidNativeTest/kotlin/io/matthewnelson/kmp/process/test/api/AndroidNativeTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/androidUnitTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessAndroidUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/androidUnitTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessAndroidUnitTest.kt -------------------------------------------------------------------------------- /test-api/src/commonMain/kotlin/io/matthewnelson/kmp/process/test/api/-Stub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/commonMain/kotlin/io/matthewnelson/kmp/process/test/api/-Stub.kt -------------------------------------------------------------------------------- /test-api/src/commonTest/kotlin/io/matthewnelson/kmp/process/test/api/CommonTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/commonTest/kotlin/io/matthewnelson/kmp/process/test/api/CommonTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/commonTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessBaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/commonTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessBaseTest.kt -------------------------------------------------------------------------------- /test-api/src/iosTest/kotlin/io/matthewnelson/kmp/process/test/api/IosTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/iosTest/kotlin/io/matthewnelson/kmp/process/test/api/IosTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/jsTest/kotlin/io/matthewnelson/kmp/process/test/api/JsTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/jsTest/kotlin/io/matthewnelson/kmp/process/test/api/JsTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/jsTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessJsUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/jsTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessJsUnitTest.kt -------------------------------------------------------------------------------- /test-api/src/jvmAndroidTest/kotlin/io/matthewnelson/kmp/process/test/api/JvmAndroidTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/jvmAndroidTest/kotlin/io/matthewnelson/kmp/process/test/api/JvmAndroidTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/jvmTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessJvmUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/jvmTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessJvmUnitTest.kt -------------------------------------------------------------------------------- /test-api/src/linuxTest/kotlin/io/matthewnelson/kmp/process/test/api/LinuxTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/linuxTest/kotlin/io/matthewnelson/kmp/process/test/api/LinuxTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/macosTest/kotlin/io/matthewnelson/kmp/process/test/api/MacosTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/macosTest/kotlin/io/matthewnelson/kmp/process/test/api/MacosTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/nativeTest/kotlin/io/matthewnelson/kmp/process/test/api/NativeTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/nativeTest/kotlin/io/matthewnelson/kmp/process/test/api/NativeTestPlatform.kt -------------------------------------------------------------------------------- /test-api/src/nativeTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessNativeUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/nativeTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessNativeUnitTest.kt -------------------------------------------------------------------------------- /test-api/src/wasmJsTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessWasmJsUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/wasmJsTest/kotlin/io/matthewnelson/kmp/process/test/api/ProcessWasmJsUnitTest.kt -------------------------------------------------------------------------------- /test-api/src/wasmJsTest/kotlin/io/matthewnelson/kmp/process/test/api/WasmJsTestPlatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/test-api/src/wasmJsTest/kotlin/io/matthewnelson/kmp/process/test/api/WasmJsTestPlatform.kt -------------------------------------------------------------------------------- /tools/check-publication/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /tools/check-publication/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/tools/check-publication/build.gradle.kts -------------------------------------------------------------------------------- /tools/check-publication/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/tools/check-publication/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /tools/check-publication/src/commonMain/kotlin/tools/check/publication/Stub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/05nelsonm/kmp-process/HEAD/tools/check-publication/src/commonMain/kotlin/tools/check/publication/Stub.kt --------------------------------------------------------------------------------