Searched refs:NativeChildProcess_OnConnect (Results 1 – 8 of 8) sorted by relevance
44 …实现必要的两个函数**NativeChildProcess_OnConnect**及**NativeChildProcess_MainProc**并导出(假设代码所在的文件名为ChildProce…46 …子进程启动后会先调用NativeChildProcess_OnConnect获取IPC Stub对象,之后再调用NativeChildProcess_MainProc移交主线程控制权,该函数返回后…53 OHIPCRemoteStub* NativeChildProcess_OnConnect()112 …回调函数传递的第二个参数OHIPCRemoteProxy对象,会与子进程实现的**NativeChildProcess_OnConnect**方法返回的OHIPCRemoteStub对象间建立IP…
41 typedef OHIPCRemoteStub* (*NativeChildProcess_OnConnect)(); typedef46 NativeChildProcess_OnConnect funcNativeLibOnConnect_ = nullptr;
226 1. OHIPCRemoteStub* NativeChildProcess_OnConnect()236 3. dlsym("NativeChildProcess_OnConnect")238 5. ipcRemote = NativeChildProcess_OnConnect()
124 NativeChildProcess_OnConnect funcOnConnect = in LoadNativeLib()125 … reinterpret_cast<NativeChildProcess_OnConnect>(dlsym(libHandle, "NativeChildProcess_OnConnect")); in LoadNativeLib()
44 …NativeChildProcess_OnConnect** and **NativeChildProcess_MainProc**. (It is assumed that the code f…46 …After the child process is started, **NativeChildProcess_OnConnect** is invoked to obtain an IPC s…53 OHIPCRemoteStub* NativeChildProcess_OnConnect()112 …channel with the **OHIPCRemoteStub** object returned by the **NativeChildProcess_OnConnect** metho…
399 OHIPCRemoteStub* NativeChildProcess_OnConnect() {400 OH_LOG_INFO(LOG_APP, "NativeChildProcess_OnConnect");