Lines Matching refs:child

6 …s to manage child processes. You can call the APIs to create a native child process and establish …
8 The created child process does not support the UI or the calling of context-related APIs. A maximum…
22 …eclares the APIs used to create a native child process and establish an IPC channel between the pa…
28 … | Defines an enum for the error codes used by the native child process module.|
29 …emoteProxy \*remoteProxy) | Defines a callback function for notifying the child process startup re…
30 …ess_Fd](#nativechildprocess_fdlist) | Defines a struct for the file descriptor of a child process.|
31 …hildprocess_fdlist) | Defines a struct for the linked list of file descriptors of a child process.|
32 …(#nativechildprocess_args) | Defines a struct for the arguments used for starting a child process.|
39 …CTION_FAILED = 16010008<br>} | Enumerates the error codes used by the native child process module.|
46 …d](#oh_ability_onnativechildprocessstarted) onProcessStarted) | Creates a child process, loads the…
50 > Currently, only 2-in-1 devices are supported, and only one native child process can be started fo…
61 Defines a callback function for notifying the child process startup result.
69 | errCode | NCP_NO_ERROR - The child process is created successfully.<br>NCP_ERR_LIB_LOADING_FA…
70 | remoteProxy | Pointer to the IPC object of the child process. If an exception occurs, the value m…
90 Defines a struct for the file descriptor of a child process.
112 Defines a struct for the linked list of file descriptors of a child process. A maximum of 16 file d…
133 Defines a struct for the arguments used for starting a child process.
155 Defines a struct for the child process options.
176 Enumerates the error codes used by the native child process module.
184 | NCP_ERR_NOT_SUPPORTED | Creating a native child process is not supported. …
186 … | A new child process cannot be created during the startup of another native child proce…
187 | NCP_ERR_TIMEOUT | Starting the native child process times out. …
189 | NCP_ERR_MULTI_PROCESS_DISABLED | The multi-process mode is disabled. A child process cannot …
190 | NCP_ERR_ALREADY_IN_CHILD | A process cannot be created in a child process. …
191 | NCP_ERR_MAX_CHILD_PROCESSES_REACHED | The number of native child processes reaches the maximum. …
192 | NCP_ERR_LIB_LOADING_FAILED | The child process fails to load the dynamic library because…
193 | NCP_ERR_CONNECTION_FAILED | The child process fails to call the OnConnect method of the…
203 Enumerates the isolation modes of a child process.
209 | NCP_ISOLATION_MODE_NORMAL | Normal mode. The child process shares the data sandbox and network en…
210 | NCP_ISOLATION_MODE_ISOLATED | Isolated mode. The child process does not share the data sandbox an…
222 Creates a child process, loads the specified dynamic library file, and returns the startup result a…
245 8. The child process exits after the NativeChildProcess_MainProc() function is returned.
249 > Currently, only 2-in-1 devices are supported, and only one native child process can be started fo…
257 | libName | Pointer to the name of the dynamic library file loaded in the child pr…
258 | onProcessStartedCallback | Pointer to the callback function for notifying the child process start…
275child process, loads the specified dynamic library file, and calls the entry function. Arguments c…
277 …cation-models/capi_nativechildprocess_development_guideline.md#creating-a-child-process-that-suppo…
289 | entry | The symbol and entry function of the dynamic library called in the child
290 | args | Arguments passed to the child process. For details, see [NativeChildProcess_Args](#nativec…
291 | options | Startup configuration options of the child process. For details, see [NativeChildProce…
292 | pid | ID of the child process to start.|