Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
763aa4e3
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
1 年多 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
763aa4e3
编写于
6月 01, 2023
作者:
O
openharmony_ci
提交者:
Gitee
6月 01, 2023
浏览文件
操作
浏览文件
下载
差异文件
!2012 fix codex
Merge pull request !2012 from cheng_jinsong/master_cc
上级
002cf45f
d945e62b
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
16 addition
and
6 deletion
+16
-6
services/init/standard/init_cmds.c
services/init/standard/init_cmds.c
+3
-0
services/modules/init_hook/init_hook.c
services/modules/init_hook/init_hook.c
+0
-3
services/param/manager/param_server.c
services/param/manager/param_server.c
+13
-3
未找到文件。
services/init/standard/init_cmds.c
浏览文件 @
763aa4e3
...
...
@@ -59,6 +59,9 @@ int GetParamValue(const char *symValue, unsigned int symLen, char *paramValue, u
int
ret
;
uint32_t
curr
=
0
;
char
*
start
=
(
char
*
)
symValue
;
if
(
symLen
>
strlen
(
symValue
))
{
return
-
1
;
}
char
*
end
=
(
char
*
)
symValue
+
symLen
;
do
{
char
*
begin
=
strchr
(
start
,
'$'
);
...
...
services/modules/init_hook/init_hook.c
浏览文件 @
763aa4e3
...
...
@@ -168,9 +168,6 @@ static int InitCmd(int id, const char *name, int argc, const char **argv)
UNUSED
(
id
);
// process cmd by name
PLUGIN_LOGI
(
"InitCmd %s argc %d"
,
name
,
argc
);
for
(
int
i
=
0
;
i
<
argc
;
i
++
)
{
PLUGIN_LOGI
(
"InitCmd %s"
,
argv
[
i
]);
}
if
(
argc
>
1
&&
strcmp
(
argv
[
0
],
"setloglevel"
)
==
0
)
{
SetLogLevelFunc
(
argv
[
1
]);
}
...
...
services/param/manager/param_server.c
浏览文件 @
763aa4e3
...
...
@@ -14,6 +14,7 @@
*/
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include "param_manager.h"
#include "param_trie.h"
...
...
@@ -144,7 +145,11 @@ static void CmdlineIterator(const NAME_VALUE_PAIR *nv, void *context)
continue
;
}
}
snprintf_s
(
fullName
,
sizeof
(
fullName
),
sizeof
(
fullName
)
-
1
,
OHOS_CMDLINE_PARA_PREFIX
"%s"
,
cmdLines
[
i
].
name
);
ret
=
snprintf_s
(
fullName
,
sizeof
(
fullName
),
sizeof
(
fullName
)
-
1
,
OHOS_CMDLINE_PARA_PREFIX
"%s"
,
cmdLines
[
i
].
name
);
if
(
ret
<=
0
)
{
continue
;
}
PARAM_LOGV
(
"proc cmdline %s matched."
,
fullName
);
ret
=
cmdLines
[
i
].
processor
(
fullName
,
nv
->
value
);
if
((
ret
==
0
)
&&
(
SnDealFun
==
cmdLines
[
i
].
processor
))
{
...
...
@@ -247,8 +252,13 @@ static int LoadDefaultParam_(const char *fileName, uint32_t mode,
const
char
*
exclude
[],
uint32_t
count
,
int
(
*
loadOneParam
)(
const
uint32_t
*
,
const
char
*
,
const
char
*
))
{
uint32_t
paramNum
=
0
;
FILE
*
fp
=
fopen
(
fileName
,
"r"
);
PARAM_CHECK
(
fp
!=
NULL
,
return
-
1
,
"Failed to open file '%s' error:%d "
,
fileName
,
errno
);
char
realPath
[
PATH_MAX
]
=
""
;
realpath
(
fileName
,
realPath
);
FILE
*
fp
=
fopen
(
realPath
,
"r"
);
if
(
fp
==
NULL
)
{
PARAM_LOGE
(
"Failed to open file '%s' error:%d "
,
fileName
,
errno
);
return
-
1
;
}
const
int
buffSize
=
PARAM_NAME_LEN_MAX
+
PARAM_CONST_VALUE_LEN_MAX
+
10
;
// 10 max len
char
*
buffer
=
malloc
(
buffSize
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录