Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
communication_ipc
提交
13d5d7b0
C
communication_ipc
项目概览
OpenHarmony
/
communication_ipc
大约 1 年 前同步成功
通知
20
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
C
communication_ipc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
13d5d7b0
编写于
5月 27, 2022
作者:
O
openharmony_ci
提交者:
Gitee
5月 27, 2022
浏览文件
操作
浏览文件
下载
差异文件
!269 ipc codex fixed
Merge pull request !269 from 周礼亭/master
上级
b72a86b8
b50f947f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
9 addition
and
8 deletion
+9
-8
ipc/native/src/core/source/message_parcel.cpp
ipc/native/src/core/source/message_parcel.cpp
+2
-1
ipc/native/src/napi/src/napi_message_option.cpp
ipc/native/src/napi/src/napi_message_option.cpp
+6
-6
ipc/native/src/napi/src/napi_remote_object.cpp
ipc/native/src/napi/src/napi_remote_object.cpp
+1
-1
未找到文件。
ipc/native/src/core/source/message_parcel.cpp
浏览文件 @
13d5d7b0
...
...
@@ -67,7 +67,8 @@ void AcquireObject(flat_binder_object *flat, const void *cookie)
break
;
}
case
BINDER_TYPE_FD
:
flat
->
handle
=
dup
(
flat
->
handle
);
flat
->
handle
=
static_cast
<
uint32_t
>
(
dup
(
flat
->
handle
));
flat
->
cookie
=
1
;
break
;
default:
DBINDER_LOGE
(
"binder object type is invalid."
);
...
...
ipc/native/src/napi/src/napi_message_option.cpp
浏览文件 @
13d5d7b0
...
...
@@ -27,11 +27,11 @@ napi_value NapiOhosRpcMessageOptionGetFlags(napi_env env, napi_callback_info inf
napi_get_cb_info
(
env
,
info
,
nullptr
,
nullptr
,
&
thisVar
,
nullptr
);
NAPI_ASSERT
(
env
,
thisVar
!=
nullptr
,
"failed to get js message option object"
);
MessageOption
*
option
=
nullptr
;
napi_
status
status
=
napi_
unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
NAPI_ASSERT
(
env
,
option
!=
nullptr
,
"failed to get native message option"
);
int
flags
=
option
->
GetFlags
();
napi_value
result
=
nullptr
;
status
=
napi_create_int32
(
env
,
flags
,
&
result
);
napi_status
status
=
napi_create_int32
(
env
,
flags
,
&
result
);
NAPI_ASSERT
(
env
,
status
==
napi_ok
,
"failed to create int32 value"
);
return
result
;
}
...
...
@@ -53,7 +53,7 @@ napi_value NapiOhosRpcMessageOptionSetFlags(napi_env env, napi_callback_info inf
napi_status
status
=
napi_get_value_int32
(
env
,
argv
[
0
],
&
flags
);
NAPI_ASSERT
(
env
,
status
==
napi_ok
,
"failed to get int32 value"
);
MessageOption
*
option
=
nullptr
;
status
=
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
NAPI_ASSERT
(
env
,
option
!=
nullptr
,
"failed to get native message option"
);
option
->
SetFlags
(
flags
);
napi_value
result
=
nullptr
;
...
...
@@ -70,11 +70,11 @@ napi_value NapiOhosRpcMessageOptionGetWaittime(napi_env env, napi_callback_info
napi_get_cb_info
(
env
,
info
,
nullptr
,
nullptr
,
&
thisVar
,
nullptr
);
NAPI_ASSERT
(
env
,
thisVar
!=
nullptr
,
"failed to get js message option object"
);
MessageOption
*
option
=
nullptr
;
napi_
status
status
=
napi_
unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
NAPI_ASSERT
(
env
,
option
!=
nullptr
,
"failed to get native message option"
);
int
flags
=
option
->
GetWaitTime
();
napi_value
result
=
nullptr
;
status
=
napi_create_int32
(
env
,
flags
,
&
result
);
napi_status
status
=
napi_create_int32
(
env
,
flags
,
&
result
);
NAPI_ASSERT
(
env
,
status
==
napi_ok
,
"failed to create int32 value"
);
return
result
;
}
...
...
@@ -96,7 +96,7 @@ napi_value NapiOhosRpcMessageOptionSetWaittime(napi_env env, napi_callback_info
napi_status
status
=
napi_get_value_int32
(
env
,
argv
[
0
],
&
waittime
);
NAPI_ASSERT
(
env
,
status
==
napi_ok
,
"failed to get int32 value"
);
MessageOption
*
option
=
nullptr
;
status
=
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
option
);
NAPI_ASSERT
(
env
,
option
!=
nullptr
,
"failed to get native message option"
);
option
->
SetWaitTime
(
waittime
);
napi_value
result
=
nullptr
;
...
...
ipc/native/src/napi/src/napi_remote_object.cpp
浏览文件 @
13d5d7b0
...
...
@@ -1606,7 +1606,7 @@ napi_value NAPI_RemoteProxy_sendRequest(napi_env env, napi_callback_info info)
napi_get_value_int32
(
env
,
argv
[
0
],
&
code
);
NAPIRemoteProxyHolder
*
proxyHolder
=
nullptr
;
status
=
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
proxyHolder
);
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
proxyHolder
);
NAPI_ASSERT
(
env
,
proxyHolder
!=
nullptr
,
"failed to get proxy holder"
);
sptr
<
IRemoteObject
>
target
=
proxyHolder
->
object_
;
NAPI_ASSERT
(
env
,
target
!=
nullptr
,
"invalid proxy object"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录