Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
communication_ipc
提交
1af49d7c
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,发现更多精彩内容 >>
未验证
提交
1af49d7c
编写于
9月 29, 2022
作者:
O
openharmony_ci
提交者:
Gitee
9月 29, 2022
浏览文件
操作
浏览文件
下载
差异文件
!390 RPC/IPC 共享对象处理Ashmem类中方法支持异常错误处理,增强调用者的可读性
Merge pull request !390 from Yippo/master
上级
16140a06
8c3d668e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
222 addition
and
9 deletion
+222
-9
ipc/native/src/napi/include/napi_ashmem.h
ipc/native/src/napi/include/napi_ashmem.h
+7
-0
ipc/native/src/napi/src/napi_ashmem.cpp
ipc/native/src/napi/src/napi_ashmem.cpp
+215
-9
未找到文件。
ipc/native/src/napi/include/napi_ashmem.h
浏览文件 @
1af49d7c
...
@@ -53,14 +53,21 @@ private:
...
@@ -53,14 +53,21 @@ private:
static
napi_value
MapAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapTypedAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapTypedAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapReadAndWriteAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapReadAndWriteAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapReadWriteAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapReadOnlyAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapReadOnlyAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
MapReadonlyAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
ReadFromAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
ReadFromAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
ReadAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
SetProtection
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
SetProtection
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
SetProtectionType
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
UnmapAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
UnmapAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
WriteToAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
WriteToAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
WriteAshmem
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
GetAshmemFromExisting
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
GetAshmemFromExisting
(
napi_env
env
,
napi_callback_info
info
);
static
napi_value
GetAshmemConstructor
(
napi_env
env
,
napi_value
*
info
);
static
napi_value
GetAshmemConstructor
(
napi_env
env
,
napi_value
*
info
);
static
napi_value
getNewAshmemConstructor
(
napi_env
env
,
napi_value
&
info
,
int32_t
fd
,
uint32_t
size
);
static
napi_value
getNewAshmemConstructor
(
napi_env
env
,
napi_value
&
info
,
int32_t
fd
,
uint32_t
size
);
static
napi_value
CheckWriteAshmemParams
(
napi_env
env
,
size_t
argc
,
napi_value
*
info
);
static
napi_value
TransferByteToJsData
(
napi_env
env
,
uint32_t
size
,
const
void
*
result
);
sptr
<
Ashmem
>
ashmem_
;
sptr
<
Ashmem
>
ashmem_
;
static
NapiError
napiErr
;
static
NapiError
napiErr
;
...
...
ipc/native/src/napi/src/napi_ashmem.cpp
浏览文件 @
1af49d7c
...
@@ -318,15 +318,10 @@ napi_value NAPIAshmem::MapTypedAshmem(napi_env env, napi_callback_info info)
...
@@ -318,15 +318,10 @@ napi_value NAPIAshmem::MapTypedAshmem(napi_env env, napi_callback_info info)
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
OS_MMAP_ERROR
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
OS_MMAP_ERROR
);
}
}
bool
result
=
napiAshmem
->
GetAshmem
()
->
MapAshmem
(
mapType
);
napiAshmem
->
GetAshmem
()
->
MapAshmem
(
mapType
);
napi_value
napiValue
=
nullptr
;
napi_value
result
=
nullptr
;
NAPI_CALL
(
env
,
napi_get_boolean
(
env
,
result
,
&
napiValue
));
napi_get_undefined
(
env
,
&
result
);
if
(
result
==
false
)
{
return
result
;
ZLOGE
(
LOG_LABEL
,
"get os mmap failed"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
OS_MMAP_ERROR
);
}
return
napiValue
;
}
}
napi_value
NAPIAshmem
::
MapReadAndWriteAshmem
(
napi_env
env
,
napi_callback_info
info
)
napi_value
NAPIAshmem
::
MapReadAndWriteAshmem
(
napi_env
env
,
napi_callback_info
info
)
...
@@ -342,6 +337,22 @@ napi_value NAPIAshmem::MapReadAndWriteAshmem(napi_env env, napi_callback_info in
...
@@ -342,6 +337,22 @@ napi_value NAPIAshmem::MapReadAndWriteAshmem(napi_env env, napi_callback_info in
return
napiValue
;
return
napiValue
;
}
}
napi_value
NAPIAshmem
::
MapReadWriteAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
napi_value
thisVar
=
nullptr
;
napi_get_cb_info
(
env
,
info
,
nullptr
,
nullptr
,
&
thisVar
,
nullptr
);
NAPIAshmem
*
napiAshmem
=
nullptr
;
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
napiAshmem
);
if
(
napiAshmem
==
nullptr
)
{
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
OS_MMAP_ERROR
);
}
napiAshmem
->
GetAshmem
()
->
MapReadAndWriteAshmem
();
napi_value
result
=
nullptr
;
napi_get_undefined
(
env
,
&
result
);
return
result
;
}
napi_value
NAPIAshmem
::
MapReadOnlyAshmem
(
napi_env
env
,
napi_callback_info
info
)
napi_value
NAPIAshmem
::
MapReadOnlyAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
{
napi_value
thisVar
=
nullptr
;
napi_value
thisVar
=
nullptr
;
...
@@ -355,6 +366,22 @@ napi_value NAPIAshmem::MapReadOnlyAshmem(napi_env env, napi_callback_info info)
...
@@ -355,6 +366,22 @@ napi_value NAPIAshmem::MapReadOnlyAshmem(napi_env env, napi_callback_info info)
return
napiValue
;
return
napiValue
;
}
}
napi_value
NAPIAshmem
::
MapReadonlyAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
napi_value
thisVar
=
nullptr
;
napi_get_cb_info
(
env
,
info
,
nullptr
,
nullptr
,
&
thisVar
,
nullptr
);
NAPIAshmem
*
napiAshmem
=
nullptr
;
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
napiAshmem
);
if
(
napiAshmem
==
nullptr
)
{
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
OS_MMAP_ERROR
);
}
napiAshmem
->
GetAshmem
()
->
MapReadOnlyAshmem
();
napi_value
result
=
nullptr
;
napi_get_undefined
(
env
,
&
result
);
return
result
;
}
napi_value
NAPIAshmem
::
ReadFromAshmem
(
napi_env
env
,
napi_callback_info
info
)
napi_value
NAPIAshmem
::
ReadFromAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
{
napi_value
thisVar
=
nullptr
;
napi_value
thisVar
=
nullptr
;
...
@@ -398,6 +425,74 @@ napi_value NAPIAshmem::ReadFromAshmem(napi_env env, napi_callback_info info)
...
@@ -398,6 +425,74 @@ napi_value NAPIAshmem::ReadFromAshmem(napi_env env, napi_callback_info info)
return
typedarray
;
return
typedarray
;
}
}
napi_value
NAPIAshmem
::
ReadAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
napi_value
thisVar
=
nullptr
;
size_t
argc
=
2
;
size_t
argNum
=
2
;
napi_value
argv
[
2
]
=
{
0
};
napi_get_cb_info
(
env
,
info
,
&
argc
,
argv
,
&
thisVar
,
nullptr
);
if
(
argc
!=
argNum
)
{
ZLOGE
(
LOG_LABEL
,
"requires 2 parameter"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
napi_valuetype
valueType
=
napi_null
;
napi_typeof
(
env
,
argv
[
0
],
&
valueType
);
if
(
valueType
!=
napi_number
)
{
ZLOGE
(
LOG_LABEL
,
"type mismatch for parameter 1"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
napi_typeof
(
env
,
argv
[
1
],
&
valueType
);
if
(
valueType
!=
napi_number
)
{
ZLOGE
(
LOG_LABEL
,
"type mismatch for parameter 2"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
uint32_t
size
=
0
;
uint32_t
offset
=
0
;
napi_get_value_uint32
(
env
,
argv
[
0
],
&
size
);
size
*=
BYTE_SIZE_32
;
napi_get_value_uint32
(
env
,
argv
[
1
],
&
offset
);
offset
*=
BYTE_SIZE_32
;
NAPIAshmem
*
napiAshmem
=
nullptr
;
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
napiAshmem
);
if
(
napiAshmem
==
nullptr
)
{
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
READ_FROM_ASHMEM_ERROR
);
}
const
void
*
result
=
napiAshmem
->
GetAshmem
()
->
ReadFromAshmem
(
size
,
offset
);
if
(
result
==
nullptr
)
{
ZLOGE
(
LOG_LABEL
,
"ashmem->ReadFromAshmem returns null"
);
return
nullptr
;
}
// c++ byte[] to js []
return
TransferByteToJsData
(
env
,
size
,
result
);
}
napi_value
NAPIAshmem
::
TransferByteToJsData
(
napi_env
env
,
uint32_t
size
,
const
void
*
result
)
{
napi_value
arrayBuffer
=
nullptr
;
void
*
arrayBufferPtr
=
nullptr
;
napi_create_arraybuffer
(
env
,
size
,
&
arrayBufferPtr
,
&
arrayBuffer
);
napi_value
typedarray
=
nullptr
;
napi_create_typedarray
(
env
,
napi_int32_array
,
size
/
BYTE_SIZE_32
,
arrayBuffer
,
0
,
&
typedarray
);
bool
isTypedArray
=
false
;
napi_is_typedarray
(
env
,
typedarray
,
&
isTypedArray
);
NAPI_ASSERT
(
env
,
isTypedArray
==
true
,
"create TypedArray failed"
);
if
(
isTypedArray
==
false
)
{
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
READ_FROM_ASHMEM_ERROR
);
}
if
(
size
==
0
)
{
return
typedarray
;
}
errno_t
status
=
memcpy_s
(
arrayBufferPtr
,
size
,
result
,
size
);
if
(
status
!=
EOK
)
{
ZLOGE
(
LOG_LABEL
,
"memcpy_s is failed"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
READ_FROM_ASHMEM_ERROR
);
}
return
typedarray
;
}
napi_value
NAPIAshmem
::
SetProtection
(
napi_env
env
,
napi_callback_info
info
)
napi_value
NAPIAshmem
::
SetProtection
(
napi_env
env
,
napi_callback_info
info
)
{
{
napi_value
thisVar
=
nullptr
;
napi_value
thisVar
=
nullptr
;
...
@@ -419,6 +514,37 @@ napi_value NAPIAshmem::SetProtection(napi_env env, napi_callback_info info)
...
@@ -419,6 +514,37 @@ napi_value NAPIAshmem::SetProtection(napi_env env, napi_callback_info info)
return
napiValue
;
return
napiValue
;
}
}
napi_value
NAPIAshmem
::
SetProtectionType
(
napi_env
env
,
napi_callback_info
info
)
{
napi_value
thisVar
=
nullptr
;
size_t
argc
=
1
;
size_t
argNum
=
1
;
napi_value
argv
[
1
]
=
{
0
};
napi_get_cb_info
(
env
,
info
,
&
argc
,
argv
,
&
thisVar
,
nullptr
);
if
(
argc
!=
argNum
)
{
ZLOGE
(
LOG_LABEL
,
"requires 1 parameter"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
napi_valuetype
valueType
=
napi_null
;
napi_typeof
(
env
,
argv
[
0
],
&
valueType
);
if
(
valueType
!=
napi_number
)
{
ZLOGE
(
LOG_LABEL
,
"type mismatch for parameter 1"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
uint32_t
protectionType
=
0
;
napi_get_value_uint32
(
env
,
argv
[
0
],
&
protectionType
);
NAPIAshmem
*
napiAshmem
=
nullptr
;
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
napiAshmem
);
if
(
napiAshmem
==
nullptr
)
{
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
OS_IOCTL_ERROR
);
}
napiAshmem
->
GetAshmem
()
->
SetProtection
(
protectionType
);
napi_value
result
=
nullptr
;
napi_get_undefined
(
env
,
&
result
);
return
result
;
}
napi_value
NAPIAshmem
::
UnmapAshmem
(
napi_env
env
,
napi_callback_info
info
)
napi_value
NAPIAshmem
::
UnmapAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
{
napi_value
thisVar
=
nullptr
;
napi_value
thisVar
=
nullptr
;
...
@@ -479,6 +605,81 @@ napi_value NAPIAshmem::WriteToAshmem(napi_env env, napi_callback_info info)
...
@@ -479,6 +605,81 @@ napi_value NAPIAshmem::WriteToAshmem(napi_env env, napi_callback_info info)
return
napiValue
;
return
napiValue
;
}
}
napi_value
NAPIAshmem
::
WriteAshmem
(
napi_env
env
,
napi_callback_info
info
)
{
size_t
argc
=
3
;
napi_value
argv
[
3
]
=
{
0
};
napi_value
thisVar
=
nullptr
;
napi_get_cb_info
(
env
,
info
,
&
argc
,
argv
,
&
thisVar
,
nullptr
);
napi_value
checkArgsResult
=
CheckWriteAshmemParams
(
env
,
argc
,
argv
);
if
(
checkArgsResult
!=
nullptr
)
{
return
checkArgsResult
;
}
std
::
vector
<
int32_t
>
array
;
uint32_t
arrayLength
=
0
;
napi_get_array_length
(
env
,
argv
[
0
],
&
arrayLength
);
for
(
size_t
i
=
0
;
i
<
arrayLength
;
i
++
)
{
bool
hasElement
=
false
;
napi_has_element
(
env
,
argv
[
0
],
i
,
&
hasElement
);
if
(
hasElement
==
false
)
{
ZLOGE
(
LOG_LABEL
,
"parameter check error"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
napi_value
element
=
nullptr
;
napi_get_element
(
env
,
argv
[
0
],
i
,
&
element
);
int32_t
value
=
0
;
napi_get_value_int32
(
env
,
element
,
&
value
);
array
.
push_back
(
value
);
}
uint32_t
size
=
0
;
napi_get_value_uint32
(
env
,
argv
[
1
],
&
size
);
uint32_t
offset
=
0
;
napi_get_value_uint32
(
env
,
argv
[
2
],
&
offset
);
NAPIAshmem
*
napiAshmem
=
nullptr
;
napi_unwrap
(
env
,
thisVar
,
(
void
**
)
&
napiAshmem
);
if
(
napiAshmem
==
nullptr
)
{
ZLOGE
(
LOG_LABEL
,
"napiAshmem is null"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
WRITE_TO_ASHMEM_ERROR
);
}
// need check size offset and capacity
napiAshmem
->
GetAshmem
()
->
WriteToAshmem
(
array
.
data
(),
size
*
BYTE_SIZE_32
,
offset
*
BYTE_SIZE_32
);
napi_value
result
=
nullptr
;
napi_get_undefined
(
env
,
&
result
);
return
result
;
}
napi_value
NAPIAshmem
::
CheckWriteAshmemParams
(
napi_env
env
,
size_t
argc
,
napi_value
*
argv
)
{
size_t
argNum
=
3
;
if
(
argc
!=
argNum
)
{
ZLOGE
(
LOG_LABEL
,
"requires 3 parameter"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
bool
isArray
=
false
;
napi_is_array
(
env
,
argv
[
0
],
&
isArray
);
if
(
isArray
==
false
)
{
ZLOGE
(
LOG_LABEL
,
"type mismatch for parameter 1"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
napi_valuetype
valueType
=
napi_null
;
napi_typeof
(
env
,
argv
[
1
],
&
valueType
);
if
(
valueType
!=
napi_number
)
{
ZLOGE
(
LOG_LABEL
,
"type mismatch for parameter 2"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
napi_typeof
(
env
,
argv
[
2
],
&
valueType
);
if
(
valueType
!=
napi_number
)
{
ZLOGE
(
LOG_LABEL
,
"type mismatch for parameter 4"
);
return
napiErr
.
ThrowError
(
env
,
OHOS
::
errorDesc
::
VERIFY_PARAM_FAILED
);
}
return
nullptr
;
}
napi_value
NAPIAshmem
::
AshmemExport
(
napi_env
env
,
napi_value
exports
)
napi_value
NAPIAshmem
::
AshmemExport
(
napi_env
env
,
napi_value
exports
)
{
{
const
std
::
string
className
=
"Ashmem"
;
const
std
::
string
className
=
"Ashmem"
;
...
@@ -499,11 +700,16 @@ napi_value NAPIAshmem::AshmemExport(napi_env env, napi_value exports)
...
@@ -499,11 +700,16 @@ napi_value NAPIAshmem::AshmemExport(napi_env env, napi_value exports)
DECLARE_NAPI_FUNCTION
(
"mapAshmem"
,
NAPIAshmem
::
MapAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapAshmem"
,
NAPIAshmem
::
MapAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapTypedAshmem"
,
NAPIAshmem
::
MapTypedAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapTypedAshmem"
,
NAPIAshmem
::
MapTypedAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapReadAndWriteAshmem"
,
NAPIAshmem
::
MapReadAndWriteAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapReadAndWriteAshmem"
,
NAPIAshmem
::
MapReadAndWriteAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapReadWriteAshmem"
,
NAPIAshmem
::
MapReadWriteAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapReadOnlyAshmem"
,
NAPIAshmem
::
MapReadOnlyAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapReadOnlyAshmem"
,
NAPIAshmem
::
MapReadOnlyAshmem
),
DECLARE_NAPI_FUNCTION
(
"mapReadonlyAshmem"
,
NAPIAshmem
::
MapReadonlyAshmem
),
DECLARE_NAPI_FUNCTION
(
"readFromAshmem"
,
NAPIAshmem
::
ReadFromAshmem
),
DECLARE_NAPI_FUNCTION
(
"readFromAshmem"
,
NAPIAshmem
::
ReadFromAshmem
),
DECLARE_NAPI_FUNCTION
(
"readAshmem"
,
NAPIAshmem
::
ReadAshmem
),
DECLARE_NAPI_FUNCTION
(
"setProtection"
,
NAPIAshmem
::
SetProtection
),
DECLARE_NAPI_FUNCTION
(
"setProtection"
,
NAPIAshmem
::
SetProtection
),
DECLARE_NAPI_FUNCTION
(
"setProtectionType"
,
NAPIAshmem
::
SetProtectionType
),
DECLARE_NAPI_FUNCTION
(
"unmapAshmem"
,
NAPIAshmem
::
UnmapAshmem
),
DECLARE_NAPI_FUNCTION
(
"unmapAshmem"
,
NAPIAshmem
::
UnmapAshmem
),
DECLARE_NAPI_FUNCTION
(
"writeToAshmem"
,
NAPIAshmem
::
WriteToAshmem
),
DECLARE_NAPI_FUNCTION
(
"writeToAshmem"
,
NAPIAshmem
::
WriteToAshmem
),
DECLARE_NAPI_FUNCTION
(
"writeAshmem"
,
NAPIAshmem
::
WriteAshmem
),
DECLARE_NAPI_STATIC_PROPERTY
(
"PROT_EXEC"
,
exec
),
DECLARE_NAPI_STATIC_PROPERTY
(
"PROT_EXEC"
,
exec
),
DECLARE_NAPI_STATIC_PROPERTY
(
"PROT_NONE"
,
none
),
DECLARE_NAPI_STATIC_PROPERTY
(
"PROT_NONE"
,
none
),
DECLARE_NAPI_STATIC_PROPERTY
(
"PROT_READ"
,
read
),
DECLARE_NAPI_STATIC_PROPERTY
(
"PROT_READ"
,
read
),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录