diff --git a/mind_map/定时Wifi开关.xmind b/mind_map/定时Wifi开关.xmind new file mode 100644 index 0000000..159347d Binary files /dev/null and b/mind_map/定时Wifi开关.xmind differ diff --git a/smart_wifi_code/nwfs.lua b/smart_wifi_code/nwfs.lua new file mode 100644 index 0000000..e54239c --- /dev/null +++ b/smart_wifi_code/nwfs.lua @@ -0,0 +1,87 @@ +--set +function fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + if week_repeat == "non-repeat" then + week_repeat = "0,1,2,3,4,5,6" --"1,2,3,4,5,6,0 is error,可能会误删repeat的数据" + cmd_close = "/sbin/smart_wifi "..close_min.." "..close_hour.." "..week_repeat + cmd_open = "/sbin/smart_wifi "..open_min.." "..open_hour.." "..week_repeat + else + cmd_close = "echo '"..close_min.." "..close_hour.." * * "..week_repeat.." /sbin/wifi down "..wnet..";" + ..close_min..close_hour..open_min..open_hour..week_repeat + ..">/dev/null 2>/dev/null' >> /etc/crontabs/root; crontab /etc/crontabs/root;" + + cmd_open = "echo '"..open_min.." "..open_hour.." * * "..week_repeat.." /sbin/wifi up "..wnet..";" + ..close_min..close_hour..open_min..open_hour..week_repeat + ..">/dev/null 2>/dev/null' >> /etc/crontabs/root; echo '' >> /etc/crontabs/root; crontab /etc/crontabs/root;" + end + luci.http.write_json(cmd_close) + luci.http.write_json(cmd_open) + + exec_cmd_in_sh(cmd_close) + posix.sleep(1) + exec_cmd_in_sh(cmd_open) +end + +--stop +function set_smart_wifi_stop(update_flag) + local cmd = "sed -i '/"..update_flag.."/d' /etc/crontabs/root; crontab /etc/crontabs/root" + exec_cmd_in_sh(cmd) + luci.http.write_json(cmd) +end + + +--function: 定时wifi开关shell形式 +--author: rh_Jameson +function set_smart_wifi_updown() + + --get para + --wnet = luci.http.formvalue("wnet") + --close_hour = luci.http.formvalue("close_hour") + --close_min = luci.http.formvalue("close_min") + --open_hour = luci.http.formvalue("open_hour") + --open_min = luci.http.formvalue("open_min") + --repeat_var_from_http = luci.http.formvalue("repeat_var") + --func = luci.http.formvalue("func") + + --test + local wnet = 'mt7628' + local close_hour = "07" + local close_min = "25" + local open_hour = "07" + local open_min = "26" + local repeat_var_from_http = "1111111" + local func = luci.http.formvalue("func") + --para err manage + if string.len(repeat_var_from_http) ~= 7 then + luci.http.write_json("len error") + return + end + + --get repeat + local week_repeat = "" + for i = 0, #repeat_var_from_http do + tmp = string.sub(repeat_var_from_http, i, i) + if tmp == "1" then + if i == #repeat_var_from_http then + week_repeat = week_repeat..0 + break + end + week_repeat = week_repeat..tostring(i).."," + end + end + if week_repeat == "" then + week_repeat = "non-repeat" + end + --exec + if func == "set" then + fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + elseif func == "stop" or func == "update" then + local update_flag = luci.http.formvalue("flag") + set_smart_wifi_stop(update_flag) + + if func == "update" then + posix.sleep(1) + fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + end + end +end + diff --git a/smart_wifi_code/nwfs.lua~ b/smart_wifi_code/nwfs.lua~ new file mode 100644 index 0000000..8ae9d5a --- /dev/null +++ b/smart_wifi_code/nwfs.lua~ @@ -0,0 +1,101 @@ +function set_wifi_up() + --local cmd = "/sbin/wifi up".. wnet + local cmd = "/sbin/wifi up ".. "mt7628" + exec_cmd_in_sh(cmd) + luci.http.write_json("true") +end + +function set_wifi_down() + local cmd = "/sbin/wifi down ".."mt7628" + --local cmd = "/sbin/wifi down"..wnet + exec_cmd_in_sh(cmd) + luci.http.write_json("true") +end + +--set +function fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + if week_repeat == "non-repeat" then + week_repeat = "0,1,2,3,4,5,6" --"1,2,3,4,5,6,0 is error,可能会误删repeat的数据" + cmd_close = "/sbin/smart_wifi "..close_min.." "..close_hour.." "..week_repeat + cmd_open = "/sbin/smart_wifi "..open_min.." "..open_hour.." "..week_repeat + else + cmd_close = "echo '"..close_min.." "..close_hour.." * * "..week_repeat.." /sbin/wifi down "..wnet..";" + ..close_min..close_hour..open_min..open_hour..week_repeat + ..">/dev/null 2>/dev/null' >> /etc/crontabs/root; crontab /etc/crontabs/root;" + + cmd_open = "echo '"..open_min.." "..open_hour.." * * "..week_repeat.." /sbin/wifi up "..wnet..";" + ..close_min..close_hour..open_min..open_hour..week_repeat + ..">/dev/null 2>/dev/null' >> /etc/crontabs/root; echo '' >> /etc/crontabs/root; crontab /etc/crontabs/root;" + end + luci.http.write_json(cmd_close) + luci.http.write_json(cmd_open) + + exec_cmd_in_sh(cmd_close) + posix.sleep(1) + exec_cmd_in_sh(cmd_open) +end + +--stop +function set_smart_wifi_stop(update_flag) + local cmd = "sed -i '/"..update_flag.."/d' /etc/crontabs/root; crontab /etc/crontabs/root" + exec_cmd_in_sh(cmd) + luci.http.write_json(cmd) +end + + +--function: 定时wifi开关shell形式 +--author: rh_Jameson +function set_smart_wifi_updown() + + --get para + --wnet = luci.http.formvalue("wnet") + --close_hour = luci.http.formvalue("close_hour") + --close_min = luci.http.formvalue("close_min") + --open_hour = luci.http.formvalue("open_hour") + --open_min = luci.http.formvalue("open_min") + --repeat_var_from_http = luci.http.formvalue("repeat_var") + --func = luci.http.formvalue("func") + + --test + local wnet = 'mt7628' + local close_hour = "07" + local close_min = "25" + local open_hour = "07" + local open_min = "26" + local repeat_var_from_http = "1111111" + local func = luci.http.formvalue("func") + --para err manage + if string.len(repeat_var_from_http) ~= 7 then + luci.http.write_json("len error") + return + end + + --get repeat + local week_repeat = "" + for i = 0, #repeat_var_from_http do + tmp = string.sub(repeat_var_from_http, i, i) + if tmp == "1" then + if i == #repeat_var_from_http then + week_repeat = week_repeat..0 + break + end + week_repeat = week_repeat..tostring(i).."," + end + end + if week_repeat == "" then + week_repeat = "non-repeat" + end + --exec + if func == "set" then + fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + elseif func == "stop" or func == "update" then + local update_flag = luci.http.formvalue("flag") + set_smart_wifi_stop(update_flag) + + if func == "update" then + posix.sleep(1) + fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + end + end +end + diff --git a/R10-WIFI.lua b/smart_wifi_code/old/R10-WIFI.lua similarity index 100% rename from R10-WIFI.lua rename to smart_wifi_code/old/R10-WIFI.lua diff --git a/smart_wifi_code/smart_wifi b/smart_wifi_code/smart_wifi new file mode 100755 index 0000000..d7d5c6c --- /dev/null +++ b/smart_wifi_code/smart_wifi @@ -0,0 +1,4 @@ +#!/bin/sh +echo "" >> /etc/crontabs/root; +echo "$1 $2 * * $3 /sbin/wifi down mt7628;sleep 4; sed -i '/$1$2$3/d' /etc/crontabs/root; crontab /etc/crontab/root; $1$2$3 >/dev/null 2>/dev/null " >> /etc/crontabs/root; crontab /etc/crontabs/root; +echo "" >> /etc/crontabs/root; diff --git a/smart_wifi_code/test.lua b/smart_wifi_code/test.lua new file mode 100644 index 0000000..fa93366 --- /dev/null +++ b/smart_wifi_code/test.lua @@ -0,0 +1,24 @@ +local nwfs = require "meizu.nwfs" + +--error +--nwfs.fork_smart_wifi_updown("mt7628", "*", "*", "*", "*", "*") + + + + +--set repeat task test +--nwfs.fork_smart_wifi_updown("mt7628", "22", "22", "22", "23", "1,4,5,0") +--posix.sleep(2) +--nwfs.fork_smart_wifi_updown("mt7628", "12", "09", "22", "23", "1,2,3,4,5,6,0") + + + +--stop all task +nwfs.set_smart_wifi_stop("*****") + + + +--set non-repeat task test +--nwfs.fork_smart_wifi_updown("mt7628", "12", "06", "22", "23", "non-repeat") +--posix.sleep(1) +--nwfs.fork_smart_wifi_updown("mt7628", "22", "11", "11", "22", "non-repeat") diff --git a/smart_wifi_code/updateWifi.lua b/smart_wifi_code/updateWifi.lua new file mode 100644 index 0000000..af6907f --- /dev/null +++ b/smart_wifi_code/updateWifi.lua @@ -0,0 +1,554 @@ +==============================第一版============================= +--function: 定时wifi开关 +--author: rh_Jameson +function smart_wifi_shutdown() + local wnet = 'mt7628.network1' + local table = {} + + --get para + --local close_time = luci.http.formvalue("close_time") + --local open_time = luci.http.formvalue("open_time") + + --test normal + --local close_time = os.time() + 5 + --local restart_time = os.time() + 10 + + --test exception + local close_time = os.time() - 5 + local restart_time = os.time() - 10 + + --para err manage + if close_time < os.time() or restart_time < close_time then + table["err"] = true + luci.http.write_json(table) + return + end + --do close + while true do + if os.time() ~= close_time then + posix.sleep(1) + else + wifi_shutdown(wnet) + table["close"] = true + luci.http.write_json(table) + break + end + end + + --do restart + while true do + if os.time() ~= restart_time then + posix.sleep(1) + else + wifi_reconnect(wnet) + table["restart"] = true + luci.http.write_json(table) + break + end + end +end + +============================第二版================================ + + +-----------------------api/index.lua------------------------------ +set_smart_wifi_updown = nwfs.set_smart_wifi_updown +set_wifi_up = nwfs.set_wifi_up +set_wifi_down = nwfs.set_wifi_down +set_smart_wifi_update = nwfs.set_smart_wifi_update +set_smart_wifi_stop = nwfs.set_smart_wifi_stop + +--rh +page = entry({"api", "wifiUp"}, call("set_wifi_up"), nil) +page.leaf = true +page = entry({"api", "wifiDown"}, call("set_wifi_down"), nil) +page.leaf = true +page = entry({"api", "setSmartWifiUpdate"}, call("set_smart_wifi_update"), nil) +page.leaf = true +page = entry({"api", "setSmartWifiStop"}, call("set_smart_wifi_stop"), nil) +page.leaf = true +page = entry({"api", "setSmartWifiUpdown"}, call("set_smart_wifi_updown"), nil) +page.leaf = true + + + + +------------------------meizu/nwfs.lua---------------------------- +function set_wifi_up() + --local cmd = "/sbin/wifi up".. wnet + local cmd = "/sbin/wifi up ".. "mt7628" + exec_cmd_in_sh(cmd) + luci.http.write_json("true") +end + +function set_wifi_down() + local cmd = "/sbin/wifi down ".."mt7628" + --local cmd = "/sbin/wifi down"..wnet + exec_cmd_in_sh(cmd) + luci.http.write_json("true") +end + +function set_smart_wifi_stop() + local pid = luci.http.formvalue("pid") + --exception manage + if(close_time == nil or open_time == nil) then + luci.http.write_json("smart_wifi not set") + return + end + if(pid == nil) then + luci.http.write_json("pid err") + end + + --到点关闭前 + if os.time() < close_time then + local cmd = "kill "..pid + --到点关闭后,到点启动前 + elseif os.time() >= close_time and os.time() <= open_time then + local cmd = "kill "..pid.."; /sbin/wifi up" + --到点启动后 + else + luci.http.write_json("smart wifi has finished,can not stop!") + return + end + exec_cmd_in_sh(cmd) + luci.http.write_json("true") +end + +function set_smart_wifi_update() + local pid = luci.http.formvalue("pid") + + --exception manage + if(close_time == nil or open_time == nil) then + luci.http.write_json("smart_wifi not set") + return + end + if(pid == nil) then + luci.http.write_json("pid err") + end + + --到点关闭前 + if os.time() < close_time then + local cmd = "kill "..pid + --到点关闭后,到点启动前 + elseif os.time() >= close_time and os.time() <= open_time then + local cmd = "kill "..pid.."; /sbin/wifi up" + --到点启动后 + end + exec_cmd_in_sh(cmd) + + --get para + --close_time = os.time(lucimZhttp.formvalue("close_time")) + --open_time = os.time(luci.http.formvalue("open_time")) + + --test normal + close_time = os.time() + 5 + restart_time = os.time() + 10 + + --test exception + --close_time = os.time() - 5 + --restart_time = os.time() - 10 + + set_smart_wifi_updown(close_time, restart_time) +end + + +function fork_smart_wifi_updown( wnet, close_time, open_time) + local close_interval = close_time - os.time() + local open_interval = open_time - os.time() + local cmd = string.format("sleep 15;/sbin/wifi down "..wnet.."; sleep 15; /sbin/wifi up "..wnet) + + return exec_cmd_in_sh(cmd) + --exec_cmd_in_sh(cmd) +end + + +--function: 定时wifi开关shell形式 +--author: rh_Jameson +function set_smart_wifi_updown() + local wnet = 'mt7628' + local info = {} + + --get para + --close_time = lucimZhttp.formvalue("close_time") + --open_time = luci.http.formvalue("open_time") + + --test normal + close_time = os.time() + 5 + restart_time = os.time() + 10 + + --test exception + --close_time = os.time() - 5 + --restart_time = os.time() - 10 + + --para err manage + if close_time < os.time() or restart_time < close_time then + info["SUCCESS"] = false + else + info["SUCCESS"] = true + end + + local pid = fork_smart_wifi_updown(wnet, close_time, restart_time) + info["PID"] = pid + luci.http.write_json(info) +end +--重载 +function set_smart_wifi_updown(close_time,restart_time) + + local wnet = 'mt7628' + local info = {} + + --para err manage + if close_time < os.time() or restart_time < close_time then + info["SUCCESS"] = false + else + info["SUCCESS"] = true + end + + local pid = fork_smart_wifi_updown(wnet, close_time, restart_time) + info["PID"] = pid + luci.http.write_json(info) +end + + +-------------------------------bfs.lua--line_92------------------------------- +function exec_cmd_in_sh(command) + local nio = require("nixio") + require "MZLog".log(3, command) + local pid = nio.fork() + if pid > 0 then + return pid + elseif pid == 0 then + nio.chdir("/") + local null = nio.open("/dev/null", "w+") + if null then + nio.dup(null, nio.stderr) + nio.dup(null, nio.stdout) + nio.dup(null, nio.stdin) + if null:fileno() > 2 then + null:close() + end + end + nio.exec("/bin/sh", "-c", command) + end +end + + +-------------------------UTC-CODE-字符串形式UTC时间转时间戳------------------------ +local lue = require("luci.util").exec +local t = lue([[date -d "2010-10-10 10:10:10" +%s]]) +print(tonumber(t)) + + +local lue = require("luci.util").exec + + +--local t = lue('date -d "2010-10-10 10:10:10" +%s') + +local t = lue([[date -d "2010-10-10 10:10:10" +%s]]) + +print(tonumber(t)) +print(t) + + +----------------------------Lua-多线程回调函数实现--------------------------------- +--回调 +function fork_exec_in_lua(func) + local nio = require("nixio") +-- require "MZLog".log(3, command) + local pid = nio.fork() + if pid > 0 then + print(pid) + return + elseif pid == 0 then + func() + end +end + + +--主调 +local bfs = require("meizu.bfs") +function test() + local i = 1 + while(i < 10) do + print(i) + i = i + 1 + end +end + +bfs.fork_exec_in_lua(test) + + + +----------------------------Lua-函数不可以重载----------------------------------- +--test +function fun() + print("11111") +end + +function fun(str) + print(str) +end + +fun() +fun("2222") +fun() + + +--result +nil +2222 +nil + +----------------------------crontabs & crond------------------------------------ + +crontab -u //设定某个用户的cron服务,一般root用户在执行这个命令的时候需要此参数 +crontab -l //列出某个用户cron服务的详细内容 +crontab -r //删除没个用户的cron服务 +crontab -e //编辑某个用户的cron服务 + +基本用法: +1. crontab -l +列出当前的crontab任务 +2. crontab -d +删除当前的crontab任务 +3. crontab -e (solaris5.8上面是 crontab -r) +编辑一个crontab任务,ctrl_D结束 + + +4. crontab filename +以filename做为crontab的任务列表文件并载入 + +/*以下是多启动一个进程进行服务*/ +crond start //启动服务 + +crond stop //关闭服务 + +crond restart //重启服务 + +crond reload //重新载入配置 + +--openwrt设置/etc/crontabs/root: +* * * * * echo "hello" >> /cron.txt + +--每次做修改时使用crontab /etc/crondtabs/root +--crontabs/root文件下写的定时任务是多线程运行,不按顺序执行 + + +Sed命令: +sed -n '/hello/p' cron.txt 查询hello关键字,打印相应行 + +sed '/hello/d' cron.txt 删除含hello的行,输出到屏幕(原文件没删除) + +sed -i '/hello/d' cron.txt 直接修改原文件 + + + +--[[non-repeat任务]]-- +* * * * * echo "flag non-repeat">> /cron.txt; sed -i '/sed/d' /etc/crontabs/root + +--[[repeat任务]]-- +--添加定时任务exam +echo "* * * * * date >>/cron.txt">>/etc/crontabs/root;flag >/dev/null 2>/ + +--删除定时任务exam +sed -i '/hello/d' /etc/crontabs/root + +--修改定时任务exam + +==================================第三版-TEST================================ + +echo '* * * * non-repeat /sbin/wifi down mt7628; sed -i "/* * * * non-repeat/d" etc/crontabs/root' >> /etc/crontabs/root; crontab /etc/crontabs/root; + +* * * * * /sbin/wifi down mt7628; sed -i '/sed/d' etc/crontabs/root; crontab /etc/crontabs/root; +* * * * * date >>/cron.txt; sed -i '/sed/d' /etc/crontabs/root + + +--non-repeat任务: +echo "$1 $2 * * $3 /sbin/wifi down mt7628; + sleep 4; + sed -i '/$1$2$3/d' /etc/crontabs/root; + crontab /etc/crontab/root; + $1$2$3 >/dev/null 2>/dev/null " >> /etc/crontabs/root; crontab /etc/crontabs/root; + +bin cron.txt * * dev /sbin/wifi down mt7628;sleep 4; sed -i '/bincron.txtdev/d' /etc/crontabs/root; crontab /etc/crontab/root; bincron.txtdev >/dev/null 2>/dev/null + + + +--non-repeate任务: + if week_repeat == "non-repeat" then + week_repeat = "0,1,2,3,4,5,6" + close_min = "40" + Segmentation fault + cmd = "/sbin/smart@OpenWrt:/usr/lib/lua/meizu# e_hour.." "..week_repeat + else + cmd = "echo '"..close_min.." "..close_hour.." * * "..week_repeat.." /sbin/wifi down "..wnet.."' >> /etc/crontabs/root; crontab /etc/cronta + ..close_min..close_hour..open_hour..open_min..week_repeat.." >/dev/null 2>/dev/null" + --cmd = "echo '"..open_min.." "..open_hour.." * * "..week_repeat.." /sbin/wifi up "..wnet.."' >> /etc/crontabs/root; crontab /etc/crontabs + end + luci.http.write_json(cmd) + exec_cmd_in_sh(cmd) + luci.http.write_json(true) + + + +if week_repeat == "non-repeat" then + week_repeat = "*" + cmd_close = "/sbin/smart_wifi "..close_hour.." "..close_min.." "..week_repeat + --cmd_open = "echo '"..close_min.." "..close_hour.." * * "..week_repeat.." /sbin/wifi down "..wnet + -- .."; sed -i '/"..close_min..close_hour..open_hour..open_min..week_repeat + -- .."/d' etc/crontabs/root >> /etc/crontabs/root; crontab /etc/crontabs/root; " + -- ..close_min..close_hour..open_hour..open_min..week_repeat.." >/dev/null 2>/dev/null" + else + cmd_close = "echo '"..close_min.." "..close_hour.." * * "..week_repeat.." /sbin/wifi down "..wnet + .."' >> /etc/crontabs/root; crontab /etc/crontabs/root; " + ..close_min..close_hour..open_hour..open_min..week_repeat.." >/dev/null 2>/dev/null" + + --cmd_open = "echo '"..open_min.." "..open_hour.." * * "..week_repeat.." /sbin/wifi up "..wnet.."' >> /etc/crontabs/root; crontab /etc/crontabs/root; "..close_min..close_hour..open_hour..open_min..week_repeat.." >/dev/null 2>/dev/null" + end + + luci.http.write_json(cmd_close) + --luci.http.write_json(cmd_open) + + exec_cmd_in_sh(cmd_close) + --exec_cmd_in_sh(cmd_open) + + luci.http.write_json(true) + + +===============================================================第三版-succeed==================================================== + +-------------------------./package/base-files/files/sbin/wifi------------------------------------ + +#!/bin/sh +echo "" >> /etc/crontabs/root; +echo "$1 $2 * * $3 /sbin/wifi down mt7628;sleep 4; sed -i '/$1$2$3/d' /etc/crontabs/root; crontab /etc/crontab/root; $1$2$3 >/dev/null 2>/dev/null " >> /etc/crontabs/root; crontab /etc/crontabs/root; +echo "" >> /etc/crontabs/root; + + + +------------------------------------------------set smart wifi------------------------------------ +function fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + if week_repeat == "non-repeat" then + week_repeat = "0,1,2,3,4,5,6" --"1,2,3,4,5,6,0 is error,可能会误删repeat的数据" + cmd_close = "/sbin/smart_wifi "..close_min.." "..close_hour.." "..week_repeat + cmd_open = "/sbin/smart_wifi "..open_min.." "..open_hour.." "..week_repeat + else + cmd_close = "echo '"..close_min.." "..close_hour.." * * "..week_repeat.." /sbin/wifi down "..wnet..";" + ..close_min..close_hour..open_min..open_hour..week_repeat + ..">/dev/null 2>/dev/null' >> /etc/crontabs/root; crontab /etc/crontabs/root;" + + cmd_open = "echo '"..open_min.." "..open_hour.." * * "..week_repeat.." /sbin/wifi up "..wnet..";" + ..close_min..close_hour..open_min..open_hour..week_repeat + ..">/dev/null 2>/dev/null' >> /etc/crontabs/root; echo '' >> /etc/crontabs/root; crontab /etc/crontabs/root;" + end + luci.http.write_json(cmd_close) + luci.http.write_json(cmd_open) + + exec_cmd_in_sh(cmd_close) + posix.sleep(1) + exec_cmd_in_sh(cmd_open) +end + +-----------------------------------------------stop smart wifi------------------------------------ +function set_smart_wifi_stop(update_flag) + local cmd = "sed -i '/"..update_flag.."/d' /etc/crontabs/root; crontab /etc/crontabs/root" + exec_cmd_in_sh(cmd) + luci.http.write_json(cmd) +end + + + +--------------------------------------------update smart wifi------------------------------------- +--(stop + set) smartwifi + + + + +----------------------------------------------smart wifi api-------------------------------------- +--function: 定时wifi开关shell形式 +--author: rh_Jameson +function set_smart_wifi_updown() + + --get para + --wnet = luci.http.formvalue("wnet") + --close_hour = luci.http.formvalue("close_hour") + --close_min = luci.http.formvalue("close_min") + --open_hour = luci.http.formvalue("open_hour") + --open_min = luci.http.formvalue("open_min") + --repeat_var_from_http = luci.http.formvalue("repeat_var") + --func = luci.http.formvalue("func") + + --test + local wnet = 'mt7628' + local close_hour = "07" + local close_min = "25" + local open_hour = "07" + local open_min = "26" + local repeat_var_from_http = "1111111" + local func = luci.http.formvalue("func") + --para err manage + if string.len(repeat_var_from_http) ~= 7 then + luci.http.write_json("len error") + return + end + + --get repeat + local week_repeat = "" + for i = 0, #repeat_var_from_http do + tmp = string.sub(repeat_var_from_http, i, i) + if tmp == "1" then + if i == #repeat_var_from_http then + week_repeat = week_repeat..0 + break + end + week_repeat = week_repeat..tostring(i).."," + end + end + if week_repeat == "" then + week_repeat = "non-repeat" + end + --exec + if func == "set" then + fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + elseif func == "stop" or func == "update" then + local update_flag = luci.http.formvalue("flag") + set_smart_wifi_stop(update_flag) + + if func == "update" then + posix.sleep(1) + fork_smart_wifi_updown(wnet, close_hour, close_min, open_hour, open_min, week_repeat) + end + end +end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tags b/tags deleted file mode 100644 index ccf3635..0000000 --- a/tags +++ /dev/null @@ -1,3397 +0,0 @@ -!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ -!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ -!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ -!_TAG_PROGRAM_NAME Exuberant Ctags // -!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ -!_TAG_PROGRAM_VERSION 5.9~svn20110310 // -"Failed to execute " .. (type(c.target) ./Me_Lua/h10/luci/dispatcher.lua /^ "Failed to execute " .. (type(c.target) == "function" and "function" or c.target.type or "unknown") ..$/;" f -"Failed to execute " .. (type(c.target) ./Me_Lua/h13/luci/dispatcher.lua /^ "Failed to execute " .. (type(c.target) == "function" and "function" or c.target.type or "unknown") ..$/;" f -"Failed to execute " .. (type(c.target) ./Mi_Lua/luci/dispatcher.lua /^ "Failed to execute " .. (type(c.target) == "function" and "function" or c.target.type or "unknown") ..$/;" f -ADD ./Mi_Lua/sha1.lua /^local function ADD(first, ...)$/;" f -AND ./Mi_Lua/sha1.lua /^local function AND(a, b)$/;" f -AbstractSection.__init__ ./Mi_Lua/luci/cbi.lua /^function AbstractSection.__init__(self, map, sectiontype, ...)$/;" f -AbstractSection.add_dynamic ./Mi_Lua/luci/cbi.lua /^function AbstractSection.add_dynamic(self, field, optional)$/;" f -AbstractSection.cfgvalue ./Mi_Lua/luci/cbi.lua /^function AbstractSection.cfgvalue(self, section)$/;" f -AbstractSection.create ./Mi_Lua/luci/cbi.lua /^function AbstractSection.create(self, section)$/;" f -AbstractSection.has_tabs ./Mi_Lua/luci/cbi.lua /^function AbstractSection.has_tabs(self)$/;" f -AbstractSection.option ./Mi_Lua/luci/cbi.lua /^function AbstractSection.option(self, class, option, ...)$/;" f -AbstractSection.parse_dynamic ./Mi_Lua/luci/cbi.lua /^function AbstractSection.parse_dynamic(self, section)$/;" f -AbstractSection.parse_optionals ./Mi_Lua/luci/cbi.lua /^function AbstractSection.parse_optionals(self, section)$/;" f -AbstractSection.push_events ./Mi_Lua/luci/cbi.lua /^function AbstractSection.push_events(self)$/;" f -AbstractSection.remove ./Mi_Lua/luci/cbi.lua /^function AbstractSection.remove(self, section)$/;" f -AbstractSection.render_tab ./Mi_Lua/luci/cbi.lua /^function AbstractSection.render_tab(self, tab, ...)$/;" f -AbstractSection.tab ./Mi_Lua/luci/cbi.lua /^function AbstractSection.tab(self, tab, title, desc)$/;" f -AbstractSection.taboption ./Mi_Lua/luci/cbi.lua /^function AbstractSection.taboption(self, tab, ...)$/;" f -AbstractValue.__init__ ./Mi_Lua/luci/cbi.lua /^function AbstractValue.__init__(self, map, section, option, ...)$/;" f -AbstractValue.add_error ./Mi_Lua/luci/cbi.lua /^function AbstractValue.add_error(self, section, type, msg)$/;" f -AbstractValue.additional ./Mi_Lua/luci/cbi.lua /^function AbstractValue.additional(self, value)$/;" f -AbstractValue.cbid ./Mi_Lua/luci/cbi.lua /^function AbstractValue.cbid(self, section)$/;" f -AbstractValue.cfgvalue ./Mi_Lua/luci/cbi.lua /^function AbstractValue.cfgvalue(self, section)$/;" f -AbstractValue.depends ./Mi_Lua/luci/cbi.lua /^function AbstractValue.depends(self, field, value)$/;" f -AbstractValue.formcreated ./Mi_Lua/luci/cbi.lua /^function AbstractValue.formcreated(self, section)$/;" f -AbstractValue.formvalue ./Mi_Lua/luci/cbi.lua /^function AbstractValue.formvalue(self, section)$/;" f -AbstractValue.mandatory ./Mi_Lua/luci/cbi.lua /^function AbstractValue.mandatory(self, value)$/;" f -AbstractValue.parse ./Mi_Lua/luci/cbi.lua /^function AbstractValue.parse(self, section, novld)$/;" f -AbstractValue.prepare ./Mi_Lua/luci/cbi.lua /^function AbstractValue.prepare(self)$/;" f -AbstractValue.remove ./Mi_Lua/luci/cbi.lua /^function AbstractValue.remove(self, section)$/;" f -AbstractValue.render ./Mi_Lua/luci/cbi.lua /^function AbstractValue.render(self, s, scope)$/;" f -AbstractValue.validate ./Mi_Lua/luci/cbi.lua /^function AbstractValue.validate(self, value)$/;" f -AbstractValue.write ./Mi_Lua/luci/cbi.lua /^function AbstractValue.write(self, section, value)$/;" f -ActiveDecoder.__init__ ./Mi_Lua/luci/json.lua /^function ActiveDecoder.__init__(self, source, customnull)$/;" f -ActiveDecoder.fetch ./Mi_Lua/luci/json.lua /^function ActiveDecoder.fetch(self)$/;" f -ActiveDecoder.get ./Mi_Lua/luci/json.lua /^function ActiveDecoder.get(self)$/;" f -Button.__init__ ./Mi_Lua/luci/cbi.lua /^function Button.__init__(self, ...)$/;" f -COPY ./Mi_Lua/sha1.lua /^local function COPY(old)$/;" f -Compound.__init__ ./Mi_Lua/luci/cbi.lua /^function Compound.__init__(self, ...)$/;" f -Compound.parse ./Mi_Lua/luci/cbi.lua /^function Compound.parse(self, ...)$/;" f -Compound.populate_delegator ./Mi_Lua/luci/cbi.lua /^function Compound.populate_delegator(self, delegator)$/;" f -Cursor._affected ./Mi_Lua/luci/model/uci.lua /^function Cursor._affected(self, configlist)$/;" f -Cursor.apply ./Mi_Lua/luci/model/uci.lua /^function Cursor.apply(self, configlist, command)$/;" f -Cursor.delete_all ./Mi_Lua/luci/model/uci.lua /^function Cursor.delete_all(self, config, stype, comparator)$/;" f -Cursor.get_bool ./Mi_Lua/luci/model/uci.lua /^function Cursor.get_bool(self, ...)$/;" f -Cursor.get_first ./Mi_Lua/luci/model/uci.lua /^function Cursor.get_first(self, conf, stype, opt, def)$/;" f -Cursor.get_list ./Mi_Lua/luci/model/uci.lua /^function Cursor.get_list(self, config, section, option)$/;" f -Cursor.load ./Mi_Lua/luci/model/uci.lua /^function Cursor.load(self, ...)$/;" f -Cursor.section ./Mi_Lua/luci/model/uci.lua /^function Cursor.section(self, config, type, name, values)$/;" f -Cursor.set_list ./Mi_Lua/luci/model/uci.lua /^function Cursor.set_list(self, config, section, option, value)$/;" f -Cursor.substate ./Mi_Lua/luci/model/uci.lua /^function Cursor.substate(self)$/;" f -Cursor.tset ./Mi_Lua/luci/model/uci.lua /^function Cursor.tset(self, config, section, values)$/;" f -Cursor.unload ./Mi_Lua/luci/model/uci.lua /^function Cursor.unload(self, ...)$/;" f -Decoder.__init__ ./Mi_Lua/luci/json.lua /^function Decoder.__init__(self, customnull)$/;" f -Decoder.dispatch ./Mi_Lua/luci/json.lua /^function Decoder.dispatch(self, chunk, src_err, strict)$/;" f -Decoder.fetch ./Mi_Lua/luci/json.lua /^function Decoder.fetch(self)$/;" f -Decoder.fetch_atleast ./Mi_Lua/luci/json.lua /^function Decoder.fetch_atleast(self, chunk, bytes)$/;" f -Decoder.fetch_until ./Mi_Lua/luci/json.lua /^function Decoder.fetch_until(self, chunk, pattern)$/;" f -Decoder.get ./Mi_Lua/luci/json.lua /^function Decoder.get(self)$/;" f -Decoder.parse_array ./Mi_Lua/luci/json.lua /^function Decoder.parse_array(self, chunk)$/;" f -Decoder.parse_delimiter ./Mi_Lua/luci/json.lua /^function Decoder.parse_delimiter(self, chunk, delimiter)$/;" f -Decoder.parse_escape ./Mi_Lua/luci/json.lua /^function Decoder.parse_escape(self, chunk)$/;" f -Decoder.parse_false ./Mi_Lua/luci/json.lua /^function Decoder.parse_false(self, chunk)$/;" f -Decoder.parse_literal ./Mi_Lua/luci/json.lua /^function Decoder.parse_literal(self, chunk, literal, value)$/;" f -Decoder.parse_null ./Mi_Lua/luci/json.lua /^function Decoder.parse_null(self, chunk)$/;" f -Decoder.parse_number ./Mi_Lua/luci/json.lua /^function Decoder.parse_number(self, chunk)$/;" f -Decoder.parse_object ./Mi_Lua/luci/json.lua /^function Decoder.parse_object(self, chunk)$/;" f -Decoder.parse_space ./Mi_Lua/luci/json.lua /^function Decoder.parse_space(self, chunk)$/;" f -Decoder.parse_string ./Mi_Lua/luci/json.lua /^function Decoder.parse_string(self, chunk)$/;" f -Decoder.parse_true ./Mi_Lua/luci/json.lua /^function Decoder.parse_true(self, chunk)$/;" f -Decoder.sink ./Mi_Lua/luci/json.lua /^function Decoder.sink(self)$/;" f -Delegator.__init__ ./Mi_Lua/luci/cbi.lua /^function Delegator.__init__(self, ...)$/;" f -Delegator.add ./Mi_Lua/luci/cbi.lua /^function Delegator.add(self, name, node)$/;" f -Delegator.get ./Mi_Lua/luci/cbi.lua /^function Delegator.get(self, name)$/;" f -Delegator.get_active ./Mi_Lua/luci/cbi.lua /^function Delegator.get_active(self)$/;" f -Delegator.get_chain ./Mi_Lua/luci/cbi.lua /^function Delegator.get_chain(self)$/;" f -Delegator.get_next ./Mi_Lua/luci/cbi.lua /^function Delegator.get_next(self, state)$/;" f -Delegator.get_prev ./Mi_Lua/luci/cbi.lua /^function Delegator.get_prev(self, state)$/;" f -Delegator.insert_after ./Mi_Lua/luci/cbi.lua /^function Delegator.insert_after(self, name, after)$/;" f -Delegator.parse ./Mi_Lua/luci/cbi.lua /^function Delegator.parse(self, ...)$/;" f -Delegator.set ./Mi_Lua/luci/cbi.lua /^function Delegator.set(self, name, node)$/;" f -Delegator.set_route ./Mi_Lua/luci/cbi.lua /^function Delegator.set_route(self, ...)$/;" f -DoExec ./Mi_Lua/xiaoqiang/util/XQMitvUtil.lua /^function DoExec(cmd)$/;" f -DummyValue.__init__ ./Mi_Lua/luci/cbi.lua /^function DummyValue.__init__(self, ...)$/;" f -DummyValue.cfgvalue ./Mi_Lua/luci/cbi.lua /^function DummyValue.cfgvalue(self, section)$/;" f -DummyValue.parse ./Mi_Lua/luci/cbi.lua /^function DummyValue.parse(self)$/;" f -DynamicList.__init__ ./Mi_Lua/luci/cbi.lua /^function DynamicList.__init__(self, ...)$/;" f -DynamicList.cfgvalue ./Mi_Lua/luci/cbi.lua /^function DynamicList.cfgvalue(self, section)$/;" f -DynamicList.formvalue ./Mi_Lua/luci/cbi.lua /^function DynamicList.formvalue(self, section)$/;" f -DynamicList.reset_values ./Mi_Lua/luci/cbi.lua /^function DynamicList.reset_values(self)$/;" f -DynamicList.value ./Mi_Lua/luci/cbi.lua /^function DynamicList.value(self, key, val)$/;" f -DynamicList.write ./Mi_Lua/luci/cbi.lua /^function DynamicList.write(self, section, value)$/;" f -Encoder.__init__ ./Mi_Lua/luci/json.lua /^function Encoder.__init__(self, data, buffersize, fastescape)$/;" f -Encoder.dispatch ./Mi_Lua/luci/json.lua /^function Encoder.dispatch(self, data, start)$/;" f -Encoder.parse_bool ./Mi_Lua/luci/json.lua /^function Encoder.parse_bool(self, obj)$/;" f -Encoder.parse_iter ./Mi_Lua/luci/json.lua /^function Encoder.parse_iter(self, obj)$/;" f -Encoder.parse_nil ./Mi_Lua/luci/json.lua /^function Encoder.parse_nil(self)$/;" f -Encoder.parse_number ./Mi_Lua/luci/json.lua /^function Encoder.parse_number(self, obj)$/;" f -Encoder.parse_string ./Mi_Lua/luci/json.lua /^function Encoder.parse_string(self, obj)$/;" f -Encoder.put ./Mi_Lua/luci/json.lua /^function Encoder.put(self, chunk)$/;" f -Encoder.source ./Mi_Lua/luci/json.lua /^function Encoder.source(self)$/;" f -FileBrowser.__init__ ./Mi_Lua/luci/cbi.lua /^function FileBrowser.__init__(self, ...)$/;" f -FileUpload.__init__ ./Mi_Lua/luci/cbi.lua /^function FileUpload.__init__(self, ...)$/;" f -FileUpload.cfgvalue ./Mi_Lua/luci/cbi.lua /^function FileUpload.cfgvalue(self, section)$/;" f -FileUpload.formcreated ./Mi_Lua/luci/cbi.lua /^function FileUpload.formcreated(self, section)$/;" f -FileUpload.formvalue ./Mi_Lua/luci/cbi.lua /^function FileUpload.formvalue(self, section)$/;" f -FileUpload.remove ./Mi_Lua/luci/cbi.lua /^function FileUpload.remove(self, section)$/;" f -Flag.__init__ ./Mi_Lua/luci/cbi.lua /^function Flag.__init__(self, ...)$/;" f -Flag.cfgvalue ./Mi_Lua/luci/cbi.lua /^function Flag.cfgvalue(self, section)$/;" f -Flag.parse ./Mi_Lua/luci/cbi.lua /^function Flag.parse(self, section)$/;" f -Form.__init__ ./Mi_Lua/luci/cbi.lua /^function Form.__init__(self, ...)$/;" f -Hex ./Mi_Lua/luci/ip.lua /^function Hex( hex, prefix, family, swap )$/;" f -IPv4 ./Mi_Lua/luci/ip.lua /^function IPv4(address, netmask)$/;" f -IPv6 ./Mi_Lua/luci/ip.lua /^function IPv6(address, netmask)$/;" f -IptParser.__init__ ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.__init__( self, family )$/;" f -IptParser._match_options ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser._match_options( self, o1, o2 )$/;" f -IptParser._parse_addr ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser._parse_addr( self, addr )$/;" f -IptParser._parse_rules ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser._parse_rules( self )$/;" f -IptParser.chain ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.chain( self, table, chain )$/;" f -IptParser.chains ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.chains( self, table )$/;" f -IptParser.find ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.find( self, args )$/;" f -IptParser.is_custom_target ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.is_custom_target( self, target )$/;" f -IptParser.resync ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.resync( self )$/;" f -IptParser.tables ./Mi_Lua/luci/sys/iptparser.lua /^function IptParser.tables( self )$/;" f -KEY_FUNC_2G_CHANNEL ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_2G_CHANNEL = "function_channel_2g"$/;" f -KEY_FUNC_2G_SIGNAL ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_2G_SIGNAL = "function_channel_2g_signal"$/;" f -KEY_FUNC_5G_CHANNEL ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_5G_CHANNEL = "function_channel_5g"$/;" f -KEY_FUNC_5G_SIGNAL ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_5G_SIGNAL = "function_channel_5g_signal"$/;" f -KEY_FUNC_APPQOS ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_APPQOS = "function_appqos"$/;" f -KEY_FUNC_DMZ ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_DMZ = "function_dmz"$/;" f -KEY_FUNC_L2TP ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_L2TP = "function_l2tp_web"$/;" f -KEY_FUNC_MACCLONE ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_MACCLONE = "function_clone"$/;" f -KEY_FUNC_NOFLUSHED ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_NOFLUSHED = "function_hdd_hibernation"$/;" f -KEY_FUNC_PLUGIN ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_PLUGIN = "function_plugin"$/;" f -KEY_FUNC_PORTENABLE ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_PORTENABLE = "function_port_forwarding_active"$/;" f -KEY_FUNC_PORTFADD ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_PORTFADD = "function_port_forwarding_add"$/;" f -KEY_FUNC_PPTP ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_PPTP = "function_pptp_web"$/;" f -KEY_FUNC_QOS ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_QOS = "function_qos"$/;" f -KEY_FUNC_RANGEFADD ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_RANGEFADD = "function_range_forwarding_add"$/;" f -KEY_FUNC_UPNP ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_UPNP = "function_upnp"$/;" f -KEY_FUNC_WIRELESS_ACCESS ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_WIRELESS_ACCESS = "function_wireless_access"$/;" f -KEY_FUNC_WIRELESS_BLACK ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_WIRELESS_BLACK = "function_wireless_access_blacklist"$/;" f -KEY_FUNC_WIRELESS_WHITE ./Mi_Lua/xiaoqiang/XQLog.lua /^KEY_FUNC_WIRELESS_WHITE = "function_wireless_access_whitelist"$/;" f -LEVEL_FUNCS[i] ./Mi_Lua/logging.lua /^ LEVEL_FUNCS[i] = function(self, ...)$/;" f -LOG_MSG ./Mi_Lua/logging.lua /^local function LOG_MSG(self, level, fmt, ...)$/;" f -ListValue.__init__ ./Mi_Lua/luci/cbi.lua /^function ListValue.__init__(self, ...)$/;" f -ListValue.reset_values ./Mi_Lua/luci/cbi.lua /^function ListValue.reset_values(self)$/;" f -ListValue.validate ./Mi_Lua/luci/cbi.lua /^function ListValue.validate(self, val)$/;" f -ListValue.value ./Mi_Lua/luci/cbi.lua /^function ListValue.value(self, key, val, ...)$/;" f -M.strsplit ./Me_Lua/h10/Posix.lua /^function M.strsplit(str, delim, maxNb)$/;" f -M.strsplit ./Me_Lua/h13/Posix.lua /^function M.strsplit(str, delim, maxNb)$/;" f -M.strsplit ./Mi_Lua/Posix.lua /^function M.strsplit(str, delim, maxNb)$/;" f -M.timeradd ./Me_Lua/h10/Posix.lua /^function M.timeradd (x,y)$/;" f -M.timeradd ./Me_Lua/h13/Posix.lua /^function M.timeradd (x,y)$/;" f -M.timeradd ./Mi_Lua/Posix.lua /^function M.timeradd (x,y)$/;" f -M.timercmp ./Me_Lua/h10/Posix.lua /^function M.timercmp (x, y)$/;" f -M.timercmp ./Me_Lua/h13/Posix.lua /^function M.timercmp (x, y)$/;" f -M.timercmp ./Mi_Lua/Posix.lua /^function M.timercmp (x, y)$/;" f -M.timersub ./Me_Lua/h10/Posix.lua /^function M.timersub (x,y)$/;" f -M.timersub ./Me_Lua/h13/Posix.lua /^function M.timersub (x,y)$/;" f -M.timersub ./Mi_Lua/Posix.lua /^function M.timersub (x,y)$/;" f -M.timesleep ./Me_Lua/h10/Posix.lua /^function M.timesleep (x)$/;" f -M.timesleep ./Me_Lua/h13/Posix.lua /^function M.timesleep (x)$/;" f -M.timesleep ./Mi_Lua/Posix.lua /^function M.timesleep (x)$/;" f -M.var_dump ./Me_Lua/h10/Posix.lua /^function M.var_dump(data, max_level, prefix)$/;" f -M.var_dump ./Me_Lua/h13/Posix.lua /^function M.var_dump(data, max_level, prefix)$/;" f -M.var_dump ./Mi_Lua/Posix.lua /^function M.var_dump(data, max_level, prefix)$/;" f -Map.__init__ ./Mi_Lua/luci/cbi.lua /^function Map.__init__(self, config, ...)$/;" f -Map.add ./Mi_Lua/luci/cbi.lua /^function Map.add(self, sectiontype)$/;" f -Map.chain ./Mi_Lua/luci/cbi.lua /^function Map.chain(self, config)$/;" f -Map.del ./Mi_Lua/luci/cbi.lua /^function Map.del(self, section, option)$/;" f -Map.formvalue ./Mi_Lua/luci/cbi.lua /^function Map.formvalue(self, key)$/;" f -Map.formvaluetable ./Mi_Lua/luci/cbi.lua /^function Map.formvaluetable(self, key)$/;" f -Map.get ./Mi_Lua/luci/cbi.lua /^function Map.get(self, section, option)$/;" f -Map.get_scheme ./Mi_Lua/luci/cbi.lua /^function Map.get_scheme(self, sectiontype, option)$/;" f -Map.parse ./Mi_Lua/luci/cbi.lua /^function Map.parse(self, readinput, ...)$/;" f -Map.render ./Mi_Lua/luci/cbi.lua /^function Map.render(self, ...)$/;" f -Map.section ./Mi_Lua/luci/cbi.lua /^function Map.section(self, class, ...)$/;" f -Map.set ./Mi_Lua/luci/cbi.lua /^function Map.set(self, section, option, value)$/;" f -Map.state_handler ./Mi_Lua/luci/cbi.lua /^function Map.state_handler(self, state)$/;" f -Map.submitstate ./Mi_Lua/luci/cbi.lua /^function Map.submitstate(self)$/;" f -MultiValue.__init__ ./Mi_Lua/luci/cbi.lua /^function MultiValue.__init__(self, ...)$/;" f -MultiValue.render ./Mi_Lua/luci/cbi.lua /^function MultiValue.render(self, ...)$/;" f -MultiValue.reset_values ./Mi_Lua/luci/cbi.lua /^function MultiValue.reset_values(self)$/;" f -MultiValue.validate ./Mi_Lua/luci/cbi.lua /^function MultiValue.validate(self, val)$/;" f -MultiValue.value ./Mi_Lua/luci/cbi.lua /^function MultiValue.value(self, key, val)$/;" f -MultiValue.valuelist ./Mi_Lua/luci/cbi.lua /^function MultiValue.valuelist(self, section)$/;" f -NOT ./Mi_Lua/sha1.lua /^local function NOT(a)$/;" f -NamedSection.__init__ ./Mi_Lua/luci/cbi.lua /^function NamedSection.__init__(self, map, section, stype, ...)$/;" f -NamedSection.parse ./Mi_Lua/luci/cbi.lua /^function NamedSection.parse(self, novld)$/;" f -Node.__init__ ./Mi_Lua/luci/cbi.lua /^function Node.__init__(self, title, description)$/;" f -Node._run_hook ./Mi_Lua/luci/cbi.lua /^function Node._run_hook(self, hook)$/;" f -Node._run_hooks ./Mi_Lua/luci/cbi.lua /^function Node._run_hooks(self, ...)$/;" f -Node.append ./Mi_Lua/luci/cbi.lua /^function Node.append(self, obj)$/;" f -Node.parse ./Mi_Lua/luci/cbi.lua /^function Node.parse(self, ...)$/;" f -Node.prepare ./Mi_Lua/luci/cbi.lua /^function Node.prepare(self, ...)$/;" f -Node.render ./Mi_Lua/luci/cbi.lua /^function Node.render(self, scope)$/;" f -Node.render_children ./Mi_Lua/luci/cbi.lua /^function Node.render_children(self, ...)$/;" f -OR ./Mi_Lua/sha1.lua /^local function OR(a, b)$/;" f -OR3 ./Mi_Lua/sha1.lua /^local function OR3(a, b, c)$/;" f -OTA_process_action ./Me_Lua/h10/meizu/sipfs.lua /^function OTA_process_action(vs_info)$/;" f -OTA_process_action ./Me_Lua/h13/meizu/sipfs.lua /^function OTA_process_action(vs_info)$/;" f -Page.parse ./Mi_Lua/luci/cbi.lua /^Page.parse = function() end$/;" f -Pluginpanel ./Mi_Lua/luci/view/web/plugin.htm /^ function Pluginpanel(option){$/;" f -REMOVE_TAGS ./Mi_Lua/xssFilter.lua /^REMOVE_TAGS = function(self, tag, message, text)$/;" f -REPLACE_TAGS ./Mi_Lua/xssFilter.lua /^REPLACE_TAGS = function(self, tag, message, text)$/;" f -ROTATE ./Mi_Lua/sha1.lua /^local function ROTATE(bits, a)$/;" f -Request.__init__ ./Mi_Lua/luci/http.lua /^function Request.__init__(self, env, sourcein, sinkerr)$/;" f -Request._parse_input ./Mi_Lua/luci/http.lua /^function Request._parse_input(self)$/;" f -Request.content ./Mi_Lua/luci/http.lua /^function Request.content(self)$/;" f -Request.formvalue ./Mi_Lua/luci/http.lua /^function Request.formvalue(self, name, noparse)$/;" f -Request.formvaluetable ./Mi_Lua/luci/http.lua /^function Request.formvaluetable(self, prefix)$/;" f -Request.getcookie ./Mi_Lua/luci/http.lua /^function Request.getcookie(self, name)$/;" f -Request.getenv ./Mi_Lua/luci/http.lua /^function Request.getenv(self, name)$/;" f -Request.setfilehandler ./Mi_Lua/luci/http.lua /^function Request.setfilehandler(self, callback)$/;" f -SLAXML:dom ./Mi_Lua/slaxdom.lua /^function SLAXML:dom(xml,opts)$/;" f -SLAXML:parse ./Mi_Lua/slaxml.lua /^function SLAXML:parse(xml,options)$/;" f -SLAXML:parser ./Mi_Lua/slaxml.lua /^function SLAXML:parser(callbacks)$/;" f -ShowPanel ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function ShowPanel(panelId) {\/\/控制面板$/;" f -SimpleForm.__init__ ./Mi_Lua/luci/cbi.lua /^function SimpleForm.__init__(self, config, title, description, data)$/;" f -SimpleForm.del ./Mi_Lua/luci/cbi.lua /^function SimpleForm.del(self, section, option)$/;" f -SimpleForm.field ./Mi_Lua/luci/cbi.lua /^function SimpleForm.field(self, class, ...)$/;" f -SimpleForm.get ./Mi_Lua/luci/cbi.lua /^function SimpleForm.get(self, section, option)$/;" f -SimpleForm.get_scheme ./Mi_Lua/luci/cbi.lua /^function SimpleForm.get_scheme()$/;" f -SimpleForm.parse ./Mi_Lua/luci/cbi.lua /^function SimpleForm.parse(self, readinput, ...)$/;" f -SimpleForm.render ./Mi_Lua/luci/cbi.lua /^function SimpleForm.render(self, ...)$/;" f -SimpleForm.section ./Mi_Lua/luci/cbi.lua /^function SimpleForm.section(self, class, ...)$/;" f -SimpleForm.set ./Mi_Lua/luci/cbi.lua /^function SimpleForm.set(self, section, option, value)$/;" f -SimpleForm.submitstate ./Mi_Lua/luci/cbi.lua /^function SimpleForm.submitstate(self)$/;" f -SimpleSection.__init__ ./Mi_Lua/luci/cbi.lua /^function SimpleSection.__init__(self, form, ...)$/;" f -StaticList.__init__ ./Mi_Lua/luci/cbi.lua /^function StaticList.__init__(self, ...)$/;" f -StaticList.validate ./Mi_Lua/luci/cbi.lua /^function StaticList.validate(self, value)$/;" f -Table.__init__ ./Mi_Lua/luci/cbi.lua /^function Table.__init__(self, form, data, ...)$/;" f -Table.cfgsections ./Mi_Lua/luci/cbi.lua /^function Table.cfgsections(self)$/;" f -Table.parse ./Mi_Lua/luci/cbi.lua /^function Table.parse(self, readinput)$/;" f -Table.update ./Mi_Lua/luci/cbi.lua /^function Table.update(self, data)$/;" f -Template.__init__ ./Mi_Lua/luci/cbi.lua /^function Template.__init__(self, template)$/;" f -Template.__init__ ./Mi_Lua/luci/template.lua /^function Template.__init__(self, name) $/;" f -Template.parse ./Mi_Lua/luci/cbi.lua /^function Template.parse(self, readinput)$/;" f -Template.render ./Mi_Lua/luci/cbi.lua /^function Template.render(self)$/;" f -Template.render ./Mi_Lua/luci/template.lua /^function Template.render(self, scope)$/;" f -TextValue.__init__ ./Mi_Lua/luci/cbi.lua /^function TextValue.__init__(self, ...)$/;" f -TypedSection.__init__ ./Mi_Lua/luci/cbi.lua /^function TypedSection.__init__(self, map, type, ...)$/;" f -TypedSection.cfgsections ./Mi_Lua/luci/cbi.lua /^function TypedSection.cfgsections(self)$/;" f -TypedSection.checkscope ./Mi_Lua/luci/cbi.lua /^function TypedSection.checkscope(self, section)$/;" f -TypedSection.depends ./Mi_Lua/luci/cbi.lua /^function TypedSection.depends(self, option, value)$/;" f -TypedSection.parse ./Mi_Lua/luci/cbi.lua /^function TypedSection.parse(self, novld)$/;" f -TypedSection.validate ./Mi_Lua/luci/cbi.lua /^function TypedSection.validate(self, section)$/;" f -Value.__init__ ./Mi_Lua/luci/cbi.lua /^function Value.__init__(self, ...)$/;" f -Value.reset_values ./Mi_Lua/luci/cbi.lua /^function Value.reset_values(self)$/;" f -Value.value ./Mi_Lua/luci/cbi.lua /^function Value.value(self, key, val)$/;" f -XOR ./Mi_Lua/sha1.lua /^local function XOR(first, ...)$/;" f -XSSFilter:call_tags_handler ./Mi_Lua/xssFilter.lua /^function XSSFilter:call_tags_handler(tag, message, text)$/;" f -XSSFilter:filter ./Mi_Lua/xssFilter.lua /^function XSSFilter:filter(html)$/;" f -XSSFilter:init ./Mi_Lua/xssFilter.lua /^function XSSFilter:init(allowed_tags, generic_attrs)$/;" f -ZERO ./Mi_Lua/sha1.lua /^local function ZERO()$/;" f -["addMeshDevice"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["addMeshDevice"] = function(cmd, cmdid) $/;" f -["addMeshDevice"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["addMeshDevice"] = function(cmd, cmdid) $/;" f -["checkRouterUpdate"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["checkRouterUpdate"] = function(cmd, cmdid)$/;" f -["checkRouterUpdate"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["checkRouterUpdate"] = function(cmd, cmdid)$/;" f -["delmeshdevicetimer"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["delmeshdevicetimer"] = function(cmd, cmdid)$/;" f -["delmeshdevicetimer"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["delmeshdevicetimer"] = function(cmd, cmdid)$/;" f -["downloadpause"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["downloadpause"] = function (cmd, cmdid)$/;" f -["downloadremove"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["downloadremove"] = function (cmd, cmdid)$/;" f -["downloadstart"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["downloadstart"] = function (cmd, cmdid)$/;" f -["downloadunpause"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["downloadunpause"] = function (cmd, cmdid)$/;" f -["executeRouterUpdate"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["executeRouterUpdate"] = function(cmd, cmdid)$/;" f -["executeRouterUpdate"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["executeRouterUpdate"] = function(cmd, cmdid)$/;" f -["factoryreset"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["factoryreset"] = function(cmd, cmdid)$/;" f -["factoryreset"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["factoryreset"] = function(cmd, cmdid)$/;" f -["getActiveList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getActiveList"] = function (cmd, cmdid)$/;" f -["getBleDeviceList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getBleDeviceList"] = function(cmd, cmdid)$/;" f -["getBleDeviceList"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getBleDeviceList"] = function(cmd, cmdid)$/;" f -["getDeviceList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getDeviceList"] = function(cmd, cmdid)$/;" f -["getDeviceList"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getDeviceList"] = function(cmd, cmdid)$/;" f -["getDiskInfo"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getDiskInfo"] = function(cmd, cmdid)$/;" f -["getFilesList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getFilesList"] = function (cmd, cmdid)$/;" f -["getHistoryList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getHistoryList"] = function (cmd, cmdid)$/;" f -["getMeshDeviceDetail"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getMeshDeviceDetail"] = function(cmd, cmdid) $/;" f -["getMeshDeviceDetail"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getMeshDeviceDetail"] = function(cmd, cmdid) $/;" f -["getMeshDeviceList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getMeshDeviceList"] = function(cmd, cmdid)$/;" f -["getMeshDeviceList"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getMeshDeviceList"] = function(cmd, cmdid)$/;" f -["getPauseList"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getPauseList"] = function (cmd, cmdid)$/;" f -["getSmbSwitch"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getSmbSwitch"] = function(cmd, cmdid)$/;" f -["getWirelessChannel"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getWirelessChannel"] = function(cmd, cmdid)$/;" f -["getWirelessChannel"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getWirelessChannel"] = function(cmd, cmdid)$/;" f -["getdevicedetails"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getdevicedetails"] = function(cmd, cmdid)$/;" f -["getdevicedetails"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getdevicedetails"] = function(cmd, cmdid)$/;" f -["getsysinfo"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getsysinfo"] = function(cmd, cmdid)$/;" f -["getsysinfo"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getsysinfo"] = function(cmd, cmdid)$/;" f -["gettxpowermode"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["gettxpowermode"] = function(cmd, cmdid)$/;" f -["getwifisettings"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["getwifisettings"] = function(cmd, cmdid)$/;" f -["getwifisettings"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["getwifisettings"] = function(cmd, cmdid)$/;" f -["realtimenetspeed"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["realtimenetspeed"] = function(cmd, cmdid)$/;" f -["realtimenetspeed"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["realtimenetspeed"] = function(cmd, cmdid)$/;" f -["rebootmeshdevice"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["rebootmeshdevice"] = function(cmd, cmdid)$/;" f -["rebootmeshdevice"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["rebootmeshdevice"] = function(cmd, cmdid)$/;" f -["removeblefrommesh"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["removeblefrommesh"] = function(cmd, cmdid)$/;" f -["removeblefrommesh"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["removeblefrommesh"] = function(cmd, cmdid)$/;" f -["scanBleSwitch"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["scanBleSwitch"] = function(cmd, cmdid)$/;" f -["scanBleSwitch"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["scanBleSwitch"] = function(cmd, cmdid) --scanBleSwitch getMeshDeviceList getBleDeviceList$/;" f -["setDeviceName"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setDeviceName"] = function(cmd, cmdid)$/;" f -["setDeviceName"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setDeviceName"] = function(cmd, cmdid)$/;" f -["setDiskAccess"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setDiskAccess"] = function(cmd, cmdid)$/;" f -["setLampBrightness"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setLampBrightness"] = function(cmd, cmdid)$/;" f -["setLampBrightness"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setLampBrightness"] = function(cmd, cmdid)$/;" f -["setMeashNetWorkPassword"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setMeashNetWorkPassword"] = function(cmd, cmdid)$/;" f -["setMeshDeviceAttr"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setMeshDeviceAttr"] = function(cmd, cmdid)$/;" f -["setMeshDeviceAttr"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setMeshDeviceAttr"] = function(cmd, cmdid)$/;" f -["setMeshNetWorkPassword"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setMeshNetWorkPassword"] = function(cmd, cmdid)$/;" f -["setReboot"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setReboot"] = function(cmd, cmdid)$/;" f -["setReboot"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setReboot"] = function(cmd, cmdid)$/;" f -["setSmbSwitch"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setSmbSwitch"] = function(cmd, cmdid)$/;" f -["setWanSwitch"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setWanSwitch"] = function(cmd, cmdid)$/;" f -["setWanSwitch"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setWanSwitch"] = function(cmd, cmdid)$/;" f -["setWirelessChannel"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setWirelessChannel"] = function(cmd, cmdid)$/;" f -["setWirelessChannel"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setWirelessChannel"] = function(cmd, cmdid)$/;" f -["setmeshdevicetimer"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setmeshdevicetimer"] = function(cmd, cmdid)$/;" f -["setmeshdevicetimer"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setmeshdevicetimer"] = function(cmd, cmdid)$/;" f -["settxpowermode"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["settxpowermode"] = function(cmd, cmdid)$/;" f -["setwifisettings"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["setwifisettings"] = function(cmd, cmdid)$/;" f -["setwifisettings"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["setwifisettings"] = function(cmd, cmdid)$/;" f -["thundergetbindcode"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["thundergetbindcode"] = function (cmd, cmdid)$/;" f -["unmeshalldevice"] ./Me_Lua/h10/meizu/sipfs.lua /^ ["unmeshalldevice"] = function(cmd, cmdid)$/;" f -["unmeshalldevice"] ./Me_Lua/h13/meizu/sipfs.lua /^ ["unmeshalldevice"] = function(cmd, cmdid)$/;" f -['function'] ./Mi_Lua/luci/json.lua /^ ['function'] = Encoder.parse_iter$/;" f -_ ./Me_Lua/h10/luci/dispatcher.lua /^function _(text)$/;" f -_ ./Me_Lua/h13/luci/dispatcher.lua /^function _(text)$/;" f -_ ./Mi_Lua/luci/dispatcher.lua /^function _(text)$/;" f -_M.absolute ./Me_Lua/h10/socket/url.lua /^function _M.absolute(base_url, relative_url)$/;" f -_M.absolute ./Me_Lua/h13/socket/url.lua /^function _M.absolute(base_url, relative_url)$/;" f -_M.bind ./Me_Lua/h10/socket.lua /^function _M.bind(host, port, backlog)$/;" f -_M.bind ./Me_Lua/h13/socket.lua /^function _M.bind(host, port, backlog)$/;" f -_M.build ./Me_Lua/h10/socket/url.lua /^function _M.build(parsed)$/;" f -_M.build ./Me_Lua/h13/socket/url.lua /^function _M.build(parsed)$/;" f -_M.build_path ./Me_Lua/h10/socket/url.lua /^function _M.build_path(parsed, unsafe)$/;" f -_M.build_path ./Me_Lua/h13/socket/url.lua /^function _M.build_path(parsed, unsafe)$/;" f -_M.choose ./Me_Lua/h10/socket.lua /^function _M.choose(table)$/;" f -_M.choose ./Me_Lua/h13/socket.lua /^function _M.choose(table)$/;" f -_M.command ./Me_Lua/h10/socket/ftp.lua /^_M.command = socket.protect(function(cmdt)$/;" f -_M.command ./Me_Lua/h13/socket/ftp.lua /^_M.command = socket.protect(function(cmdt)$/;" f -_M.connect ./Me_Lua/h10/socket/tp.lua /^function _M.connect(host, port, timeout, create)$/;" f -_M.connect ./Me_Lua/h13/socket/tp.lua /^function _M.connect(host, port, timeout, create)$/;" f -_M.connect4 ./Me_Lua/h10/socket.lua /^function _M.connect4(address, port, laddress, lport)$/;" f -_M.connect4 ./Me_Lua/h13/socket.lua /^function _M.connect4(address, port, laddress, lport)$/;" f -_M.connect6 ./Me_Lua/h10/socket.lua /^function _M.connect6(address, port, laddress, lport)$/;" f -_M.connect6 ./Me_Lua/h13/socket.lua /^function _M.connect6(address, port, laddress, lport)$/;" f -_M.escape ./Me_Lua/h10/socket/url.lua /^function _M.escape(s)$/;" f -_M.escape ./Me_Lua/h13/socket/url.lua /^function _M.escape(s)$/;" f -_M.get ./Me_Lua/h10/socket/ftp.lua /^_M.get = socket.protect(function(gett)$/;" f -_M.get ./Me_Lua/h13/socket/ftp.lua /^_M.get = socket.protect(function(gett)$/;" f -_M.message ./Me_Lua/h10/socket/smtp.lua /^function _M.message(mesgt)$/;" f -_M.message ./Me_Lua/h13/socket/smtp.lua /^function _M.message(mesgt)$/;" f -_M.normalize ./Me_Lua/h10/mime.lua /^function _M.normalize(marker)$/;" f -_M.normalize ./Me_Lua/h13/mime.lua /^function _M.normalize(marker)$/;" f -_M.open ./Me_Lua/h10/socket/ftp.lua /^function _M.open(server, port, create)$/;" f -_M.open ./Me_Lua/h10/socket/http.lua /^function _M.open(host, port, create)$/;" f -_M.open ./Me_Lua/h10/socket/smtp.lua /^function _M.open(server, port, create)$/;" f -_M.open ./Me_Lua/h13/socket/ftp.lua /^function _M.open(server, port, create)$/;" f -_M.open ./Me_Lua/h13/socket/http.lua /^function _M.open(host, port, create)$/;" f -_M.open ./Me_Lua/h13/socket/smtp.lua /^function _M.open(server, port, create)$/;" f -_M.parse ./Me_Lua/h10/socket/url.lua /^function _M.parse(url, default)$/;" f -_M.parse ./Me_Lua/h13/socket/url.lua /^function _M.parse(url, default)$/;" f -_M.parse_path ./Me_Lua/h10/socket/url.lua /^function _M.parse_path(path)$/;" f -_M.parse_path ./Me_Lua/h13/socket/url.lua /^function _M.parse_path(path)$/;" f -_M.put ./Me_Lua/h10/socket/ftp.lua /^_M.put = socket.protect(function(putt, body)$/;" f -_M.put ./Me_Lua/h13/socket/ftp.lua /^_M.put = socket.protect(function(putt, body)$/;" f -_M.request ./Me_Lua/h10/socket/http.lua /^_M.request = socket.protect(function(reqt, body)$/;" f -_M.request ./Me_Lua/h13/socket/http.lua /^_M.request = socket.protect(function(reqt, body)$/;" f -_M.send ./Me_Lua/h10/socket/smtp.lua /^_M.send = socket.protect(function(mailt)$/;" f -_M.send ./Me_Lua/h13/socket/smtp.lua /^_M.send = socket.protect(function(mailt)$/;" f -_M.stuff ./Me_Lua/h10/mime.lua /^function _M.stuff()$/;" f -_M.stuff ./Me_Lua/h13/mime.lua /^function _M.stuff()$/;" f -_M.unescape ./Me_Lua/h10/socket/url.lua /^function _M.unescape(s)$/;" f -_M.unescape ./Me_Lua/h13/socket/url.lua /^function _M.unescape(s)$/;" f -_M['and'] ./Mi_Lua/luci/cbi/datatypes.lua /^_M['and'] = function(v, ...)$/;" f -_M['or'] ./Mi_Lua/luci/cbi/datatypes.lua /^_M['or'] = function(v, ...)$/;" f -__appendval ./Mi_Lua/luci/http/protocol.lua /^local function __appendval( tbl, key, chunk )$/;" f -__array16 ./Mi_Lua/luci/ip.lua /^local function __array16( x, family )$/;" f -__bless ./Mi_Lua/luci/ip.lua /^local function __bless(x)$/;" f -__call ./Me_Lua/h10/socket.lua /^ __call = function()$/;" f -__call ./Me_Lua/h10/socket.lua /^ __call = function(self, chunk, err)$/;" f -__call ./Me_Lua/h10/socket/http.lua /^ __call = function()$/;" f -__call ./Me_Lua/h10/socket/http.lua /^ __call = function(self, chunk, err)$/;" f -__call ./Me_Lua/h13/socket.lua /^ __call = function()$/;" f -__call ./Me_Lua/h13/socket.lua /^ __call = function(self, chunk, err)$/;" f -__call ./Me_Lua/h13/socket/http.lua /^ __call = function()$/;" f -__call ./Me_Lua/h13/socket/http.lua /^ __call = function(self, chunk, err)$/;" f -__call ./Mi_Lua/socket.lua /^ __call = function()$/;" f -__call ./Mi_Lua/socket.lua /^ __call = function(self, chunk, err)$/;" f -__call ./Mi_Lua/socket/http.lua /^ __call = function()$/;" f -__call ./Mi_Lua/socket/http.lua /^ __call = function(self, chunk, err)$/;" f -__chrdec ./Mi_Lua/luci/http/protocol.lua /^ local function __chrdec( hex )$/;" f -__chrenc ./Mi_Lua/luci/http/protocol.lua /^ local function __chrenc( chr )$/;" f -__finishval ./Mi_Lua/luci/http/protocol.lua /^local function __finishval( tbl, key, handler )$/;" f -__index ./Mi_Lua/luci/config.lua /^ __index = function(tbl, key)$/;" f -__index ./Mi_Lua/luci/sys.lua /^ __index = function(t, k)$/;" f -__index ./Mi_Lua/luci/sys/zoneinfo.lua /^ __index = function(t, k)$/;" f -__index ./Mi_Lua/luci/util.lua /^ __index = function(self, key)$/;" f -__initval ./Mi_Lua/luci/http/protocol.lua /^local function __initval( tbl, key )$/;" f -__mask16 ./Mi_Lua/luci/ip.lua /^local function __mask16(bits)$/;" f -__maxlen ./Mi_Lua/luci/ip.lua /^local function __maxlen(family)$/;" f -__newindex ./Mi_Lua/luci/util.lua /^ __newindex = function(self, key, value)$/;" f -__not16 ./Mi_Lua/luci/ip.lua /^local function __not16(bits)$/;" f -__sublen ./Mi_Lua/luci/ip.lua /^local function __sublen(family)$/;" f -_action ./Mi_Lua/luci/model/ipkg.lua /^local function _action(cmd, ...)$/;" f -_add ./Mi_Lua/luci/sys.lua /^ local function _add(i, ...)$/;" f -_appSpeedlimit ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _appSpeedlimit(app, maxdownload, maxupload)$/;" f -_append ./Me_Lua/h10/luci/model/network.lua /^function _append(c, s, o, a)$/;" f -_append ./Me_Lua/h13/luci/model/network.lua /^function _append(c, s, o, a)$/;" f -_append ./Mi_Lua/luci/model/network.lua /^function _append(c, s, o, a)$/;" f -_application ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _application()$/;" f -_apply ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _apply()$/;" f -_arcombine ./Me_Lua/h10/luci/dispatcher.lua /^local function _arcombine(self, ...)$/;" f -_arcombine ./Me_Lua/h13/luci/dispatcher.lua /^local function _arcombine(self, ...)$/;" f -_arcombine ./Mi_Lua/luci/dispatcher.lua /^local function _arcombine(self, ...)$/;" f -_bitFormat ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _bitFormat(bits)$/;" f -_bitTotal ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function _bitTotal(num)$/;" f -_call ./Me_Lua/h10/luci/dispatcher.lua /^local function _call(self, ...)$/;" f -_call ./Me_Lua/h13/luci/dispatcher.lua /^local function _call(self, ...)$/;" f -_call ./Mi_Lua/luci/dispatcher.lua /^local function _call(self, ...)$/;" f -_cancelWgetDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _cancelWgetDownload(downloadId)$/;" f -_cancelXunleiDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _cancelXunleiDownload(downloadId)$/;" f -_cbi ./Me_Lua/h10/luci/dispatcher.lua /^local function _cbi(self, ...)$/;" f -_cbi ./Me_Lua/h13/luci/dispatcher.lua /^local function _cbi(self, ...)$/;" f -_channelFix ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function _channelFix(channel)$/;" f -_charMode ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function _charMode(char)$/;" f -_checkConnection ./Mi_Lua/luci/controller/api/xqsystem.lua /^function _checkConnection(mac, try)$/;" f -_checkGuestWifi ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _checkGuestWifi()$/;" f -_checkIP ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function _checkIP(ip)$/;" f -_checkMac ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function _checkMac(mac)$/;" f -_checkResource ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _checkResource(downloadUrl)$/;" f -_checkid ./Me_Lua/h10/luci/sauth.lua /^local function _checkid(id)$/;" f -_checkid ./Me_Lua/h13/luci/sauth.lua /^local function _checkid(id)$/;" f -_checkid ./Mi_Lua/luci/sauth.lua /^local function _checkid(id)$/;" f -_create_node ./Me_Lua/h10/luci/dispatcher.lua /^function _create_node(path)$/;" f -_create_node ./Me_Lua/h13/luci/dispatcher.lua /^function _create_node(path)$/;" f -_create_node ./Mi_Lua/luci/dispatcher.lua /^function _create_node(path)$/;" f -_ddnsRestart ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function _ddnsRestart()$/;" f -_ddnsServerSwitch ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function _ddnsServerSwitch(server, enable)$/;" f -_deldhcp ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _deldhcp()$/;" f -_deleteDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _deleteDownload(ids)$/;" f -_delfirewall ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _delfirewall()$/;" f -_delnetwork ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _delnetwork()$/;" f -_doPush ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _doPush(payload, title, description, ptype)$/;" f -_encode_filename ./Mi_Lua/luci/ccache.lua /^ local function _encode_filename(name)$/;" f -_filter ./Me_Lua/h10/luci/model/network.lua /^function _filter(c, s, o, r)$/;" f -_filter ./Me_Lua/h13/luci/model/network.lua /^function _filter(c, s, o, r)$/;" f -_filter ./Mi_Lua/luci/model/network.lua /^function _filter(c, s, o, r)$/;" f -_firstchild ./Me_Lua/h10/luci/dispatcher.lua /^function _firstchild()$/;" f -_firstchild ./Me_Lua/h13/luci/dispatcher.lua /^function _firstchild()$/;" f -_firstchild ./Mi_Lua/luci/dispatcher.lua /^function _firstchild()$/;" f -_form ./Me_Lua/h10/luci/dispatcher.lua /^local function _form(self, ...)$/;" f -_form ./Me_Lua/h13/luci/dispatcher.lua /^local function _form(self, ...)$/;" f -_formatMac ./Mi_Lua/xiaoqiang/util/XQSDKUtil.lua /^function _formatMac(mac)$/;" f -_formatStr ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _formatStr(str)$/;" f -_get ./Me_Lua/h10/luci/model/network.lua /^function _get(c, s, o)$/;" f -_get ./Me_Lua/h13/luci/model/network.lua /^function _get(c, s, o)$/;" f -_get ./Mi_Lua/luci/model/firewall.lua /^function _get(c, s, o)$/;" f -_get ./Mi_Lua/luci/model/network.lua /^function _get(c, s, o)$/;" f -_hookADFilterEvent ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookADFilterEvent(page, all)$/;" f -_hookAllDownloadFinished ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookAllDownloadFinished()$/;" f -_hookCachecenterEvent ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookCachecenterEvent(hitcount, timesaver)$/;" f -_hookDefault ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookDefault(data)$/;" f -_hookDetectFinished ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookDetectFinished(lan, wan)$/;" f -_hookDownloadEvent ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookDownloadEvent(count)$/;" f -_hookIntelligentScene ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookIntelligentScene(name,actions)$/;" f -_hookNewRomVersionDetected ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookNewRomVersionDetected(version)$/;" f -_hookSysUpgraded ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookSysUpgraded()$/;" f -_hookUploadEvent ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookUploadEvent(count)$/;" f -_hookWifiConnect ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookWifiConnect(mac)$/;" f -_hookWifiDisconnect ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _hookWifiDisconnect(mac)$/;" f -_iface_ignore ./Me_Lua/h10/luci/model/network.lua /^function _iface_ignore(x)$/;" f -_iface_ignore ./Me_Lua/h13/luci/model/network.lua /^function _iface_ignore(x)$/;" f -_iface_ignore ./Mi_Lua/luci/model/network.lua /^function _iface_ignore(x)$/;" f -_iface_virtual ./Me_Lua/h10/luci/model/network.lua /^function _iface_virtual(x)$/;" f -_iface_virtual ./Me_Lua/h13/luci/model/network.lua /^function _iface_virtual(x)$/;" f -_iface_virtual ./Mi_Lua/luci/model/network.lua /^function _iface_virtual(x)$/;" f -_ifattr ./Me_Lua/h10/luci/dispatcher.lua /^ local function _ifattr(cond, key, val)$/;" f -_ifattr ./Me_Lua/h13/luci/dispatcher.lua /^ local function _ifattr(cond, key, val)$/;" f -_ifattr ./Mi_Lua/luci/dispatcher.lua /^ local function _ifattr(cond, key, val)$/;" f -_instantiate ./Mi_Lua/luci/util.lua /^local function _instantiate(class, ...)$/;" f -_keyWordsFilter ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function _keyWordsFilter(value)$/;" f -_levelHelper ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _levelHelper(weight)$/;" f -_list ./Mi_Lua/luci/model/ipkg.lua /^function _list(action, pat, cb)$/;" f -_load_sane ./Mi_Lua/luci/ccache.lua /^ local function _load_sane(file)$/;" f -_lookup ./Mi_Lua/luci/model/ipkg.lua /^local function _lookup(act, pkg)$/;" f -_nethints ./Mi_Lua/luci/sys.lua /^local function _nethints(what, callback)$/;" f -_noauthAccessAllowed ./Mi_Lua/luci/dispatcher.lua /^function _noauthAccessAllowed(flag)$/;" f -_noinitAccessAllowed ./Mi_Lua/luci/dispatcher.lua /^function _noinitAccessAllowed(flag)$/;" f -_parse ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function _parse(hex, pre)$/;" f -_parseDhcpLeases ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function _parseDhcpLeases()$/;" f -_parseEncryption ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function _parseEncryption(encryption)$/;" f -_parseMac ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function _parseMac(mac)$/;" f -_parse_mixed_record ./Mi_Lua/luci/sys.lua /^function _parse_mixed_record(cnt, delimiter)$/;" f -_parselist ./Mi_Lua/luci/model/ipkg.lua /^local function _parselist(rawdata)$/;" f -_parserFlag ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _parserFlag(flag)$/;" f -_parserPushType ./Mi_Lua/xiaoqiang/XQPushHelper.lua /^function _parserPushType(ptype)$/;" f -_pauseChannel ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function _pauseChannel(channel)$/;" f -_pauseDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _pauseDownload(ids)$/;" f -_permissionFilter ./Mi_Lua/xiaoqiang/util/XQSDKUtil.lua /^function _permissionFilter(mac)$/;" f -_portCheck ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function _portCheck(port)$/;" f -_portConflictCheck ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function _portConflictCheck(port)$/;" f -_portRangeOverlap ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function _portRangeOverlap(port1, port2)$/;" f -_pppoeErrorCodeHelper ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function _pppoeErrorCodeHelper(code)$/;" f -_pppoeStatusCheck ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function _pppoeStatusCheck()$/;" f -_prepare ./Mi_Lua/luci/controller/api/xqsystem.lua /^function _prepare()$/;" f -_protoHelper ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function _protoHelper(proto)$/;" f -_read ./Me_Lua/h10/luci/sauth.lua /^local function _read(id)$/;" f -_read ./Me_Lua/h13/luci/sauth.lua /^local function _read(id)$/;" f -_read ./Mi_Lua/luci/sauth.lua /^local function _read(id)$/;" f -_recurse ./Mi_Lua/nixio/fs.lua /^local function _recurse(cb, src, dest)$/;" f -_remoteAccessForbidden ./Mi_Lua/luci/dispatcher.lua /^function _remoteAccessForbidden(flag)$/;" f -_resolve_deps ./Mi_Lua/luci/model/uci.lua /^ local function _resolve_deps(name)$/;" f -_resolve_path ./Me_Lua/h10/luci/dispatcher.lua /^ local function _resolve_path(path)$/;" f -_resolve_path ./Me_Lua/h13/luci/dispatcher.lua /^ local function _resolve_path(path)$/;" f -_resumeDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _resumeDownload(ids)$/;" f -_sane ./Mi_Lua/luci/controller/api/xqsystem.lua /^function _sane()$/;" f -_saveConfig ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function _saveConfig(server, enable, username, password, checkinterval, forceinterval, domain)$/;" f -_savePassword ./Mi_Lua/luci/controller/api/xqsystem.lua /^function _savePassword(nonce, oldpwd, newpwd)$/;" f -_sdkFilter ./Mi_Lua/luci/dispatcher.lua /^function _sdkFilter(flag)$/;" f -_serialize_data ./Mi_Lua/luci/util.lua /^function _serialize_data(val)$/;" f -_serialize_table ./Mi_Lua/luci/util.lua /^function _serialize_table(t)$/;" f -_serverId ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function _serverId(server)$/;" f -_set ./Me_Lua/h10/luci/model/network.lua /^function _set(c, s, o, v)$/;" f -_set ./Me_Lua/h13/luci/model/network.lua /^function _set(c, s, o, v)$/;" f -_set ./Mi_Lua/luci/model/firewall.lua /^function _set(c, s, o, v)$/;" f -_set ./Mi_Lua/luci/model/network.lua /^function _set(c, s, o, v)$/;" f -_set ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _set(section, option, value)$/;" f -_setComplexDMZ ./Mi_Lua/xiaoqiang/module/XQDMZModule.lua /^function _setComplexDMZ(destip, destmac)$/;" f -_setSimpleDMZ ./Mi_Lua/xiaoqiang/module/XQDMZModule.lua /^function _setSimpleDMZ(destip, destmac)$/;" f -_setdhcp ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _setdhcp()$/;" f -_setfirewall ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _setfirewall()$/;" f -_setnetwork ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function _setnetwork()$/;" f -_sortiter ./Mi_Lua/luci/util.lua /^function _sortiter( t, f )$/;" f -_stror ./Me_Lua/h10/luci/model/network.lua /^function _stror(s1, s2)$/;" f -_stror ./Me_Lua/h13/luci/model/network.lua /^function _stror(s1, s2)$/;" f -_stror ./Mi_Lua/luci/model/network.lua /^function _stror(s1, s2)$/;" f -_syslockAccessAllowed ./Mi_Lua/luci/dispatcher.lua /^function _syslockAccessAllowed(flag)$/;" f -_test ./Mi_Lua/xssFilter.lua /^ _test = function(tag)$/;" f -_valid_id ./Mi_Lua/luci/model/firewall.lua /^function _valid_id(x)$/;" f -_vpnErrorCodeHelper ./Mi_Lua/luci/controller/api/xqsystem.lua /^function _vpnErrorCodeHelper(code)$/;" f -_weightHelper ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function _weightHelper(level)$/;" f -_wgetDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _wgetDownload(downloadUrl)$/;" f -_wgetDownloadPercent ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _wgetDownloadPercent(downloadId)$/;" f -_wifiNameForIndex ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function _wifiNameForIndex(index)$/;" f -_wifi_iface ./Me_Lua/h10/luci/model/network.lua /^function _wifi_iface(x)$/;" f -_wifi_iface ./Me_Lua/h13/luci/model/network.lua /^function _wifi_iface(x)$/;" f -_wifi_iface ./Mi_Lua/luci/model/network.lua /^function _wifi_iface(x)$/;" f -_wifi_lookup ./Me_Lua/h10/luci/model/network.lua /^function _wifi_lookup(ifn)$/;" f -_wifi_lookup ./Me_Lua/h13/luci/model/network.lua /^function _wifi_lookup(ifn)$/;" f -_wifi_lookup ./Mi_Lua/luci/model/network.lua /^function _wifi_lookup(ifn)$/;" f -_wifi_state ./Me_Lua/h10/luci/model/network.lua /^function _wifi_state(key, val, field)$/;" f -_wifi_state ./Me_Lua/h13/luci/model/network.lua /^function _wifi_state(key, val, field)$/;" f -_write ./Me_Lua/h10/luci/sauth.lua /^local function _write(id, data)$/;" f -_write ./Me_Lua/h13/luci/sauth.lua /^local function _write(id, data)$/;" f -_write ./Mi_Lua/luci/sauth.lua /^local function _write(id, data)$/;" f -_write_sane ./Mi_Lua/luci/ccache.lua /^ local function _write_sane(file, func)$/;" f -_xunleiDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _xunleiDownload(downloadUrl, priority)$/;" f -_xunleiDownloadPercent ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function _xunleiDownloadPercent(downloadId)$/;" f -a, b) return ./Me_Lua/h10/meizu/bfs.lua /^ table.sort(result, function(a, b) return (a.isfile < b.isfile) end)$/;" f -a, b) return tonumber ./Mi_Lua/luci/controller/api/xqsystem.lua /^ table.sort(statList, function(a, b) return tonumber(a.download) > tonumber(b.download) end)$/;" f -absolute ./Mi_Lua/socket/url.lua /^function absolute(base_url, relative_url)$/;" f -absolute_path ./Me_Lua/h10/socket/url.lua /^local function absolute_path(base_path, relative_path)$/;" f -absolute_path ./Me_Lua/h13/socket/url.lua /^local function absolute_path(base_path, relative_path)$/;" f -absolute_path ./Mi_Lua/socket/url.lua /^local function absolute_path(base_path, relative_path)$/;" f -actionLogin ./Mi_Lua/luci/controller/api/xqsystem.lua /^function actionLogin()$/;" f -action_logout ./Mi_Lua/luci/controller/mobile/index.lua /^function action_logout()$/;" f -action_logout ./Mi_Lua/luci/controller/web/index.lua /^function action_logout()$/;" f -action_safeurl ./Mi_Lua/luci/controller/web/index.lua /^function action_safeurl()$/;" f -addBatchFile ./Me_Lua/h10/meizu/dbfs.lua /^function addBatchFile(hashCode, IMEI)$/;" f -addBind ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function addBind(mac, ip)$/;" f -addBleTimer ./Me_Lua/h10/meizu/dbfs.lua /^function addBleTimer(id, timer_id, flag, start_time, end_time)$/;" f -addBluetoothDevice ./Me_Lua/h10/meizu/dbfs.lua /^function addBluetoothDevice(id, mac, key, name, deviceType, len)$/;" f -addBluetoothDevice ./Me_Lua/h13/meizu/dbfs.lua /^function addBluetoothDevice(id, mac, key, name, deviceType, len)$/;" f -addDdns ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function addDdns(e){$/;" f -addEvent ./Mi_Lua/luci/view/web/setting/qos_pro.htm /^ function addEvent(){$/;" f -addRangeRedirect ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function addRangeRedirect()$/;" f -addRedirect ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function addRedirect()$/;" f -addServer ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function addServer()$/;" f -addSmbBanList ./Me_Lua/h10/meizu/dbfs.lua /^function addSmbBanList(mac, smb_ban)$/;" f -add_access_token ./Me_Lua/h10/meizu/dbfs.lua /^function add_access_token(token, expireTime)$/;" f -add_access_token ./Me_Lua/h13/meizu/dbfs.lua /^function add_access_token(token, expireTime)$/;" f -add_ble_mesh_device ./Me_Lua/h10/meizu/btfs.lua /^function add_ble_mesh_device(mac)$/;" f -add_ble_mesh_device ./Me_Lua/h13/meizu/nwfs.lua /^function add_ble_mesh_device(mac)$/;" f -add_deny_mac ./Me_Lua/h13/meizu/dbfs.lua /^function add_deny_mac(mac)$/;" f -add_network ./Me_Lua/h10/luci/model/network.lua /^function add_network(self, n, options)$/;" f -add_network ./Me_Lua/h13/luci/model/network.lua /^function add_network(self, n, options)$/;" f -add_network ./Mi_Lua/luci/model/network.lua /^function add_network(self, n, options)$/;" f -add_ssid ./Me_Lua/h13/meizu/dbfs.lua /^function add_ssid(ssid24, ssid5)$/;" f -add_wifinet ./Me_Lua/h10/luci/model/network.lua /^function add_wifinet(self, net, options)$/;" f -add_wifinet ./Me_Lua/h13/luci/model/network.lua /^function add_wifinet(self, net, options)$/;" f -add_wifinet ./Mi_Lua/luci/model/network.lua /^function add_wifinet(self, net, options)$/;" f -add_zone ./Mi_Lua/luci/model/firewall.lua /^function add_zone(self, n)$/;" f -adjust_headers ./Me_Lua/h10/socket/smtp.lua /^local function adjust_headers(mesgt)$/;" f -adjust_headers ./Me_Lua/h13/socket/smtp.lua /^local function adjust_headers(mesgt)$/;" f -adjust_headers ./Mi_Lua/socket/smtp.lua /^local function adjust_headers(mesgt)$/;" f -adjustheaders ./Me_Lua/h10/socket/http.lua /^local function adjustheaders(reqt)$/;" f -adjustheaders ./Me_Lua/h13/socket/http.lua /^local function adjustheaders(reqt)$/;" f -adjustheaders ./Mi_Lua/socket/http.lua /^local function adjustheaders(reqt)$/;" f -adjustproxy ./Me_Lua/h10/socket/http.lua /^local function adjustproxy(reqt)$/;" f -adjustproxy ./Me_Lua/h13/socket/http.lua /^local function adjustproxy(reqt)$/;" f -adjustproxy ./Mi_Lua/socket/http.lua /^local function adjustproxy(reqt)$/;" f -adjustrequest ./Me_Lua/h10/socket/http.lua /^local function adjustrequest(reqt)$/;" f -adjustrequest ./Me_Lua/h13/socket/http.lua /^local function adjustrequest(reqt)$/;" f -adjustrequest ./Mi_Lua/socket/http.lua /^local function adjustrequest(reqt)$/;" f -adjusturi ./Me_Lua/h10/socket/http.lua /^local function adjusturi(reqt)$/;" f -adjusturi ./Me_Lua/h13/socket/http.lua /^local function adjusturi(reqt)$/;" f -adjusturi ./Mi_Lua/socket/http.lua /^local function adjusturi(reqt)$/;" f -alias ./Me_Lua/h10/luci/dispatcher.lua /^function alias(...)$/;" f -alias ./Me_Lua/h13/luci/dispatcher.lua /^function alias(...)$/;" f -alias ./Mi_Lua/luci/dispatcher.lua /^function alias(...)$/;" f -apk ./Me_Lua/h10/luci/controller/bs/index.lua /^function apk()$/;" f -apk ./Me_Lua/h13/luci/controller/bs/index.lua /^function apk()$/;" f -appInfo ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function appInfo()$/;" f -appLimit ./Mi_Lua/luci/controller/api/xqsystem.lua /^function appLimit()$/;" f -appLimitSwitch ./Mi_Lua/luci/controller/api/xqsystem.lua /^function appLimitSwitch()$/;" f -appSpeedlimitSwitch ./Mi_Lua/xiaoqiang/util/XQQoSUtil.lua /^function appSpeedlimitSwitch(enable)$/;" f -append ./Mi_Lua/luci/util.lua /^function append(src, ...)$/;" f -append_yeelink_list ./Mi_Lua/xiaoqiang/util/XQZigbeeUtil.lua /^function append_yeelink_list(list)$/;" f -arcombine ./Me_Lua/h10/luci/dispatcher.lua /^function arcombine(trg1, trg2)$/;" f -arcombine ./Me_Lua/h13/luci/dispatcher.lua /^function arcombine(trg1, trg2)$/;" f -arcombine ./Mi_Lua/luci/dispatcher.lua /^function arcombine(trg1, trg2)$/;" f -areThingsMounted ./Mi_Lua/luci/controller/api/xqsystem.lua /^function areThingsMounted()$/;" f -areThingsMounted ./Mi_Lua/luci/view/web/setting/lamp.htm /^ function areThingsMounted(){$/;" f -aria2_download_task_pause ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_download_task_pause(gid, command)$/;" f -aria2_download_task_remove ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_download_task_remove(gid, command)$/;" f -aria2_download_task_start ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_download_task_start(url)$/;" f -aria2_download_task_unpause ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_download_task_unpause(gid, command)$/;" f -aria2_failed_res ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_failed_res(command, gid, status)$/;" f -aria2_get_active_list ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_get_active_list()$/;" f -aria2_get_history_list ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_get_history_list()$/;" f -aria2_get_pause_list ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_get_pause_list()$/;" f -aria2_make_req_param ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_make_req_param(method, gid)$/;" f -aria2_make_status_param ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_make_status_param(method, params)$/;" f -aria2_success_res ./Me_Lua/h10/meizu/dlfs.lua /^function aria2_success_res(command, gid, status)$/;" f -asHEX ./Mi_Lua/sha1.lua /^function asHEX(a)$/;" f -ask ./Mi_Lua/luci/view/web/setting/net_wan.htm /^ function ask(){$/;" f -assert ./Mi_Lua/logging.lua /^local function assert(exp, ...)$/;" f -assert(type(func) ./Me_Lua/h10/luci/dispatcher.lua /^ assert(type(func) == "function",$/;" f -assert(type(func) ./Me_Lua/h13/luci/dispatcher.lua /^ assert(type(func) == "function",$/;" f -assert(type(func) ./Mi_Lua/luci/dispatcher.lua /^ assert(type(func) == "function",$/;" f -assert(type(idx) ./Me_Lua/h10/luci/dispatcher.lua /^ assert(type(idx) == "function",$/;" f -assert(type(idx) ./Me_Lua/h13/luci/dispatcher.lua /^ assert(type(idx) == "function",$/;" f -assert(type(idx) ./Mi_Lua/luci/dispatcher.lua /^ assert(type(idx) == "function",$/;" f -assign ./Me_Lua/h10/luci/dispatcher.lua /^function assign(path, clone, title, order)$/;" f -assign ./Me_Lua/h13/luci/dispatcher.lua /^function assign(path, clone, title, order)$/;" f -assign ./Mi_Lua/luci/dispatcher.lua /^function assign(path, clone, title, order, flag)$/;" f -attr ./Me_Lua/h10/luci/dispatcher.lua /^ attr = function(...) return _ifattr(true, ...) end;$/;" f -attr ./Me_Lua/h13/luci/dispatcher.lua /^ attr = function(...) return _ifattr(true, ...) end;$/;" f -attr ./Mi_Lua/luci/dispatcher.lua /^ attr = function(...) return _ifattr(true, ...) end;$/;" f -attribute ./Mi_Lua/slaxdom.lua /^ attribute = function(name,value,nsURI)$/;" f -attribute ./Mi_Lua/slaxml.lua /^ attribute = function(name,value,nsURI)$/;" f -authen ./Me_Lua/h10/luci/dispatcher.lua /^ authen = function() return eu end$/;" f -authen ./Me_Lua/h13/luci/dispatcher.lua /^ authen = function() return eu end$/;" f -authen ./Mi_Lua/luci/dispatcher.lua /^ authen = function() return eu end$/;" f -authenticator.htmlauth ./Me_Lua/h10/luci/dispatcher.lua /^function authenticator.htmlauth(validator, accs, default)$/;" f -authenticator.htmlauth ./Me_Lua/h13/luci/dispatcher.lua /^function authenticator.htmlauth(validator, accs, default)$/;" f -authenticator.htmlauth ./Mi_Lua/luci/dispatcher.lua /^function authenticator.htmlauth(validator, accs, default)$/;" f -authenticator.htmlauth_moblie ./Mi_Lua/luci/dispatcher.lua /^function authenticator.htmlauth_moblie(validator, accs, default)$/;" f -authenticator.jsonauth ./Mi_Lua/luci/dispatcher.lua /^function authenticator.jsonauth(validator, accs, default)$/;" f -available ./Me_Lua/h10/luci/sauth.lua /^function available()$/;" f -available ./Me_Lua/h13/luci/sauth.lua /^function available()$/;" f -available ./Mi_Lua/luci/sauth.lua /^function available()$/;" f -b64dec ./Me_Lua/h10/meizu/bfs.lua /^function b64dec(data)$/;" f -b64dec ./Me_Lua/h13/meizu/bfs.lua /^function b64dec(data)$/;" f -b64enc ./Me_Lua/h10/meizu/bfs.lua /^function b64enc(data)$/;" f -b64enc ./Me_Lua/h13/meizu/bfs.lua /^function b64enc(data)$/;" f -base64filter ./Mi_Lua/luci/controller/api/xqtunnel.lua /^local function base64filter(input)$/;" f -batchfile_checklist ./Me_Lua/h10/meizu/bfs.lua /^function batchfile_checklist()$/;" f -batchfile_compare_upload ./Me_Lua/h10/meizu/bfs.lua /^function batchfile_compare_upload()$/;" f -bigendian ./Mi_Lua/luci/util.lua /^function bigendian()$/;" f -binToHex ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function binToHex(s)$/;" f -binaryBase64Dec ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function binaryBase64Dec(data)$/;" f -binaryBase64Enc ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function binaryBase64Enc(data)$/;" f -bind ./Mi_Lua/socket.lua /^function bind(host, port, backlog)$/;" f -bind_router ./Me_Lua/h10/meizu/bfs.lua /^function bind_router()$/;" f -bind_router ./Me_Lua/h13/meizu/bfs.lua /^function bind_router()$/;" f -bluetooth_info ./Me_Lua/h10/meizu/btfs.lua /^function bluetooth_info()$/;" f -bluetooth_info ./Me_Lua/h13/meizu/nwfs.lua /^function bluetooth_info()$/;" f -bool ./Mi_Lua/luci/cbi/datatypes.lua /^function bool(val)$/;" f -buf ./Me_Lua/h10/meizu/bfs.lua /^ buf = buf..string.format('"%s"' % tostring(x):gsub('[%z\\1-\\31]', function(c) return '\\\\u%04x' % c:byte(1) end))$/;" f -buf ./Me_Lua/h13/meizu/bfs.lua /^ buf = buf..string.format('"%s"' % tostring(x):gsub('[%z\\1-\\31]', function(c) return '\\\\u%04x' % c:byte(1) end))$/;" f -build ./Mi_Lua/socket/url.lua /^function build(parsed)$/;" f -buildUrl ./Mi_Lua/luci/view/mobile/init/hello.htm /^ function buildUrl(token, path){$/;" f -buildUrl ./Mi_Lua/luci/view/web/xmaccount.htm /^function buildUrl(token, path){$/;" f -build_path ./Mi_Lua/socket/url.lua /^function build_path(parsed, unsafe)$/;" f -build_querystring ./Mi_Lua/luci/http.lua /^function build_querystring(q)$/;" f -build_url ./Me_Lua/h10/luci/dispatcher.lua /^function build_url(...)$/;" f -build_url ./Me_Lua/h13/luci/dispatcher.lua /^function build_url(...)$/;" f -build_url ./Mi_Lua/luci/dispatcher.lua /^function build_url(...)$/;" f -byteFormat ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function byteFormat(byte)$/;" f -byte_format ./Mi_Lua/luci/tools/webadmin.lua /^function byte_format(byte)$/;" f -bytes2GB ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function bytes2GB(bytes) {$/;" f -c) return string.format ./Mi_Lua/luci/controller/service/datacenter.lua /^ function(c) return string.format ("%%%02X", string.byte(c)) end)$/;" f -cache_enable ./Mi_Lua/luci/ccache.lua /^function cache_enable(cachepath, mode)$/;" f -cache_ondemand ./Mi_Lua/luci/ccache.lua /^function cache_ondemand(...)$/;" f -cal_str_md5 ./Me_Lua/h10/meizu/bfs.lua /^function cal_str_md5(str)$/;" f -cal_str_md5 ./Me_Lua/h13/meizu/bfs.lua /^function cal_str_md5(str)$/;" f -call ./Me_Lua/h10/luci/dispatcher.lua /^function call(name, ...)$/;" f -call ./Me_Lua/h13/luci/dispatcher.lua /^function call(name, ...)$/;" f -call ./Mi_Lua/luci/dispatcher.lua /^function call(name, ...)$/;" f -call ./Mi_Lua/luci/sys.lua /^function call(...)$/;" f -cancelDownload ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function cancelDownload(downloadUrl)$/;" f -cancelUpgrade ./Mi_Lua/luci/controller/api/xqsystem.lua /^function cancelUpgrade()$/;" f -cancelUpgrade ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function cancelUpgrade()$/;" f -cancelapclient ./Me_Lua/h13/meizu/nwfs.lua /^function cancelapclient()$/;" f -castMitvResult ./Mi_Lua/xiaoqiang/util/XQMitvUtil.lua /^function castMitvResult(str)$/;" f -cbi ./Me_Lua/h10/luci/dispatcher.lua /^function cbi(model, config)$/;" f -cbi ./Me_Lua/h13/luci/dispatcher.lua /^function cbi(model, config)$/;" f -cbi_add_knownips ./Mi_Lua/luci/tools/webadmin.lua /^function cbi_add_knownips(field)$/;" f -cbi_add_networks ./Mi_Lua/luci/tools/webadmin.lua /^function cbi_add_networks(field)$/;" f -change_maclist_table ./Me_Lua/h10/meizu/dbfs.lua /^function change_maclist_table()$/;" f -change_maclist_table ./Me_Lua/h13/meizu/dbfs.lua /^function change_maclist_table()$/;" f -channelFormat ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function channelFormat(wifiIndex, channel, bandwidth)$/;" f -channelHelper ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function channelHelper(channel)$/;" f -check ./Mi_Lua/xiaoqiang/XQLog.lua /^function check(ctype, key, value)$/;" f -checkBeenUpgraded ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkBeenUpgraded()$/;" f -checkDiskSpace ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkDiskSpace(byte)$/;" f -checkExecStatus ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkExecStatus(checkCmd)$/;" f -checkFileExist ./Mi_Lua/luci/controller/api/xqdatacenter.lua /^function checkFileExist()$/;" f -checkLanIp ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function checkLanIp(ip)$/;" f -checkMTU ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function checkMTU(value)$/;" f -checkMask ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function checkMask(mask)$/;" f -checkNonce ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function checkNonce(nonce, mac)$/;" f -checkPermission ./Mi_Lua/xiaoqiang/util/XQSDKUtil.lua /^function checkPermission(mac)$/;" f -checkPlaintextPwd ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function checkPlaintextPwd(user, plaintext)$/;" f -checkRedirectKey ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function checkRedirectKey(key)$/;" f -checkRomUpdate ./Mi_Lua/luci/controller/api/xqsystem.lua /^function checkRomUpdate()$/;" f -checkRouterNamePending ./Mi_Lua/luci/controller/api/xqsystem.lua /^function checkRouterNamePending()$/;" f -checkSSID ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function checkSSID(ssid)$/;" f -checkSSID ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function checkSSID(ssid,length)$/;" f -checkStrong ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function checkStrong(pwd)$/;" f -checkSysPassword ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkSysPassword(oldPassword)$/;" f -checkSystemStatus ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkSystemStatus()$/;" f -checkTmpSpace ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkTmpSpace(byte)$/;" f -checkUpgrade ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function checkUpgrade()$/;" f -checkUpgradeStatus ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function checkUpgradeStatus()$/;" f -checkUser ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function checkUser(user, nonce, encStr)$/;" f -checkWanIp ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function checkWanIp(ip)$/;" f -checkWifiPasswd ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function checkWifiPasswd(passwd,encryption)$/;" f -check_guest_wifi ./Me_Lua/h10/meizu/nwfs.lua /^function check_guest_wifi()$/;" f -check_mandatory_upgrade ./Me_Lua/h10/meizu/upgdfs.lua /^function check_mandatory_upgrade()$/;" f -check_show_syslock ./Mi_Lua/luci/dispatcher.lua /^function check_show_syslock(sysauth)$/;" f -check_ssid ./Me_Lua/h10/meizu/nwfs.lua /^function check_ssid(ssid)$/;" f -check_ssid ./Me_Lua/h13/meizu/nwfs.lua /^function check_ssid(ssid)$/;" f -check_sys_password ./Me_Lua/h10/meizu/nwfs.lua /^function check_sys_password(password)$/;" f -check_sys_password ./Me_Lua/h13/meizu/nwfs.lua /^function check_sys_password(password)$/;" f -check_sys_pwd ./Me_Lua/h10/meizu/nwfs.lua /^function check_sys_pwd(oldPassword)$/;" f -check_sys_pwd ./Me_Lua/h13/meizu/nwfs.lua /^function check_sys_pwd(oldPassword)$/;" f -check_upgrade ./Me_Lua/h10/meizu/upgdfs.lua /^function check_upgrade()$/;" f -check_upgrade ./Me_Lua/h13/meizu/upgdfs.lua /^function check_upgrade()$/;" f -check_upgrade_status ./Me_Lua/h10/routerReport.lua /^function check_upgrade_status()$/;" f -check_upgrade_status ./Me_Lua/h13/routerReport.lua /^function check_upgrade_status()$/;" f -check_wifi_passwd ./Me_Lua/h10/meizu/nwfs.lua /^function check_wifi_passwd(passwd,encryption)$/;" f -check_wifi_passwd ./Me_Lua/h13/meizu/nwfs.lua /^function check_wifi_passwd(passwd,encryption)$/;" f -checkid ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function checkid(id)$/;" f -chmod777 ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function chmod777()$/;" f -choose ./Me_Lua/h10/mime.lua /^local function choose(table)$/;" f -choose ./Me_Lua/h13/mime.lua /^local function choose(table)$/;" f -choose ./Mi_Lua/mime.lua /^local function choose(table)$/;" f -choose ./Mi_Lua/socket.lua /^function choose(table)$/;" f -cidr.add ./Mi_Lua/luci/ip.lua /^function cidr.add( self, amount, inplace )$/;" f -cidr.broadcast ./Mi_Lua/luci/ip.lua /^function cidr.broadcast( self )$/;" f -cidr.contains ./Mi_Lua/luci/ip.lua /^function cidr.contains( self, addr )$/;" f -cidr.equal ./Mi_Lua/luci/ip.lua /^function cidr.equal( self, addr )$/;" f -cidr.higher ./Mi_Lua/luci/ip.lua /^function cidr.higher( self, addr )$/;" f -cidr.host ./Mi_Lua/luci/ip.lua /^function cidr.host( self )$/;" f -cidr.is4 ./Mi_Lua/luci/ip.lua /^function cidr.is4( self )$/;" f -cidr.is4linklocal ./Mi_Lua/luci/ip.lua /^function cidr.is4linklocal( self )$/;" f -cidr.is4rfc1918 ./Mi_Lua/luci/ip.lua /^function cidr.is4rfc1918( self )$/;" f -cidr.is6 ./Mi_Lua/luci/ip.lua /^function cidr.is6( self )$/;" f -cidr.is6linklocal ./Mi_Lua/luci/ip.lua /^function cidr.is6linklocal( self )$/;" f -cidr.lower ./Mi_Lua/luci/ip.lua /^function cidr.lower( self, addr )$/;" f -cidr.mask ./Mi_Lua/luci/ip.lua /^function cidr.mask( self, bits )$/;" f -cidr.maxhost ./Mi_Lua/luci/ip.lua /^function cidr.maxhost( self )$/;" f -cidr.minhost ./Mi_Lua/luci/ip.lua /^function cidr.minhost( self )$/;" f -cidr.network ./Mi_Lua/luci/ip.lua /^function cidr.network( self, bits )$/;" f -cidr.prefix ./Mi_Lua/luci/ip.lua /^function cidr.prefix( self, mask )$/;" f -cidr.string ./Mi_Lua/luci/ip.lua /^function cidr.string( self )$/;" f -cidr.sub ./Mi_Lua/luci/ip.lua /^function cidr.sub( self, amount, inplace )$/;" f -cipher ./Mi_Lua/rc4.lua /^local function cipher(sMessage, state)$/;" f -ciphertextFormat ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function ciphertextFormat(ciphertext)$/;" f -class ./Mi_Lua/luci/util.lua /^function class(base)$/;" f -clear ./Mi_Lua/luci/i18n.lua /^function clear()$/;" f -clearCookies ./Mi_Lua/luci/view/web/inc/reboot.js.htm /^ function clearCookies(){$/;" f -clearRouterNamePending ./Mi_Lua/luci/controller/api/xqsystem.lua /^function clearRouterNamePending()$/;" f -clone ./Mi_Lua/luci/util.lua /^function clone(object, deep)$/;" f -close ./Mi_Lua/luci/http.lua /^function close()$/;" f -closeDMZ ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function closeDMZ()$/;" f -closeElement ./Mi_Lua/slaxml.lua /^ local function closeElement()$/;" f -closeElement ./Mi_Lua/slaxdom.lua /^ closeElement = function(name)$/;" f -closeElement ./Mi_Lua/slaxml.lua /^ closeElement = function(name,nsURI)$/;" f -closeWebInitRDR ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function closeWebInitRDR()$/;" f -cmatch ./Mi_Lua/luci/util.lua /^function cmatch(str, pat)$/;" f -cmd ./Mi_Lua/sysapi/miqos.lua /^function cmd(action)$/;" f -cmdSafeCheck ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function cmdSafeCheck(url)$/;" f -code:sub ./Mi_Lua/luci/util.lua /^ return code:sub(1,12) .. strip_function(code:sub(13,-1))$/;" f -combine ./Mi_Lua/luci/util.lua /^function combine(...)$/;" f -command ./Mi_Lua/socket/ftp.lua /^command = socket.protect(function(cmdt)$/;" f -comment ./Mi_Lua/slaxdom.lua /^ comment = function(value)$/;" f -comment ./Mi_Lua/slaxml.lua /^ comment = function(content)$/;" f -commit ./Me_Lua/h10/luci/model/network.lua /^function commit(self, ...)$/;" f -commit ./Me_Lua/h13/luci/model/network.lua /^function commit(self, ...)$/;" f -commit ./Mi_Lua/luci/model/firewall.lua /^function commit(self, ...)$/;" f -commit ./Mi_Lua/luci/model/network.lua /^function commit(self, ...)$/;" f -comparator ./Mi_Lua/luci/model/uci.lua /^ comparator = function(section)$/;" f -compare ./Mi_Lua/luci/http/protocol/date.lua /^function compare(d1, d2)$/;" f -compile_datatype ./Mi_Lua/luci/cbi.lua /^function compile_datatype(code)$/;" f -configRecovery ./Mi_Lua/luci/controller/api/xqsystem.lua /^function configRecovery()$/;" f -conn:connect ./Me_Lua/h10/ssl/https.lua /^ function conn:connect(host, port)$/;" f -conn:connect ./Me_Lua/h13/ssl/https.lua /^ function conn:connect(host, port)$/;" f -conn:connect ./Mi_Lua/ssl/https.lua /^ function conn:connect(host, port)$/;" f -conn:settimeout ./Me_Lua/h10/ssl/https.lua /^ function conn:settimeout(...)$/;" f -conn:settimeout ./Me_Lua/h13/ssl/https.lua /^ function conn:settimeout(...)$/;" f -conn:settimeout ./Mi_Lua/ssl/https.lua /^ function conn:settimeout(...)$/;" f -conn[name] ./Me_Lua/h10/ssl/https.lua /^ conn[name] = function (self, ...)$/;" f -conn[name] ./Me_Lua/h13/ssl/https.lua /^ conn[name] = function (self, ...)$/;" f -conn[name] ./Mi_Lua/ssl/https.lua /^ conn[name] = function (self, ...)$/;" f -connect ./Mi_Lua/socket.lua /^function connect(address, port, laddress, lport)$/;" f -connect ./Mi_Lua/socket/tp.lua /^function connect(host, port, timeout, create)$/;" f -connectedDevice ./Mi_Lua/luci/controller/service/datacenter.lua /^function connectedDevice()$/;" f -consume ./Mi_Lua/nixio/util.lua /^function consume(iter, append)$/;" f -contains ./Mi_Lua/luci/util.lua /^function contains(table, value)$/;" f -content ./Mi_Lua/luci/http.lua /^function content()$/;" f -content ./Mi_Lua/luci/view/error404.htm /^

404 <%:Not Found%><\/a><\/h2>$/;" a -content ./Mi_Lua/luci/view/error500.htm /^

500 <%:Internal Server Error%><\/a><\/h2>$/;" a -control ./Mi_Lua/xiaoqiang/util/XQMitvUtil.lua /^function control(ip,keycode)$/;" f -controlPlugin ./Mi_Lua/luci/controller/service/datacenter.lua /^function controlPlugin()$/;" f -controlSync ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function controlSync(action) {$/;" f -copcall ./Mi_Lua/luci/util.lua /^function copcall(f, ...)$/;" f -copcall_id ./Mi_Lua/luci/util.lua /^local function copcall_id(trace, ...)$/;" f -copy ./Mi_Lua/nixio/fs.lua /^function copy(src, dest)$/;" f -copyr ./Mi_Lua/nixio/fs.lua /^function copyr(src, dest)$/;" f -coxpcall ./Mi_Lua/luci/util.lua /^function coxpcall(f, err, ...)$/;" f -createKeySchedule ./Mi_Lua/rc4.lua /^local function createKeySchedule(sKey)$/;" f -createSandbox ./Mi_Lua/luci/controller/api/xqsystem.lua /^function createSandbox()$/;" f -createSandbox ./Mi_Lua/luci/view/web/setting/lamp.htm /^ function createSandbox(){$/;" f -createindex ./Me_Lua/h10/luci/dispatcher.lua /^function createindex()$/;" f -createindex ./Me_Lua/h13/luci/dispatcher.lua /^function createindex()$/;" f -createindex ./Mi_Lua/luci/dispatcher.lua /^function createindex()$/;" f -createindex_fastindex ./Me_Lua/h10/luci/dispatcher.lua /^function createindex_fastindex(path, suffixes)$/;" f -createindex_fastindex ./Me_Lua/h13/luci/dispatcher.lua /^function createindex_fastindex(path, suffixes)$/;" f -createindex_fastindex ./Mi_Lua/luci/dispatcher.lua /^function createindex_fastindex(path, suffixes)$/;" f -createindex_plain ./Me_Lua/h10/luci/dispatcher.lua /^function createindex_plain(path, suffixes)$/;" f -createindex_plain ./Me_Lua/h13/luci/dispatcher.lua /^function createindex_plain(path, suffixes)$/;" f -createindex_plain ./Mi_Lua/luci/dispatcher.lua /^function createindex_plain(path, suffixes)$/;" f -createtree ./Me_Lua/h10/luci/dispatcher.lua /^function createtree()$/;" f -createtree ./Me_Lua/h13/luci/dispatcher.lua /^function createtree()$/;" f -createtree ./Mi_Lua/luci/dispatcher.lua /^function createtree()$/;" f -cryptUrl ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function cryptUrl(serverUrl, subUrl, params, salt)$/;" f -cursor_state ./Mi_Lua/luci/model/uci.lua /^function cursor_state()$/;" f -cutImage ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function cutImage(filePath)$/;" f -data_to_json ./Me_Lua/h10/meizu/bfs.lua /^function data_to_json(x)$/;" f -data_to_json ./Me_Lua/h13/meizu/bfs.lua /^function data_to_json(x)$/;" f -database_busy ./Me_Lua/h10/meizu/dbfs.lua /^function database_busy()$/;" f -database_busy ./Me_Lua/h13/meizu/dbfs.lua /^function database_busy()$/;" f -datacopy ./Mi_Lua/nixio/fs.lua /^function datacopy(src, dest, size)$/;" f -datasource.del ./Mi_Lua/luci/cbi.lua /^ function datasource.del(...)$/;" f -datasource.get ./Mi_Lua/luci/cbi.lua /^ function datasource.get(self, section, option)$/;" f -datasource.get_scheme ./Mi_Lua/luci/cbi.lua /^ function datasource.get_scheme()$/;" f -datasource.submitstate ./Mi_Lua/luci/cbi.lua /^ function datasource.submitstate(self)$/;" f -date_format ./Mi_Lua/luci/tools/webadmin.lua /^function date_format(secs)$/;" f -ddnsEdit ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function ddnsEdit()$/;" f -ddnsInfo ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function ddnsInfo()$/;" f -ddnsReload ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function ddnsReload()$/;" f -ddnsServerSwitch ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function ddnsServerSwitch(id, on)$/;" f -ddnsStatus ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function ddnsStatus()$/;" f -ddnsSwitch ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function ddnsSwitch()$/;" f -ddnsSwitch ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function ddnsSwitch(){$/;" f -ddnsSwitch ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function ddnsSwitch(on)$/;" f -decCiphertext ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function decCiphertext(user, ciphertext)$/;" f -decode ./Mi_Lua/json.lua /^function decode(s, startPos)$/;" f -decode ./Mi_Lua/luci/json.lua /^function decode(json, ...)$/;" f -decodeURI ./Me_Lua/h10/meizu/bfs.lua /^function decodeURI(s)$/;" f -decodeURI ./Me_Lua/h13/meizu/bfs.lua /^function decodeURI(s)$/;" f -decode_scanArray ./Mi_Lua/json.lua /^function decode_scanArray(s,startPos)$/;" f -decode_scanComment ./Mi_Lua/json.lua /^function decode_scanComment(s, startPos)$/;" f -decode_scanConstant ./Mi_Lua/json.lua /^function decode_scanConstant(s, startPos)$/;" f -decode_scanNumber ./Mi_Lua/json.lua /^function decode_scanNumber(s,startPos)$/;" f -decode_scanObject ./Mi_Lua/json.lua /^function decode_scanObject(s,startPos)$/;" f -decode_scanString ./Mi_Lua/json.lua /^function decode_scanString(s,startPos)$/;" f -decode_scanWhitespace ./Mi_Lua/json.lua /^function decode_scanWhitespace(s,startPos)$/;" f -decodet['base64'] ./Me_Lua/h10/mime.lua /^decodet['base64'] = function()$/;" f -decodet['base64'] ./Me_Lua/h13/mime.lua /^decodet['base64'] = function()$/;" f -decodet['base64'] ./Mi_Lua/mime.lua /^decodet['base64'] = function()$/;" f -decodet['quoted-printable'] ./Me_Lua/h10/mime.lua /^decodet['quoted-printable'] = function()$/;" f -decodet['quoted-printable'] ./Me_Lua/h13/mime.lua /^decodet['quoted-printable'] = function()$/;" f -decodet['quoted-printable'] ./Mi_Lua/mime.lua /^decodet['quoted-printable'] = function()$/;" f -default_https_port ./Me_Lua/h10/ssl/https.lua /^local function default_https_port(u)$/;" f -default_https_port ./Me_Lua/h13/ssl/https.lua /^local function default_https_port(u)$/;" f -default_https_port ./Mi_Lua/ssl/https.lua /^local function default_https_port(u)$/;" f -defaults.__init__ ./Mi_Lua/luci/model/firewall.lua /^function defaults.__init__(self)$/;" f -defaults.drop_invalid ./Mi_Lua/luci/model/firewall.lua /^function defaults.drop_invalid(self)$/;" f -defaults.forward ./Mi_Lua/luci/model/firewall.lua /^function defaults.forward(self)$/;" f -defaults.get ./Mi_Lua/luci/model/firewall.lua /^function defaults.get(self, opt)$/;" f -defaults.input ./Mi_Lua/luci/model/firewall.lua /^function defaults.input(self)$/;" f -defaults.output ./Mi_Lua/luci/model/firewall.lua /^function defaults.output(self)$/;" f -defaults.set ./Mi_Lua/luci/model/firewall.lua /^function defaults.set(self, opt, val)$/;" f -defaults.syn_flood ./Mi_Lua/luci/model/firewall.lua /^function defaults.syn_flood(self)$/;" f -delGuestWifi ./Mi_Lua/xiaoqiang/module/XQGuestWifi.lua /^function delGuestWifi(wifiIndex)$/;" f -delGuestWifi ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function delGuestWifi(wifiIndex)$/;" f -del_mesh_device_timer ./Me_Lua/h10/meizu/btfs.lua /^function del_mesh_device_timer(mac, timer_id)$/;" f -del_mesh_device_timer ./Me_Lua/h13/meizu/nwfs.lua /^function del_mesh_device_timer(mac, timer_id)$/;" f -del_network ./Me_Lua/h10/luci/model/network.lua /^function del_network(self, n)$/;" f -del_network ./Me_Lua/h13/luci/model/network.lua /^function del_network(self, n)$/;" f -del_network ./Mi_Lua/luci/model/firewall.lua /^function del_network(self, net)$/;" f -del_network ./Mi_Lua/luci/model/network.lua /^function del_network(self, n)$/;" f -del_wifinet ./Me_Lua/h10/luci/model/network.lua /^function del_wifinet(self, net)$/;" f -del_wifinet ./Me_Lua/h13/luci/model/network.lua /^function del_wifinet(self, net)$/;" f -del_wifinet ./Mi_Lua/luci/model/network.lua /^function del_wifinet(self, net)$/;" f -del_zone ./Mi_Lua/luci/model/firewall.lua /^function del_zone(self, n)$/;" f -deleteAllPortForward ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function deleteAllPortForward()$/;" f -deleteBatchFile ./Me_Lua/h10/meizu/dbfs.lua /^function deleteBatchFile(IMEI)$/;" f -deleteBatchFileEndFlag ./Me_Lua/h10/meizu/dbfs.lua /^function deleteBatchFileEndFlag(flag, IMEI)$/;" f -deleteBleTimer ./Me_Lua/h10/meizu/dbfs.lua /^function deleteBleTimer(id, timer_id)$/;" f -deleteBluetoothDevice ./Me_Lua/h10/meizu/dbfs.lua /^function deleteBluetoothDevice(mac)$/;" f -deleteBluetoothDevice ./Me_Lua/h13/meizu/dbfs.lua /^function deleteBluetoothDevice(mac)$/;" f -deleteDdns ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function deleteDdns(id)$/;" f -deleteDeviceInfo ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function deleteDeviceInfo(mac)$/;" f -deleteDownload ./Mi_Lua/luci/controller/service/datacenter.lua /^function deleteDownload()$/;" f -deletePassport ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function deletePassport(uuid)$/;" f -deletePortForward ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function deletePortForward(port)$/;" f -deleteRedirect ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function deleteRedirect()$/;" f -deleteServer ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function deleteServer()$/;" f -deleteSmbBanList ./Me_Lua/h10/meizu/dbfs.lua /^function deleteSmbBanList(mac)$/;" f -deleteUserInfo ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function deleteUserInfo(uuid)$/;" f -delete_access_token ./Me_Lua/h10/meizu/dbfs.lua /^function delete_access_token()$/;" f -delete_access_token ./Me_Lua/h13/meizu/dbfs.lua /^function delete_access_token()$/;" f -delete_arp_all_mac ./Me_Lua/h10/meizu/dbfs.lua /^function delete_arp_all_mac()$/;" f -delete_arp_all_mac ./Me_Lua/h13/meizu/dbfs.lua /^function delete_arp_all_mac()$/;" f -delete_deny_mac ./Me_Lua/h13/meizu/dbfs.lua /^function delete_deny_mac(mac)$/;" f -delete_wire__device ./Me_Lua/h10/meizu/dbfs.lua /^function delete_wire__device(mac)$/;" f -dest.cfgvalue ./Mi_Lua/luci/model/cbi/firewall/forwards.lua /^function dest.cfgvalue(self, s)$/;" f -detecte ./Mi_Lua/luci/view/web/index.htm /^ function detecte(){$/;" f -developerInfo ./Mi_Lua/luci/view/web/setting/developer.htm /^ function developerInfo(){$/;" f -developerSet ./Mi_Lua/luci/view/web/setting/developer.htm /^ function developerSet(){$/;" f -developerSwitch ./Mi_Lua/luci/view/web/setting/developer.htm /^ function developerSwitch(){$/;" f -device ./Mi_Lua/luci/cbi/datatypes.lua /^function device( val, seen )$/;" f -devip ./Me_Lua/h10/luci/controller/bs/index.lua /^function devip()$/;" f -devip ./Me_Lua/h13/luci/controller/bs/index.lua /^function devip()$/;" f -dhcp6_leases ./Mi_Lua/luci/tools/status.lua /^function dhcp6_leases()$/;" f -dhcp_leases ./Mi_Lua/luci/tools/status.lua /^function dhcp_leases()$/;" f -dhcp_leases_common ./Mi_Lua/luci/tools/status.lua /^local function dhcp_leases_common(family)$/;" f -diag_command ./Me_Lua/h10/luci/controller/admin/network.lua /^function diag_command(cmd, addr)$/;" f -diag_command ./Me_Lua/h13/luci/controller/admin/network.lua /^function diag_command(cmd, addr)$/;" f -diag_nslookup ./Me_Lua/h10/luci/controller/admin/network.lua /^function diag_nslookup(addr)$/;" f -diag_nslookup ./Me_Lua/h13/luci/controller/admin/network.lua /^function diag_nslookup(addr)$/;" f -diag_ping ./Me_Lua/h10/luci/controller/admin/network.lua /^function diag_ping(addr)$/;" f -diag_ping ./Me_Lua/h13/luci/controller/admin/network.lua /^function diag_ping(addr)$/;" f -diag_ping6 ./Me_Lua/h10/luci/controller/admin/network.lua /^function diag_ping6(addr)$/;" f -diag_ping6 ./Me_Lua/h13/luci/controller/admin/network.lua /^function diag_ping6(addr)$/;" f -diag_traceroute ./Me_Lua/h10/luci/controller/admin/network.lua /^function diag_traceroute(addr)$/;" f -diag_traceroute ./Me_Lua/h13/luci/controller/admin/network.lua /^function diag_traceroute(addr)$/;" f -diag_traceroute6 ./Me_Lua/h10/luci/controller/admin/network.lua /^function diag_traceroute6(addr)$/;" f -diag_traceroute6 ./Me_Lua/h13/luci/controller/admin/network.lua /^function diag_traceroute6(addr)$/;" f -dir ./Mi_Lua/luci/fs.lua /^function dir(...)$/;" f -directory ./Mi_Lua/luci/cbi/datatypes.lua /^function directory( val, seen )$/;" f -dirty ./Me_Lua/h10/socket.lua /^ dirty = function() return sock:dirty() end$/;" f -dirty ./Me_Lua/h10/socket/http.lua /^ dirty = function() return sock:dirty() end$/;" f -dirty ./Me_Lua/h13/socket.lua /^ dirty = function() return sock:dirty() end$/;" f -dirty ./Me_Lua/h13/socket/http.lua /^ dirty = function() return sock:dirty() end$/;" f -dirty ./Mi_Lua/socket.lua /^ dirty = function() return sock:dirty() end$/;" f -dirty ./Mi_Lua/socket/http.lua /^ dirty = function() return sock:dirty() end$/;" f -disableLanAP ./Mi_Lua/xiaoqiang/module/XQAPModule.lua /^function disableLanAP()$/;" f -disablePlugin ./Mi_Lua/luci/controller/service/datacenter.lua /^function disablePlugin ()$/;" f -disable_level ./Mi_Lua/logging.lua /^local function disable_level() end$/;" f -disk_formatting ./Me_Lua/h10/meizu/disk.lua /^function disk_formatting()$/;" f -dismissAccount ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function dismissAccount(uuid,account)$/;" f -dismiss_mesh ./Me_Lua/h10/meizu/btfs.lua /^function dismiss_mesh()$/;" f -dismiss_mesh ./Me_Lua/h13/meizu/nwfs.lua /^function dismiss_mesh()$/;" f -dispatch ./Me_Lua/h10/luci/dispatcher.lua /^function dispatch(request)$/;" f -dispatch ./Me_Lua/h13/luci/dispatcher.lua /^function dispatch(request)$/;" f -dispatch ./Mi_Lua/luci/dispatcher.lua /^function dispatch(request)$/;" f -dmesg ./Mi_Lua/luci/sys.lua /^function dmesg()$/;" f -dmzReload ./Mi_Lua/xiaoqiang/module/XQDMZModule.lua /^function dmzReload(mode)$/;" f -dmzStatus ./Mi_Lua/luci/view/web/setting/dmz.htm /^ function dmzStatus(){$/;" f -dmzSwitch ./Mi_Lua/luci/view/web/setting/dmz.htm /^ function dmzSwitch(){$/;" f -dmzedit ./Mi_Lua/luci/view/web/setting/dmz.htm /^ function dmzedit() {$/;" f -dmzset ./Mi_Lua/luci/view/web/setting/dmz.htm /^ function dmzset(){$/;" f -dnsmsqRestart ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function dnsmsqRestart()$/;" f -doClose ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function doClose(e){$/;" f -doDel ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function doDel(e){$/;" f -doDelete ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function doDelete(localfiles,afterDay)$/;" f -doDownload ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function doDownload(f)$/;" f -doForceUpdate ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function doForceUpdate(e){$/;" f -doNginx ./Mi_Lua/luci/view/web/setting/nginx.htm /^ function doNginx(){$/;" f -doOpen ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function doOpen(e){$/;" f -doPrint ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function doPrint(content)$/;" f -doRequest ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function doRequest(method,url,param,uuid)$/;" f -do_upgrade ./Me_Lua/h10/meizu/upgdfs.lua /^function do_upgrade()$/;" f -do_upgrade ./Me_Lua/h13/meizu/upgdfs.lua /^function do_upgrade()$/;" f -done ./Mi_Lua/luci/view/web/setting/wifi_set_mini.htm /^ function done(){$/;" f -done ./Mi_Lua/luci/view/web/setting/wifi_set_pro.htm /^ function done(){$/;" f -download ./Mi_Lua/luci/controller/api/xqdatacenter.lua /^function download()$/;" f -downloadFile ./Mi_Lua/luci/controller/service/datacenter.lua /^function downloadFile()$/;" f -downloadPercent ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^function downloadPercent(downloadId)$/;" f -downloadSpeedTest ./Mi_Lua/xiaoqiang/module/XQNetworkSpeedTest.lua /^function downloadSpeedTest()$/;" f -download_list_post_process ./Me_Lua/h10/meizu/sipfs.lua /^function download_list_post_process(data, refine_cnt)$/;" f -download_list_post_process ./Me_Lua/h13/meizu/sipfs.lua /^function download_list_post_process(data, refine_cnt)$/;" f -download_task_operate ./Me_Lua/h10/meizu/dlfs.lua /^function download_task_operate(gid, command)$/;" f -download_task_operate_process ./Me_Lua/h10/meizu/sipfs.lua /^function download_task_operate_process(cmd, cmdid)$/;" f -download_task_operate_process ./Me_Lua/h13/meizu/sipfs.lua /^function download_task_operate_process(cmd, cmdid)$/;" f -download_task_pause ./Me_Lua/h10/meizu/dlfs.lua /^function download_task_pause(gid, command)$/;" f -download_task_remove ./Me_Lua/h10/meizu/dlfs.lua /^function download_task_remove(gid, command)$/;" f -download_task_start ./Me_Lua/h10/meizu/dlfs.lua /^function download_task_start(url, dltype)$/;" f -download_task_unpause ./Me_Lua/h10/meizu/dlfs.lua /^function download_task_unpause(gid, command)$/;" f -dtable ./Mi_Lua/luci/util.lua /^function dtable()$/;" f -dummy_test ./Mi_Lua/xssFilter.lua /^local function dummy_test()$/;" f -dumptable ./Mi_Lua/luci/util.lua /^function dumptable(t, maxdepth, i, seen)$/;" f -editDdns ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function editDdns(id, enable, username, password, checkinterval, forceinterval, domain)$/;" f -editDevice ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function editDevice()$/;" f -editWiFiMacfilterList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function editWiFiMacfilterList(model, mac, option)$/;" f -elseif base.type(mesgt.body) ./Me_Lua/h10/socket/smtp.lua /^ elseif base.type(mesgt.body) == "function" then send_source(mesgt)$/;" f -elseif base.type(mesgt.body) ./Me_Lua/h13/socket/smtp.lua /^ elseif base.type(mesgt.body) == "function" then send_source(mesgt)$/;" f -elseif base.type(mesgt.body) ./Mi_Lua/socket/smtp.lua /^ elseif base.type(mesgt.body) == "function" then send_source(mesgt)$/;" f -elseif f_type ./Mi_Lua/logging.lua /^ elseif f_type == 'function' then$/;" f -elseif type(datatypes[label]) ./Mi_Lua/luci/cbi.lua /^ elseif type(datatypes[label]) == "function" then$/;" f -elseif type(val) ./Mi_Lua/luci/util.lua /^ elseif type(val) == "function" then$/;" f -empower ./Mi_Lua/luci/dispatcher.lua /^function empower(lan,wan,admin)$/;" f -empty ./Me_Lua/h10/ltn12.lua /^local function empty()$/;" f -empty ./Me_Lua/h13/ltn12.lua /^local function empty()$/;" f -empty ./Mi_Lua/ltn12.lua /^local function empty()$/;" f -empty ./Mi_Lua/luci/ltn12.lua /^local function empty()$/;" f -enableLanAP ./Mi_Lua/xiaoqiang/module/XQAPModule.lua /^function enableLanAP()$/;" f -enablePlugin ./Mi_Lua/luci/controller/service/datacenter.lua /^function enablePlugin()$/;" f -encode ./Mi_Lua/luci/json.lua /^function encode(obj, ...)$/;" f -encode ./Mi_Lua/json.lua /^function encode (v)$/;" f -encodeString ./Mi_Lua/json.lua /^function encodeString(s)$/;" f -encodeURI ./Me_Lua/h10/meizu/bfs.lua /^function encodeURI(s)$/;" f -encodeURI ./Me_Lua/h13/meizu/bfs.lua /^function encodeURI(s)$/;" f -encodet['base64'] ./Me_Lua/h10/mime.lua /^encodet['base64'] = function()$/;" f -encodet['base64'] ./Me_Lua/h13/mime.lua /^encodet['base64'] = function()$/;" f -encodet['base64'] ./Mi_Lua/mime.lua /^encodet['base64'] = function()$/;" f -encodet['quoted-printable'] ./Me_Lua/h10/mime.lua /^encodet['quoted-printable'] = function(mode)$/;" f -encodet['quoted-printable'] ./Me_Lua/h13/mime.lua /^encodet['quoted-printable'] = function(mode)$/;" f -encodet['quoted-printable'] ./Mi_Lua/mime.lua /^encodet['quoted-printable'] = function(mode)$/;" f -entry ./Me_Lua/h10/luci/dispatcher.lua /^function entry(path, target, title, order)$/;" f -entry ./Me_Lua/h13/luci/dispatcher.lua /^function entry(path, target, title, order)$/;" f -entry ./Mi_Lua/luci/dispatcher.lua /^function entry(path, target, title, order, flag)$/;" f -error404 ./Me_Lua/h10/luci/dispatcher.lua /^function error404(message)$/;" f -error404 ./Me_Lua/h13/luci/dispatcher.lua /^function error404(message)$/;" f -error404 ./Mi_Lua/luci/dispatcher.lua /^function error404(message)$/;" f -error500 ./Me_Lua/h10/luci/dispatcher.lua /^function error500(message)$/;" f -error500 ./Me_Lua/h13/luci/dispatcher.lua /^function error500(message)$/;" f -error500 ./Mi_Lua/luci/dispatcher.lua /^function error500(message)$/;" f -escape ./Mi_Lua/luci/view/web/setting/wifi_set.htm /^function escape(str)$/;" f -escape ./Mi_Lua/socket/url.lua /^function escape(s)$/;" f -exec ./Mi_Lua/luci/util.lua /^function exec(command)$/;" f -exec_cmd_in_sh ./Me_Lua/h10/meizu/bfs.lua /^function exec_cmd_in_sh(command)$/;" f -exec_cmd_in_sh ./Me_Lua/h13/meizu/bfs.lua /^function exec_cmd_in_sh(command)$/;" f -exec_reboot ./Me_Lua/h10/meizu/bfs.lua /^function exec_reboot()$/;" f -exec_reboot ./Me_Lua/h13/meizu/bfs.lua /^function exec_reboot()$/;" f -execi ./Mi_Lua/luci/util.lua /^function execi(command)$/;" f -execl ./Mi_Lua/luci/util.lua /^function execl(command)$/;" f -execl ./Mi_Lua/xiaoqiang/module/XQNetworkSpeedTest.lua /^function execl(command, times)$/;" f -export ./Me_Lua/h10/luci/dispatcher.lua /^ export = function(k, v) if tpl.context.viewns[k] == nil then tpl.context.viewns[k] = v end end;$/;" f -export ./Me_Lua/h13/luci/dispatcher.lua /^ export = function(k, v) if tpl.context.viewns[k] == nil then tpl.context.viewns[k] = v end end;$/;" f -export ./Mi_Lua/luci/dispatcher.lua /^ export = function(k, v) if tpl.context.viewns[k] == nil then tpl.context.viewns[k] = v end end;$/;" f -f.try ./Me_Lua/h10/socket/ftp.lua /^ f.try = socket.newtry(function() f:close() end)$/;" f -f.try ./Me_Lua/h13/socket/ftp.lua /^ f.try = socket.newtry(function() f:close() end)$/;" f -f.try ./Mi_Lua/socket/ftp.lua /^ f.try = socket.newtry(function() f:close() end)$/;" f -facInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function facInfo()$/;" f -factory_reset ./Me_Lua/h10/meizu/bfs.lua /^function factory_reset()$/;" f -factory_reset ./Me_Lua/h13/meizu/bfs.lua /^function factory_reset()$/;" f -fetchAllBatchFile ./Me_Lua/h10/meizu/dbfs.lua /^function fetchAllBatchFile(IMEI)$/;" f -fetchAllBleMeshDevice ./Me_Lua/h10/meizu/dbfs.lua /^function fetchAllBleMeshDevice()$/;" f -fetchAllBleMeshDevice ./Me_Lua/h13/meizu/dbfs.lua /^function fetchAllBleMeshDevice()$/;" f -fetchAllBluetoothDevice ./Me_Lua/h10/meizu/dbfs.lua /^function fetchAllBluetoothDevice()$/;" f -fetchAllBluetoothDevice ./Me_Lua/h13/meizu/dbfs.lua /^function fetchAllBluetoothDevice()$/;" f -fetchAllDeviceInfo ./Me_Lua/h10/meizu/dbfs.lua /^function fetchAllDeviceInfo()$/;" f -fetchAllDeviceInfo ./Me_Lua/h13/meizu/dbfs.lua /^function fetchAllDeviceInfo()$/;" f -fetchAllDeviceInfo ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function fetchAllDeviceInfo()$/;" f -fetchAllFilesIndex ./Me_Lua/h10/meizu/dbfs.lua /^function fetchAllFilesIndex(ID, path)$/;" f -fetchAllFilesList ./Me_Lua/h10/meizu/dbfs.lua /^function fetchAllFilesList(ID, start, fetchEnd, path)$/;" f -fetchAllPassport ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function fetchAllPassport()$/;" f -fetchAllUserInfo ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function fetchAllUserInfo()$/;" f -fetchBatchFileEndFlag ./Me_Lua/h10/meizu/dbfs.lua /^function fetchBatchFileEndFlag(flag, IMEI)$/;" f -fetchBluetoothDevice ./Me_Lua/h10/meizu/dbfs.lua /^function fetchBluetoothDevice(mac)$/;" f -fetchBluetoothDevice ./Me_Lua/h13/meizu/dbfs.lua /^function fetchBluetoothDevice(mac)$/;" f -fetchBluetoothDeviceKey ./Me_Lua/h10/meizu/dbfs.lua /^function fetchBluetoothDeviceKey()$/;" f -fetchBluetoothDeviceKey ./Me_Lua/h13/meizu/dbfs.lua /^function fetchBluetoothDeviceKey()$/;" f -fetchDenyDeviceInfo ./Me_Lua/h10/meizu/dbfs.lua /^function fetchDenyDeviceInfo(mac)$/;" f -fetchDenyDeviceInfo ./Me_Lua/h13/meizu/dbfs.lua /^function fetchDenyDeviceInfo(mac)$/;" f -fetchDeviceInfo ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function fetchDeviceInfo(mac)$/;" f -fetchPassport ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function fetchPassport(uuid)$/;" f -fetchSmbBanList ./Me_Lua/h10/meizu/dbfs.lua /^function fetchSmbBanList()$/;" f -fetchUserInfo ./Mi_Lua/xiaoqiang/util/XQDBUtil.lua /^function fetchUserInfo(uuid)$/;" f -fetch_access_token ./Me_Lua/h10/meizu/dbfs.lua /^function fetch_access_token()$/;" f -fetch_access_token ./Me_Lua/h13/meizu/dbfs.lua /^function fetch_access_token()$/;" f -fetch_all_arp ./Me_Lua/h13/meizu/dbfs.lua /^function fetch_all_arp()$/;" f -fetch_all_deny_mac ./Me_Lua/h13/meizu/dbfs.lua /^function fetch_all_deny_mac()$/;" f -fetch_all_wire_device ./Me_Lua/h10/meizu/dbfs.lua /^function fetch_all_wire_device()$/;" f -fetch_all_wireless_device ./Me_Lua/h10/meizu/dbfs.lua /^function fetch_all_wireless_device()$/;" f -fetch_arp ./Me_Lua/h13/meizu/dbfs.lua /^function fetch_arp(mac)$/;" f -fetch_arp_mac ./Me_Lua/h10/meizu/dbfs.lua /^function fetch_arp_mac(mac)$/;" f -fetch_ssid ./Me_Lua/h13/meizu/dbfs.lua /^function fetch_ssid()$/;" f -fetch_wire_device_mac ./Me_Lua/h10/meizu/dbfs.lua /^function fetch_wire_device_mac(mac)$/;" f -fetch_wireless_device_mac ./Me_Lua/h10/meizu/dbfs.lua /^function fetch_wireless_device_mac(mac)$/;" f -file ./Mi_Lua/luci/cbi/datatypes.lua /^function file( val, seen )$/;" f -filter.chain ./Me_Lua/h10/ltn12.lua /^function filter.chain(...)$/;" f -filter.chain ./Me_Lua/h13/ltn12.lua /^function filter.chain(...)$/;" f -filter.chain ./Mi_Lua/ltn12.lua /^function filter.chain(...)$/;" f -filter.chain ./Mi_Lua/luci/ltn12.lua /^function filter.chain(...)$/;" f -filter.cycle ./Me_Lua/h10/ltn12.lua /^function filter.cycle(low, ctx, extra)$/;" f -filter.cycle ./Me_Lua/h13/ltn12.lua /^function filter.cycle(low, ctx, extra)$/;" f -filter.cycle ./Mi_Lua/ltn12.lua /^function filter.cycle(low, ctx, extra)$/;" f -filter.cycle ./Mi_Lua/luci/ltn12.lua /^function filter.cycle(low, ctx, extra)$/;" f -find ./Mi_Lua/luci/model/ipkg.lua /^function find(pat, cb)$/;" f -findAttribute ./Mi_Lua/slaxml.lua /^ local function findAttribute()$/;" f -findCDATA ./Mi_Lua/slaxml.lua /^ local function findCDATA()$/;" f -findComment ./Mi_Lua/slaxml.lua /^ local function findComment()$/;" f -findElementClose ./Mi_Lua/slaxml.lua /^ local function findElementClose()$/;" f -findInDir ./Me_Lua/h10/meizu/bfs.lua /^function findInDir(rootpath, wefind, hashCode, md5sum, IMEI)$/;" f -findPI ./Mi_Lua/slaxml.lua /^ local function findPI()$/;" f -find_match ./Mi_Lua/xssFilter.lua /^local function find_match(value, patterns)$/;" f -finishText ./Mi_Lua/slaxml.lua /^ local function finishText()$/;" f -firewall_find_zone ./Mi_Lua/luci/tools/webadmin.lua /^function firewall_find_zone(name)$/;" f -firstchild ./Me_Lua/h10/luci/dispatcher.lua /^function firstchild()$/;" f -firstchild ./Me_Lua/h13/luci/dispatcher.lua /^function firstchild()$/;" f -firstchild ./Mi_Lua/luci/dispatcher.lua /^function firstchild()$/;" f -flashRom ./Mi_Lua/luci/controller/api/xqsystem.lua /^function flashRom()$/;" f -flashStatus ./Mi_Lua/luci/controller/api/xqsystem.lua /^function flashStatus()$/;" f -float ./Mi_Lua/luci/cbi/datatypes.lua /^function float(val)$/;" f -fmt_icmp_type ./Mi_Lua/luci/tools/firewall.lua /^function fmt_icmp_type(x)$/;" f -fmt_ip ./Mi_Lua/luci/tools/firewall.lua /^function fmt_ip(x, d)$/;" f -fmt_limit ./Mi_Lua/luci/tools/firewall.lua /^function fmt_limit(limit, burst)$/;" f -fmt_mac ./Mi_Lua/luci/tools/firewall.lua /^function fmt_mac(x)$/;" f -fmt_neg ./Mi_Lua/luci/tools/firewall.lua /^function fmt_neg(x)$/;" f -fmt_port ./Mi_Lua/luci/tools/firewall.lua /^function fmt_port(x, d)$/;" f -fmt_proto ./Mi_Lua/luci/tools/firewall.lua /^function fmt_proto(x, icmp_types)$/;" f -fmt_target ./Mi_Lua/luci/tools/firewall.lua /^function fmt_target(x, dest)$/;" f -fmt_zone ./Mi_Lua/luci/tools/firewall.lua /^function fmt_zone(x, d)$/;" f -forkExec ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkExec(command)$/;" f -forkFlashRomFile ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkFlashRomFile(filePath)$/;" f -forkReboot ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkReboot()$/;" f -forkResetAll ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkResetAll()$/;" f -forkRestartDnsmasq ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkRestartDnsmasq()$/;" f -forkRestartWifi ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkRestartWifi()$/;" f -forkShutdown ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkShutdown()$/;" f -forkShutdownAndRebootWithDelay ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function forkShutdownAndRebootWithDelay(m1, m2)$/;" f -fork_restart_network ./Me_Lua/h10/meizu/nwfs.lua /^function fork_restart_network()$/;" f -fork_restart_network ./Me_Lua/h13/meizu/nwfs.lua /^function fork_restart_network()$/;" f -fork_restart_wifi ./Me_Lua/h10/meizu/nwfs.lua /^function fork_restart_wifi()$/;" f -fork_restart_wifi ./Me_Lua/h13/meizu/nwfs.lua /^function fork_restart_wifi()$/;" f -fork_smart_wifi_shutdown ./Me_Lua/h13/meizu/nwfs.lua /^function fork_smart_wifi_shutdown(wnet, close_time, open_time)$/;" f -form ./Me_Lua/h10/luci/dispatcher.lua /^function form(model)$/;" f -form ./Me_Lua/h13/luci/dispatcher.lua /^function form(model)$/;" f -format ./Me_Lua/h10/mime.lua /^local function format(chunk)$/;" f -format ./Me_Lua/h13/mime.lua /^local function format(chunk)$/;" f -format ./Mi_Lua/mime.lua /^local function format(chunk)$/;" f -formatTime ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function formatTime(str){$/;" f -formvalue ./Mi_Lua/luci/http.lua /^function formvalue(name, noparse)$/;" f -formvaluetable ./Mi_Lua/luci/http.lua /^function formvaluetable(prefix)$/;" f -forward_proto_txt ./Mi_Lua/luci/model/cbi/firewall/forwards.lua /^local function forward_proto_txt(self, s)$/;" f -forward_src_txt ./Mi_Lua/luci/model/cbi/firewall/forwards.lua /^local function forward_src_txt(self, s)$/;" f -forward_via_txt ./Mi_Lua/luci/model/cbi/firewall/forwards.lua /^local function forward_via_txt(self, s)$/;" f -forwarding.__init__ ./Mi_Lua/luci/model/firewall.lua /^function forwarding.__init__(self, f)$/;" f -forwarding.dest ./Mi_Lua/luci/model/firewall.lua /^function forwarding.dest(self)$/;" f -forwarding.dest_zone ./Mi_Lua/luci/model/firewall.lua /^function forwarding.dest_zone(self)$/;" f -forwarding.src ./Mi_Lua/luci/model/firewall.lua /^function forwarding.src(self)$/;" f -forwarding.src_zone ./Mi_Lua/luci/model/firewall.lua /^function forwarding.src_zone(self)$/;" f -from_hex ./Mi_Lua/sha1.lua /^local function from_hex(hex)$/;" f -function(p) parsed.password ./Me_Lua/h10/socket/url.lua /^ function(p) parsed.password = p; return "" end)$/;" f -function(p) parsed.password ./Me_Lua/h13/socket/url.lua /^ function(p) parsed.password = p; return "" end)$/;" f -function(p) parsed.password ./Mi_Lua/socket/url.lua /^ function(p) parsed.password = p; return "" end)$/;" f -function(p) parsed.port ./Me_Lua/h10/socket/url.lua /^ function(p) parsed.port = p; return "" end)$/;" f -function(p) parsed.port ./Me_Lua/h13/socket/url.lua /^ function(p) parsed.port = p; return "" end)$/;" f -function(p) parsed.port ./Mi_Lua/socket/url.lua /^ function(p) parsed.port = p; return "" end)$/;" f -function(s) parsed.scheme ./Me_Lua/h10/socket/url.lua /^ function(s) parsed.scheme = s; return "" end)$/;" f -function(s) parsed.scheme ./Me_Lua/h13/socket/url.lua /^ function(s) parsed.scheme = s; return "" end)$/;" f -function(s) parsed.scheme ./Mi_Lua/socket/url.lua /^ function(s) parsed.scheme = s; return "" end)$/;" f -function(s) return (s.interface ./Me_Lua/h10/luci/model/network.lua /^ function(s) return (s.interface == n) end)$/;" f -function(s) return (s.interface ./Me_Lua/h13/luci/model/network.lua /^ function(s) return (s.interface == n) end)$/;" f -function(s) return (s.interface ./Mi_Lua/luci/model/network.lua /^ function(s) return (s.interface == n) end)$/;" f -function(s) wfd[#wfd+1] ./Me_Lua/h10/luci/model/network.lua /^ function(s) wfd[#wfd+1] = s['.name'] end)$/;" f -function(s) wfd[#wfd+1] ./Me_Lua/h13/luci/model/network.lua /^ function(s) wfd[#wfd+1] = s['.name'] end)$/;" f -function(s) wfd[#wfd+1] ./Mi_Lua/luci/model/network.lua /^ function(s) wfd[#wfd+1] = s['.name'] end)$/;" f -function(u) parsed.userinfo ./Me_Lua/h10/socket/url.lua /^ function(u) parsed.userinfo = u; return "" end)$/;" f -function(u) parsed.userinfo ./Me_Lua/h13/socket/url.lua /^ function(u) parsed.userinfo = u; return "" end)$/;" f -function(u) parsed.userinfo ./Mi_Lua/socket/url.lua /^ function(u) parsed.userinfo = u; return "" end)$/;" f -genAuthToken ./Me_Lua/h10/luci/sauth.lua /^function genAuthToken()$/;" f -genAuthToken ./Me_Lua/h13/luci/sauth.lua /^function genAuthToken()$/;" f -gen_check_fw_url_pd ./Me_Lua/h10/meizu/upgdfs.lua /^function gen_check_fw_url_pd()$/;" f -gen_check_fw_url_pd ./Me_Lua/h13/meizu/upgdfs.lua /^function gen_check_fw_url_pd()$/;" f -generateDns ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function generateDns(dns1, dns2, peerdns)$/;" f -generateMixed ./Mi_Lua/luci/view/web/setting/wifi_set.htm /^ function generateMixed(n) {$/;" f -generateOrigIconUrl ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function generateOrigIconUrl(iconUrl)$/;" f -generateRedirectKey ./Mi_Lua/xiaoqiang/util/XQSecureUtil.lua /^function generateRedirectKey(type)$/;" f -generateResponseFromCode ./Mi_Lua/luci/controller/service/datacenter.lua /^function generateResponseFromCode(code)$/;" f -generateSignature ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function generateSignature(method,url,params,security)$/;" f -generateUrlFromPath ./Mi_Lua/luci/controller/service/datacenter.lua /^function generateUrlFromPath(path)$/;" f -get ./Me_Lua/h10/luci/dispatcher.lua /^function get(...)$/;" f -get ./Me_Lua/h13/luci/dispatcher.lua /^function get(...)$/;" f -get ./Mi_Lua/luci/dispatcher.lua /^function get(...)$/;" f -get ./Mi_Lua/xiaoqiang/XQPreference.lua /^function get(key, defaultValue, config) $/;" f -get ./Mi_Lua/socket/ftp.lua /^get = socket.protect(function(gett)$/;" f -getAdminList ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getAdminList(uuid)$/;" f -getAll ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getAll(did)$/;" f -getAllInfo ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getAllInfo()$/;" f -getAllWifiConnetDeviceDict ./Me_Lua/h10/meizu/nwfs.lua /^function getAllWifiConnetDeviceDict()$/;" f -getAllWifiConnetDeviceDict ./Me_Lua/h13/meizu/nwfs.lua /^function getAllWifiConnetDeviceDict()$/;" f -getAllWifiConnetDeviceDict ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getAllWifiConnetDeviceDict()$/;" f -getAllWifiConnetDeviceList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getAllWifiConnetDeviceList()$/;" f -getAllWifiInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getAllWifiInfo()$/;" f -getAllWifiInfo ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getAllWifiInfo()$/;" f -getAntsCams ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getAntsCams()$/;" f -getAutoWanType ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getAutoWanType()$/;" f -getAutoWanType ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getAutoWanType()$/;" f -getAvailableDisk ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getAvailableDisk()$/;" f -getAvailableMemery ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getAvailableMemery()$/;" f -getBandList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getBandList(channel)$/;" f -getBandwidth ./Mi_Lua/luci/view/web/setting/qos_pro.htm /^ function getBandwidth( type ){$/;" f -getBasicInfo ./Me_Lua/h10/routerReport.lua /^function getBasicInfo()$/;" f -getBasicInfo ./Me_Lua/h13/routerReport.lua /^function getBasicInfo()$/;" f -getBatchDownloadInfo ./Mi_Lua/luci/controller/service/datacenter.lua /^function getBatchDownloadInfo()$/;" f -getBindInfo ./Mi_Lua/luci/controller/api/xqpassport.lua /^function getBindInfo()$/;" f -getBindUUID ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getBindUUID()$/;" f -getBindUserInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getBindUserInfo()$/;" f -getBleDeviceNameLength ./Me_Lua/h10/meizu/dbfs.lua /^function getBleDeviceNameLength(id)$/;" f -getBleDeviceNameLength ./Me_Lua/h13/meizu/dbfs.lua /^function getBleDeviceNameLength(id)$/;" f -getBleTimerId ./Me_Lua/h10/meizu/dbfs.lua /^function getBleTimerId(id, timer_id)$/;" f -getBluetoothDevice ./Me_Lua/h10/meizu/dbfs.lua /^function getBluetoothDevice(id)$/;" f -getBluetoothDevice ./Me_Lua/h13/meizu/dbfs.lua /^function getBluetoothDevice(id)$/;" f -getCFEVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getCFEVersion()$/;" f -getCache ./Mi_Lua/xiaoqiang/util/XQCacheUtil.lua /^function getCache(key)$/;" f -getChangeLog ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getChangeLog()$/;" f -getChannel ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getChannel()$/;" f -getChannels ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getChannels()$/;" f -getChannels ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getChannels(wifiIndex)$/;" f -getConDevCount ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getConDevCount()$/;" f -getConDevices ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getConDevices(withbrlan)$/;" f -getConfig ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getConfig(did)$/;" f -getConfigFile ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getConfigFile(configfile)$/;" f -getConfigInfo ./Mi_Lua/luci/controller/service/datacenter.lua /^function getConfigInfo()$/;" f -getConfigInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getConfigInfo()$/;" f -getConnectDeviceCount ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getConnectDeviceCount()$/;" f -getConnectDeviceList ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getConnectDeviceList()$/;" f -getCountryCodeList ./Mi_Lua/xiaoqiang/XQCountryCode.lua /^function getCountryCodeList()$/;" f -getCpuTemperature ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getCpuTemperature()$/;" f -getCurrentCountryCode ./Mi_Lua/xiaoqiang/XQCountryCode.lua /^function getCurrentCountryCode()$/;" f -getCurrentDisk ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getCurrentDisk()$/;" f -getCurrentPID ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getCurrentPID()$/;" f -getDDNS ./Mi_Lua/luci/view/web/setting/ddns.htm /^ function getDDNS(){$/;" f -getDHCPDict ./Me_Lua/h10/meizu/nwfs.lua /^function getDHCPDict()$/;" f -getDHCPDict ./Me_Lua/h13/meizu/nwfs.lua /^function getDHCPDict()$/;" f -getDHCPDict ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDHCPDict()$/;" f -getDHCPIpDict ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDHCPIpDict()$/;" f -getDHCPIpDicts ./Me_Lua/h10/meizu/nwfs.lua /^function getDHCPIpDicts()$/;" f -getDHCPIpDicts ./Me_Lua/h13/meizu/nwfs.lua /^function getDHCPIpDicts()$/;" f -getDHCPList ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDHCPList()$/;" f -getDHCPLists ./Me_Lua/h10/meizu/nwfs.lua /^function getDHCPLists()$/;" f -getDHCPLists ./Me_Lua/h13/meizu/nwfs.lua /^function getDHCPLists()$/;" f -getDMZInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getDMZInfo()$/;" f -getDMZInfo ./Mi_Lua/xiaoqiang/module/XQDMZModule.lua /^function getDMZInfo()$/;" f -getDay ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getDay(days)$/;" f -getDdns ./Mi_Lua/xiaoqiang/module/XQDDNS.lua /^function getDdns(id)$/;" f -getDefaultMacAddress ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getDefaultMacAddress()$/;" f -getDefaultWifiChannels ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getDefaultWifiChannels(wifiIndex)$/;" f -getDetectionTimestamp ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getDetectionTimestamp()$/;" f -getDetectionTimestamp ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getDetectionTimestamp()$/;" f -getDevNetStatisticsDict ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDevNetStatisticsDict()$/;" f -getDevNetStatisticsList ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDevNetStatisticsList()$/;" f -getDevStatistics ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getDevStatistics()$/;" f -getDeviceCompany ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDeviceCompany(mac)$/;" f -getDeviceID ./Mi_Lua/luci/controller/service/datacenter.lua /^function getDeviceID()$/;" f -getDeviceId ./Mi_Lua/luci/controller/api/xqdatacenter.lua /^function getDeviceId()$/;" f -getDeviceId ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getDeviceId()$/;" f -getDeviceInfoFromDB ./Me_Lua/h10/meizu/nwfs.lua /^function getDeviceInfoFromDB()$/;" f -getDeviceInfoFromDB ./Me_Lua/h13/meizu/nwfs.lua /^function getDeviceInfoFromDB()$/;" f -getDeviceInfoFromDB ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getDeviceInfoFromDB()$/;" f -getDeviceList ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getDeviceList()$/;" f -getDeviceListZigbee ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getDeviceListZigbee()$/;" f -getDeviceMacaddr ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getDeviceMacaddr()$/;" f -getDeviceWifiIndex ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getDeviceWifiIndex(mac)$/;" f -getDevsStatistics ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getDevsStatistics()$/;" f -getDiskSpace ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getDiskSpace()$/;" f -getDownloadInfo ./Mi_Lua/luci/controller/service/datacenter.lua /^function getDownloadInfo()$/;" f -getErrorMessage ./Mi_Lua/service/util/ServiceErrorUtil.lua /^function getErrorMessage(errorCode)$/;" f -getErrorMessage ./Mi_Lua/xiaoqiang/util/XQErrorUtil.lua /^function getErrorMessage(errorCode)$/;" f -getFacInfo ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getFacInfo()$/;" f -getFilesList ./Me_Lua/h10/meizu/bfs.lua /^function getFilesList()$/;" f -getFilesOnCam ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getFilesOnCam(item,afterDay)$/;" f -getFilesOnRouter ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getFilesOnRouter()$/;" f -getFlashStatus ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getFlashStatus()$/;" f -getGpioValue ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function getGpioValue(digit)$/;" f -getGuestWifi ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getGuestWifi(wifiIndex)$/;" f -getHardware ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getHardware()$/;" f -getHardwareGPIO ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getHardwareGPIO()$/;" f -getHardwareVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getHardwareVersion()$/;" f -getIPv6Addrs ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getIPv6Addrs()$/;" f -getInitInfo ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getInitInfo()$/;" f -getInitInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getInitInfo()$/;" f -getKPLoginedUserInfo ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function getKPLoginedUserInfo() {$/;" f -getKPStatus ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function getKPStatus() {$/;" f -getKernelVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getKernelVersion()$/;" f -getLanDHCPService ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getLanDHCPService()$/;" f -getLanDhcp ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getLanDhcp()$/;" f -getLanInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getLanInfo()$/;" f -getLanIp ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getLanIp()$/;" f -getLanLinkList ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getLanLinkList()$/;" f -getLanWanInfo ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getLanWanInfo(interface)$/;" f -getLanWanIp ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getLanWanIp(interface)$/;" f -getLanWanSta ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getLanWanSta()$/;" f -getLang ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getLang()$/;" f -getLangList ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getLangList()$/;" f -getLangList ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getLangList()$/;" f -getMac ./Mi_Lua/luci/controller/service/datacenter.lua /^function getMac()$/;" f -getMacAddr ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getMacAddr()$/;" f -getMacBindInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getMacBindInfo()$/;" f -getMacfilterInfoDict ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getMacfilterInfoDict()$/;" f -getMacfilterInfoList ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getMacfilterInfoList()$/;" f -getMacfilterList ./Me_Lua/h10/meizu/nwfs.lua /^function getMacfilterList(mode)$/;" f -getMacfilterMode ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getMacfilterMode()$/;" f -getMacfilterMode ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getMacfilterMode(filter)$/;" f -getMainLang ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getMainLang()$/;" f -getMiscHardwareInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getMiscHardwareInfo()$/;" f -getModel ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getModel()$/;" f -getModulesList ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getModulesList()$/;" f -getNetConnect ./Me_Lua/h10/meizu/nwfs.lua /^function getNetConnect(ip)$/;" f -getNetConnect ./Me_Lua/h13/meizu/nwfs.lua /^function getNetConnect(ip)$/;" f -getNetMode ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function getNetMode()$/;" f -getNetworkDetectInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getNetworkDetectInfo(simple,target)$/;" f -getNextKpStatus ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function getNextKpStatus() {$/;" f -getNofStatus ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getNofStatus()$/;" f -getNvramConfigs ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getNvramConfigs()$/;" f -getOperateDeviceID ./Mi_Lua/luci/controller/service/datacenter.lua /^function getOperateDeviceID()$/;" f -getPPPoEStatus ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getPPPoEStatus()$/;" f -getPassport ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getPassport(uuid)$/;" f -getPassportBindInfo ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getPassportBindInfo()$/;" f -getPassportBindInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getPassportBindInfo()$/;" f -getQosInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getQosInfo()$/;" f -getRamFsVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getRamFsVersion()$/;" f -getRomVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getRomVersion()$/;" f -getRootFsVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getRootFsVersion()$/;" f -getRouterInfo ./Mi_Lua/luci/controller/service/datacenter.lua /^function getRouterInfo()$/;" f -getRouterName ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getRouterName()$/;" f -getRouterName ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getRouterName()$/;" f -getRouterNamePending ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getRouterNamePending()$/;" f -getSN ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getSN()$/;" f -getServer ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getServer()$/;" f -getSqaFsVersion ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getSqaFsVersion()$/;" f -getStatus ./Mi_Lua/luci/view/web/plugin.htm /^ function getStatus(){$/;" f -getStatusInfo ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getStatusInfo()$/;" f -getSysAvgLoad ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getSysAvgLoad()$/;" f -getSysInfo ./Mi_Lua/luci/controller/api/xqnetdetect.lua /^function getSysInfo()$/;" f -getSysInfo ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getSysInfo()$/;" f -getSysInfo ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getSysInfo()$/;" f -getSysUptime ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getSysUptime()$/;" f -getThumb ./Mi_Lua/luci/controller/api/xqdatacenter.lua /^function getThumb()$/;" f -getTime ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function getTime()$/;" f -getToken ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getToken()$/;" f -getToken ./Mi_Lua/luci/view/mobile/init/hello.htm /^ function getToken( url ) {$/;" f -getToken ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getToken()$/;" f -getUPnPList ./Mi_Lua/xiaoqiang/util/XQUPnPUtil.lua /^function getUPnPList()$/;" f -getUPnPStatus ./Mi_Lua/xiaoqiang/util/XQUPnPUtil.lua /^function getUPnPStatus()$/;" f -getUid ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function getUid(did)$/;" f -getUpgradeStatus ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getUpgradeStatus()$/;" f -getUserAgent ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getUserAgent()$/;" f -getUserDeviceList ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getUserDeviceList(uuid)$/;" f -getUserInfo ./Mi_Lua/luci/controller/api/xqpassport.lua /^function getUserInfo()$/;" f -getUserInfo ./Mi_Lua/xiaoqiang/util/XQNetUtil.lua /^function getUserInfo(uuid)$/;" f -getVPNInfo ./Mi_Lua/xiaoqiang/util/XQVPNUtil.lua /^function getVPNInfo(interface)$/;" f -getWanDetails ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getWanDetails()$/;" f -getWanEth ./Me_Lua/h10/meizu/nwfs.lua /^function getWanEth()$/;" f -getWanEth ./Me_Lua/h13/meizu/nwfs.lua /^function getWanEth()$/;" f -getWanEth ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getWanEth()$/;" f -getWanInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWanInfo()$/;" f -getWanLanNetworkStatistics ./Mi_Lua/xiaoqiang/util/XQDeviceUtil.lua /^function getWanLanNetworkStatistics(devName)$/;" f -getWanMac ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getWanMac()$/;" f -getWanMonitorStat ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function getWanMonitorStat()$/;" f -getWanStatistics ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWanStatistics()$/;" f -getWanStatus ./Mi_Lua/luci/controller/api/xqnetdetect.lua /^function getWanStatus()$/;" f -getWiFiMacfilterInfo ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWiFiMacfilterInfo(model)$/;" f -getWiFiMacfilterList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWiFiMacfilterList(model)$/;" f -getWifiBridgedClient ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiBridgedClient(wifiIndex)$/;" f -getWifiChTx ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWifiChTx()$/;" f -getWifiChannel ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiChannel(wifiIndex)$/;" f -getWifiChannelList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiChannelList()$/;" f -getWifiChannelTxpwrList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiChannelTxpwrList()$/;" f -getWifiConDev ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWifiConDev()$/;" f -getWifiConnectDeviceDict ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiConnectDeviceDict(wifiIndex)$/;" f -getWifiConnectDeviceList ./Me_Lua/h10/meizu/nwfs.lua /^function getWifiConnectDeviceList(wifiIndex)$/;" f -getWifiConnectDeviceList ./Me_Lua/h13/meizu/nwfs.lua /^function getWifiConnectDeviceList(wifiIndex)$/;" f -getWifiConnectDeviceList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiConnectDeviceList(wifiIndex)$/;" f -getWifiDeviceSignalDict ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiDeviceSignalDict(wifiIndex)$/;" f -getWifiInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWifiInfo()$/;" f -getWifiLog ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getWifiLog()$/;" f -getWifiLog ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function getWifiLog()$/;" f -getWifiMacfilterInfo ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWifiMacfilterInfo()$/;" f -getWifiNames ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiNames()$/;" f -getWifiScanList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiScanList()$/;" f -getWifiSettings ./Me_Lua/h10/luci/controller/admin/network.lua /^function getWifiSettings()$/;" f -getWifiSettings ./Me_Lua/h13/luci/controller/admin/network.lua /^function getWifiSettings()$/;" f -getWifiStatus ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function getWifiStatus()$/;" f -getWifiStatus ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiStatus(wifiIndex)$/;" f -getWifiTxpwr ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiTxpwr(wifiIndex)$/;" f -getWifiTxpwrList ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiTxpwrList()$/;" f -getWifiWorkChannel ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiWorkChannel(wifiIndex)$/;" f -getWifiWpsStatus ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWifiWpsStatus()$/;" f -getWpsConDevMac ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function getWpsConDevMac()$/;" f -getWpsStatus ./Mi_Lua/luci/controller/api/xqsystem.lua /^function getWpsStatus()$/;" f -get_active_list ./Me_Lua/h10/meizu/dlfs.lua /^function get_active_list(start, refine_cnt)$/;" f -get_available_disk ./Me_Lua/h10/meizu/disk.lua /^function get_available_disk()$/;" f -get_ble_device_key ./Me_Lua/h10/meizu/btfs.lua /^function get_ble_device_key()$/;" f -get_ble_device_key ./Me_Lua/h13/meizu/nwfs.lua /^function get_ble_device_key()$/;" f -get_ble_device_list ./Me_Lua/h10/meizu/btfs.lua /^function get_ble_device_list()$/;" f -get_ble_device_list ./Me_Lua/h13/meizu/nwfs.lua /^function get_ble_device_list()$/;" f -get_ble_device_status ./Me_Lua/h10/meizu/btfs.lua /^function get_ble_device_status(mac)$/;" f -get_ble_device_status ./Me_Lua/h13/meizu/nwfs.lua /^function get_ble_device_status(mac)$/;" f -get_bluetooth_info ./Me_Lua/h13/meizu/nwfs.lua /^function get_bluetooth_info()$/;" f -get_bytecode ./Mi_Lua/luci/util.lua /^function get_bytecode(val)$/;" f -get_connect_device_list ./Me_Lua/h10/meizu/nwfs.lua /^function get_connect_device_list()$/;" f -get_connect_device_list ./Me_Lua/h13/meizu/nwfs.lua /^function get_connect_device_list()$/;" f -get_connect_device_list_router ./Me_Lua/h13/meizu/nwfs.lua /^function get_connect_device_list_router()$/;" f -get_connect_info ./Me_Lua/h10/meizu/nwfs.lua /^function get_connect_info()$/;" f -get_defaults ./Mi_Lua/luci/model/firewall.lua /^function get_defaults()$/;" f -get_dev_nick_name ./Me_Lua/h10/meizu/dbfs.lua /^function get_dev_nick_name(mac)$/;" f -get_dev_nick_name ./Me_Lua/h13/meizu/dbfs.lua /^function get_dev_nick_name(mac)$/;" f -get_device_SN ./Me_Lua/h10/meizu/bfs.lua /^function get_device_SN()$/;" f -get_device_SN ./Me_Lua/h13/meizu/bfs.lua /^function get_device_SN()$/;" f -get_device_details ./Me_Lua/h10/meizu/nwfs.lua /^function get_device_details(mac)$/;" f -get_device_details ./Me_Lua/h13/meizu/nwfs.lua /^function get_device_details(mac)$/;" f -get_device_details_duration ./Me_Lua/h10/meizu/nwfs.lua /^function get_device_details_duration(mac)$/;" f -get_device_details_rx ./Me_Lua/h10/meizu/nwfs.lua /^function get_device_details_rx(mac)$/;" f -get_device_details_tx ./Me_Lua/h10/meizu/nwfs.lua /^function get_device_details_tx(mac)$/;" f -get_device_version ./Me_Lua/h10/meizu/bfs.lua /^function get_device_version()$/;" f -get_device_version ./Me_Lua/h13/meizu/bfs.lua /^function get_device_version()$/;" f -get_disk_space ./Me_Lua/h10/meizu/disk.lua /^function get_disk_space()$/;" f -get_files_list ./Me_Lua/h10/meizu/bfs.lua /^function get_files_list(path, start, count, ID)$/;" f -get_guest_wifi ./Me_Lua/h10/meizu/nwfs.lua /^function get_guest_wifi(wifiIndex)$/;" f -get_history_list ./Me_Lua/h10/meizu/dlfs.lua /^function get_history_list(start, refine_cnt)$/;" f -get_hostname ./Mi_Lua/traffic.lua /^function get_hostname(mac)$/;" f -get_hostname_init ./Mi_Lua/traffic.lua /^function get_hostname_init()$/;" f -get_https_data ./Me_Lua/h10/meizu/bfs.lua /^function get_https_data(url, data)$/;" f -get_https_data ./Me_Lua/h13/meizu/bfs.lua /^function get_https_data(url, data)$/;" f -get_info_imp ./Me_Lua/h10/meizu/disk.lua /^function get_info_imp()$/;" f -get_interface ./Me_Lua/h10/luci/model/network.lua /^function get_interface(self, i)$/;" f -get_interface ./Me_Lua/h13/luci/model/network.lua /^function get_interface(self, i)$/;" f -get_interface ./Mi_Lua/luci/model/network.lua /^function get_interface(self, i)$/;" f -get_interfaces ./Me_Lua/h10/luci/model/network.lua /^function get_interfaces(self)$/;" f -get_interfaces ./Me_Lua/h13/luci/model/network.lua /^function get_interfaces(self)$/;" f -get_interfaces ./Mi_Lua/luci/model/network.lua /^function get_interfaces(self)$/;" f -get_lan_dev_name ./Mi_Lua/traffic.lua /^function get_lan_dev_name()$/;" f -get_lan_ip ./Me_Lua/h10/meizu/nwfs.lua /^function get_lan_ip()$/;" f -get_lan_ip ./Me_Lua/h13/meizu/nwfs.lua /^function get_lan_ip()$/;" f -get_mesh_device_list ./Me_Lua/h10/meizu/btfs.lua /^function get_mesh_device_list()$/;" f -get_mesh_device_list ./Me_Lua/h13/meizu/nwfs.lua /^function get_mesh_device_list()$/;" f -get_net_device ./Me_Lua/h10/meizu/nwfs.lua /^function get_net_device()$/;" f -get_net_device ./Me_Lua/h13/meizu/nwfs.lua /^function get_net_device()$/;" f -get_network ./Me_Lua/h10/luci/model/network.lua /^function get_network(self, n)$/;" f -get_network ./Me_Lua/h13/luci/model/network.lua /^function get_network(self, n)$/;" f -get_network ./Mi_Lua/luci/model/network.lua /^function get_network(self, n)$/;" f -get_networks ./Me_Lua/h10/luci/model/network.lua /^function get_networks(self)$/;" f -get_networks ./Me_Lua/h13/luci/model/network.lua /^function get_networks(self)$/;" f -get_networks ./Mi_Lua/luci/model/network.lua /^function get_networks(self)$/;" f -get_pause_list ./Me_Lua/h10/meizu/dlfs.lua /^function get_pause_list()$/;" f -get_protocol ./Me_Lua/h10/luci/model/network.lua /^function get_protocol(self, protoname, netname)$/;" f -get_protocol ./Me_Lua/h13/luci/model/network.lua /^function get_protocol(self, protoname, netname)$/;" f -get_protocol ./Mi_Lua/luci/model/network.lua /^function get_protocol(self, protoname, netname)$/;" f -get_protocols ./Me_Lua/h10/luci/model/network.lua /^function get_protocols(self)$/;" f -get_protocols ./Me_Lua/h13/luci/model/network.lua /^function get_protocols(self)$/;" f -get_protocols ./Mi_Lua/luci/model/network.lua /^function get_protocols(self)$/;" f -get_reply ./Me_Lua/h10/socket/tp.lua /^local function get_reply(c)$/;" f -get_reply ./Me_Lua/h13/socket/tp.lua /^local function get_reply(c)$/;" f -get_reply ./Mi_Lua/socket/tp.lua /^local function get_reply(c)$/;" f -get_smb_switch ./Me_Lua/h10/meizu/nwfs.lua /^function get_smb_switch()$/;" f -get_status_by_address ./Me_Lua/h10/luci/model/network.lua /^function get_status_by_address(self, addr)$/;" f -get_status_by_address ./Me_Lua/h13/luci/model/network.lua /^function get_status_by_address(self, addr)$/;" f -get_status_by_address ./Mi_Lua/luci/model/network.lua /^function get_status_by_address(self, addr)$/;" f -get_status_by_route ./Me_Lua/h10/luci/model/network.lua /^function get_status_by_route(self, addr, mask)$/;" f -get_status_by_route ./Me_Lua/h13/luci/model/network.lua /^function get_status_by_route(self, addr, mask)$/;" f -get_status_by_route ./Mi_Lua/luci/model/network.lua /^function get_status_by_route(self, addr, mask)$/;" f -get_token ./Me_Lua/h10/luci/controller/bs/index.lua /^function get_token()$/;" f -get_tx_power_mode ./Me_Lua/h10/meizu/nwfs.lua /^function get_tx_power_mode(mode)$/;" f -get_user_access_token ./Me_Lua/h10/meizu/bfs.lua /^function get_user_access_token()$/;" f -get_user_access_token ./Me_Lua/h13/meizu/bfs.lua /^function get_user_access_token()$/;" f -get_wan6dev ./Me_Lua/h10/luci/model/network.lua /^function get_wan6dev(self)$/;" f -get_wan6dev ./Me_Lua/h13/luci/model/network.lua /^function get_wan6dev(self)$/;" f -get_wan6dev ./Mi_Lua/luci/model/network.lua /^function get_wan6dev(self)$/;" f -get_wan6net ./Me_Lua/h10/luci/model/network.lua /^function get_wan6net(self)$/;" f -get_wan6net ./Me_Lua/h13/luci/model/network.lua /^function get_wan6net(self)$/;" f -get_wan6net ./Mi_Lua/luci/model/network.lua /^function get_wan6net(self)$/;" f -get_wan_dev_name ./Mi_Lua/traffic.lua /^function get_wan_dev_name()$/;" f -get_wan_type ./Me_Lua/h10/meizu/nwfs.lua /^function get_wan_type()$/;" f -get_wan_type ./Me_Lua/h13/meizu/nwfs.lua /^function get_wan_type()$/;" f -get_wandev ./Me_Lua/h10/luci/model/network.lua /^function get_wandev(self)$/;" f -get_wandev ./Me_Lua/h13/luci/model/network.lua /^function get_wandev(self)$/;" f -get_wandev ./Mi_Lua/luci/model/network.lua /^function get_wandev(self)$/;" f -get_wannet ./Me_Lua/h10/luci/model/network.lua /^function get_wannet(self)$/;" f -get_wannet ./Me_Lua/h13/luci/model/network.lua /^function get_wannet(self)$/;" f -get_wannet ./Mi_Lua/luci/model/network.lua /^function get_wannet(self)$/;" f -get_wifi_settings ./Me_Lua/h10/meizu/nwfs.lua /^function get_wifi_settings(app_version)$/;" f -get_wifi_settings ./Me_Lua/h13/meizu/nwfs.lua /^function get_wifi_settings(app_version)$/;" f -get_wifi_ssids ./Me_Lua/h10/meizu/nwfs.lua /^function get_wifi_ssids()$/;" f -get_wifi_ssids ./Me_Lua/h13/meizu/nwfs.lua /^function get_wifi_ssids()$/;" f -get_wifidev ./Me_Lua/h10/luci/model/network.lua /^function get_wifidev(self, dev)$/;" f -get_wifidev ./Me_Lua/h13/luci/model/network.lua /^function get_wifidev(self, dev)$/;" f -get_wifidev ./Mi_Lua/luci/model/network.lua /^function get_wifidev(self, dev)$/;" f -get_wifidevs ./Me_Lua/h10/luci/model/network.lua /^function get_wifidevs(self)$/;" f -get_wifidevs ./Me_Lua/h13/luci/model/network.lua /^function get_wifidevs(self)$/;" f -get_wifidevs ./Mi_Lua/luci/model/network.lua /^function get_wifidevs(self)$/;" f -get_wifinet ./Me_Lua/h10/luci/model/network.lua /^function get_wifinet(self, net)$/;" f -get_wifinet ./Me_Lua/h13/luci/model/network.lua /^function get_wifinet(self, net)$/;" f -get_wifinet ./Mi_Lua/luci/model/network.lua /^function get_wifinet(self, net)$/;" f -get_wireless_channel ./Me_Lua/h10/meizu/nwfs.lua /^function get_wireless_channel()$/;" f -get_wireless_channel ./Me_Lua/h13/meizu/nwfs.lua /^function get_wireless_channel()$/;" f -get_zigbee_count ./Mi_Lua/xiaoqiang/util/XQZigbeeUtil.lua /^function get_zigbee_count()$/;" f -get_zone ./Mi_Lua/luci/model/firewall.lua /^function get_zone(self, n)$/;" f -get_zone_by_network ./Mi_Lua/luci/model/firewall.lua /^function get_zone_by_network(self, net)$/;" f -get_zones ./Mi_Lua/luci/model/firewall.lua /^function get_zones(self)$/;" f -getcookie ./Mi_Lua/luci/http.lua /^function getcookie(name)$/;" f -getenv ./Mi_Lua/luci/http.lua /^function getenv(name)$/;" f -getfd ./Me_Lua/h10/socket.lua /^ getfd = function() return sock:getfd() end,$/;" f -getfd ./Me_Lua/h10/socket/http.lua /^ getfd = function() return sock:getfd() end,$/;" f -getfd ./Me_Lua/h13/socket.lua /^ getfd = function() return sock:getfd() end,$/;" f -getfd ./Me_Lua/h13/socket/http.lua /^ getfd = function() return sock:getfd() end,$/;" f -getfd ./Mi_Lua/socket.lua /^ getfd = function() return sock:getfd() end,$/;" f -getfd ./Mi_Lua/socket/http.lua /^ getfd = function() return sock:getfd() end,$/;" f -getmetatable("").__mod ./Mi_Lua/luci/util.lua /^getmetatable("").__mod = function(a, b)$/;" f -getremotemac ./Mi_Lua/luci/dispatcher.lua /^function getremotemac()$/;" f -getsmbsingleswitch ./Me_Lua/h10/luci/controller/api/index.lua /^function getsmbsingleswitch()$/;" f -getsmbswitch ./Me_Lua/h10/luci/controller/api/index.lua /^function getsmbswitch()$/;" f -glob ./Mi_Lua/luci/fs.lua /^function glob(...)$/;" f -h.try ./Me_Lua/h10/socket/http.lua /^ h.try = socket.newtry(function() h:close() end)$/;" f -h.try ./Me_Lua/h13/socket/http.lua /^ h.try = socket.newtry(function() h:close() end)$/;" f -h.try ./Mi_Lua/socket/http.lua /^ h.try = socket.newtry(function() h:close() end)$/;" f -handleReturnValue ./Mi_Lua/luci/util.lua /^function handleReturnValue(err, co, status, ...)$/;" f -handle_request ./Mi_Lua/luci/sgi/uhttpd.lua /^function handle_request(env)$/;" f -hasFile ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function hasFile(f,fileList)$/;" f -hasR ./Mi_Lua/luci/util.lua /^function hasR(t, seen)$/;" f -hasRecursion ./Mi_Lua/luci/util.lua /^function hasRecursion(t)$/;" f -has_ipv6 ./Me_Lua/h10/luci/model/network.lua /^function has_ipv6(self)$/;" f -has_ipv6 ./Me_Lua/h13/luci/model/network.lua /^function has_ipv6(self)$/;" f -has_ipv6 ./Mi_Lua/luci/model/network.lua /^function has_ipv6(self)$/;" f -hash4SHA1 ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function hash4SHA1(str)$/;" f -header ./Mi_Lua/luci/http.lua /^function header(key, value)$/;" f -header_source ./Mi_Lua/luci/http/protocol.lua /^function header_source( sock )$/;" f -helper ./Mi_Lua/luci/model/uci.lua /^ local function helper (section)$/;" f -hex_to_binary ./Mi_Lua/sha1.lua /^local function hex_to_binary(hex)$/;" f -hextobin ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function hextobin(s)$/;" f -hmac_sha1 ./Mi_Lua/sha1.lua /^function hmac_sha1(key, text)$/;" f -hmac_sha1_binary ./Mi_Lua/sha1.lua /^function hmac_sha1_binary(key, text)$/;" f -hookLanIPChangeEvent ./Mi_Lua/xiaoqiang/module/XQDMZModule.lua /^function hookLanIPChangeEvent(ip)$/;" f -hookLanIPChangeEvent ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function hookLanIPChangeEvent(ip)$/;" f -hookLanIPChangeEvent ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function hookLanIPChangeEvent(ip)$/;" f -host ./Mi_Lua/luci/cbi/datatypes.lua /^function host(val)$/;" f -hostname ./Mi_Lua/luci/cbi/datatypes.lua /^function hostname(val)$/;" f -hostname ./Mi_Lua/luci/sys.lua /^function hostname(newname)$/;" f -htonl ./Mi_Lua/luci/ip.lua /^function htonl(x)$/;" f -htons ./Mi_Lua/luci/ip.lua /^function htons(x)$/;" f -httpGetRequest ./Mi_Lua/xiaoqiang/util/XQHttpUtil.lua /^function httpGetRequest(url, paramStr, cookies)$/;" f -httpPostRequest ./Mi_Lua/xiaoqiang/util/XQHttpUtil.lua /^function httpPostRequest(url, paramStr, cookies)$/;" f -http_request_log ./Mi_Lua/luci/dispatcher.lua /^function http_request_log(request, tag)$/;" f -httpdispatch ./Me_Lua/h10/luci/dispatcher.lua /^function httpdispatch(request, prefix)$/;" f -httpdispatch ./Me_Lua/h13/luci/dispatcher.lua /^function httpdispatch(request, prefix)$/;" f -httpdispatch ./Mi_Lua/luci/dispatcher.lua /^function httpdispatch(request, prefix)$/;" f -httpget ./Mi_Lua/luci/sys.lua /^function httpget(url, stream, target)$/;" f -https_get_access_token ./Me_Lua/h10/meizu/bfs.lua /^function https_get_access_token()$/;" f -https_get_access_token ./Me_Lua/h13/meizu/bfs.lua /^function https_get_access_token()$/;" f -hzFormat ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function hzFormat(hertz)$/;" f -i,v) table.insert ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^ table.foreach(uncompletedList, function(i,v) table.insert(completedList, v) end)$/;" f -i,v) table.insert ./Mi_Lua/xiaoqiang/util/XQDownloadUtil.lua /^ table.foreach(uncompletedList, function(i,v) table.insert(completedList, v) end)$/;" f -identifyDevice ./Mi_Lua/luci/controller/api/xqdatacenter.lua /^function identifyDevice()$/;" f -identifyDevice ./Mi_Lua/xiaoqiang/XQEquipment.lua /^function identifyDevice(mac, dhcpname)$/;" f -if base.type(ok) ~ ./Me_Lua/h10/socket/tp.lua /^ if base.type(ok) ~= "function" then$/;" f -if base.type(ok) ~ ./Me_Lua/h13/socket/tp.lua /^ if base.type(ok) ~= "function" then$/;" f -if base.type(ok) ~ ./Mi_Lua/socket/tp.lua /^ if base.type(ok) ~= "function" then$/;" f -if c and (c.index or type(target) ./Me_Lua/h10/luci/dispatcher.lua /^ if c and (c.index or type(target) == "function") then$/;" f -if c and (c.index or type(target) ./Me_Lua/h13/luci/dispatcher.lua /^ if c and (c.index or type(target) == "function") then$/;" f -if c and (c.index or type(target) ./Mi_Lua/luci/dispatcher.lua /^ if c and (c.index or type(target) == "function") then$/;" f -if c and type(c[1]) ./Mi_Lua/luci/cbi.lua /^ if c and type(c[1]) == "function" then$/;" f -if params.connectionfactory ./Mi_Lua/logging/sql.lua /^ if params.connectionfactory == nil or type(params.connectionfactory) ~= "function" then$/;" f -if type(append) ~ ./Mi_Lua/logging.lua /^ if type(append) ~= "function" then$/;" f -if type(c.target) ./Me_Lua/h10/luci/dispatcher.lua /^ if type(c.target) == "function" then$/;" f -if type(c.target) ./Me_Lua/h13/luci/dispatcher.lua /^ if type(c.target) == "function" then$/;" f -if type(c.target) ./Mi_Lua/luci/dispatcher.lua /^ if type(c.target) == "function" then$/;" f -if type(cfg.dhparam) ~ ./Me_Lua/h10/ssl.lua /^ if type(cfg.dhparam) ~= "function" then$/;" f -if type(cfg.dhparam) ~ ./Me_Lua/h13/ssl.lua /^ if type(cfg.dhparam) ~= "function" then$/;" f -if type(f) ~ ./Mi_Lua/luci/cbi/datatypes.lua /^ if type(f) ~= "function" then$/;" f -if type(filecb) ./Mi_Lua/luci/http/protocol.lua /^ if type(filecb) == "function" then$/;" f -if type(method) ./Me_Lua/h10/ssl/https.lua /^ if type(method) == "function" then$/;" f -if type(method) ./Me_Lua/h13/ssl/https.lua /^ if type(method) == "function" then$/;" f -if type(method) ./Mi_Lua/ssl/https.lua /^ if type(method) == "function" then$/;" f -if type(modcons) ./Mi_Lua/luci/ccache.lua /^ if type(modcons) == "function" then$/;" f -if type(rawdata) ~ ./Mi_Lua/luci/model/ipkg.lua /^ if type(rawdata) ~= "function" then$/;" f -if type(self.active) ~ ./Mi_Lua/luci/cbi.lua /^ if type(self.active) ~= "function" then$/;" f -if type(self.active) ~ ./Mi_Lua/luci/cbi.lua /^ if type(self.active) ~= "function" then$/;" f -if type(self.commit_handler) ./Mi_Lua/luci/cbi.lua /^ if type(self.commit_handler) == "function" then$/;" f -if type(self.value) ./Mi_Lua/luci/cbi.lua /^ if type(self.value) == "function" then$/;" f -if type(self[f]) ./Mi_Lua/luci/cbi.lua /^ if type(self[f]) == "function" then$/;" f -if type(self[hook]) ./Mi_Lua/luci/cbi.lua /^ if type(self[hook]) == "function" then$/;" f -if type(stack[#stack-1]) ~ ./Mi_Lua/luci/cbi.lua /^ if type(stack[#stack-1]) ~= "function" then$/;" f -if type(subvalidator) ~ ./Mi_Lua/luci/cbi/datatypes.lua /^ if type(subvalidator) ~= "function" then$/;" f -if type(target) ./Me_Lua/h10/luci/dispatcher.lua /^ if type(target) == "function" then$/;" f -if type(target) ./Me_Lua/h13/luci/dispatcher.lua /^ if type(target) == "function" then$/;" f -if type(target) ./Mi_Lua/luci/dispatcher.lua /^ if type(target) == "function" then$/;" f -if type(val) ./Mi_Lua/luci/util.lua /^ if type(val) == "function" then$/;" f -if vtype ./Mi_Lua/json.lua /^ if vtype=='function' and v==null then$/;" f -if_match ./Mi_Lua/luci/http/protocol/conditionals.lua /^function if_match( req, stat )$/;" f -if_modified_since ./Mi_Lua/luci/http/protocol/conditionals.lua /^function if_modified_since( req, stat )$/;" f -if_none_match ./Mi_Lua/luci/http/protocol/conditionals.lua /^function if_none_match( req, stat )$/;" f -if_range ./Mi_Lua/luci/http/protocol/conditionals.lua /^function if_range( req, stat )$/;" f -if_unmodified_since ./Mi_Lua/luci/http/protocol/conditionals.lua /^function if_unmodified_since( req, stat )$/;" f -iface_delete ./Me_Lua/h10/luci/controller/admin/network.lua /^function iface_delete(iface)$/;" f -iface_delete ./Me_Lua/h13/luci/controller/admin/network.lua /^function iface_delete(iface)$/;" f -iface_get_network ./Mi_Lua/luci/tools/webadmin.lua /^function iface_get_network(iface)$/;" f -iface_reconnect ./Me_Lua/h10/luci/controller/admin/network.lua /^function iface_reconnect(iface)$/;" f -iface_reconnect ./Me_Lua/h13/luci/controller/admin/network.lua /^function iface_reconnect(iface)$/;" f -iface_shutdown ./Me_Lua/h10/luci/controller/admin/network.lua /^function iface_shutdown(iface)$/;" f -iface_shutdown ./Me_Lua/h13/luci/controller/admin/network.lua /^function iface_shutdown(iface)$/;" f -iface_status ./Me_Lua/h10/luci/controller/admin/network.lua /^function iface_status(ifaces)$/;" f -iface_status ./Me_Lua/h13/luci/controller/admin/network.lua /^function iface_status(ifaces)$/;" f -ifattr ./Me_Lua/h10/luci/dispatcher.lua /^ ifattr = function(...) return _ifattr(...) end;$/;" f -ifattr ./Me_Lua/h13/luci/dispatcher.lua /^ ifattr = function(...) return _ifattr(...) end;$/;" f -ifattr ./Mi_Lua/luci/dispatcher.lua /^ ifattr = function(...) return _ifattr(...) end;$/;" f -ifnameof ./Me_Lua/h10/luci/model/network.lua /^function ifnameof(self, x)$/;" f -ifnameof ./Me_Lua/h13/luci/model/network.lua /^function ifnameof(self, x)$/;" f -ifnameof ./Mi_Lua/luci/model/network.lua /^function ifnameof(self, x)$/;" f -ignore_interface ./Me_Lua/h10/luci/model/network.lua /^function ignore_interface(self, x)$/;" f -ignore_interface ./Me_Lua/h13/luci/model/network.lua /^function ignore_interface(self, x)$/;" f -ignore_interface ./Mi_Lua/luci/model/network.lua /^function ignore_interface(self, x)$/;" f -image_supported ./Me_Lua/h10/meizu/bfs.lua /^ local function image_supported()$/;" f -image_supported ./Me_Lua/h10/meizu/upgdfs.lua /^ local function image_supported()$/;" f -image_supported ./Me_Lua/h13/meizu/bfs.lua /^ local function image_supported()$/;" f -image_supported ./Me_Lua/h13/meizu/upgdfs.lua /^ local function image_supported()$/;" f -imatch ./Mi_Lua/luci/util.lua /^function imatch(v)$/;" f -include ./Me_Lua/h10/luci/dispatcher.lua /^ include = function(name) tpl.Template(name):render(getfenv(2)) end;$/;" f -include ./Me_Lua/h13/luci/dispatcher.lua /^ include = function(name) tpl.Template(name):render(getfenv(2)) end;$/;" f -include ./Mi_Lua/luci/dispatcher.lua /^ include = function(name) tpl.Template(name):render(getfenv(2)) end;$/;" f -index ./Me_Lua/h10/luci/controller/admin/network.lua /^function index()$/;" f -index ./Me_Lua/h10/luci/controller/api/index.lua /^function index()$/;" f -index ./Me_Lua/h10/luci/controller/bs/index.lua /^function index()$/;" f -index ./Me_Lua/h13/luci/controller/admin/network.lua /^function index()$/;" f -index ./Me_Lua/h13/luci/controller/api/index.lua /^function index()$/;" f -index ./Me_Lua/h13/luci/controller/bs/index.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/index.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqdatacenter.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqnetdetect.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqpassport.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqsmarthome.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqsystem.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/api/xqtunnel.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/dispatch/index.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/firewall.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/mobile/index.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/service/datacenter.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/service/index.lua /^function index()$/;" f -index ./Mi_Lua/luci/controller/web/index.lua /^function index()$/;" f -info ./Me_Lua/h10/luci/controller/bs/index.lua /^function info()$/;" f -info ./Me_Lua/h10/ssl.lua /^local function info(ssl, field)$/;" f -info ./Me_Lua/h13/luci/controller/bs/index.lua /^function info()$/;" f -info ./Me_Lua/h13/ssl.lua /^local function info(ssl, field)$/;" f -info ./Mi_Lua/luci/model/ipkg.lua /^function info(pkg)$/;" f -init ./Me_Lua/h10/luci/model/network.lua /^function init(cursor)$/;" f -init ./Me_Lua/h13/luci/model/network.lua /^function init(cursor)$/;" f -init ./Mi_Lua/luci/model/firewall.lua /^function init(cursor)$/;" f -init ./Mi_Lua/luci/model/network.lua /^function init(cursor)$/;" f -init.disable ./Mi_Lua/luci/sys.lua /^function init.disable(name)$/;" f -init.enable ./Mi_Lua/luci/sys.lua /^function init.enable(name)$/;" f -init.enabled ./Mi_Lua/luci/sys.lua /^function init.enabled(name)$/;" f -init.index ./Mi_Lua/luci/sys.lua /^function init.index(name)$/;" f -init.names ./Mi_Lua/luci/sys.lua /^function init.names()$/;" f -init.start ./Mi_Lua/luci/sys.lua /^function init.start(name)$/;" f -init.stop ./Mi_Lua/luci/sys.lua /^function init.stop(name)$/;" f -initBatchFileTable ./Me_Lua/h10/meizu/dbfs.lua /^function initBatchFileTable()$/;" f -initBleTimerTable ./Me_Lua/h10/meizu/dbfs.lua /^function initBleTimerTable()$/;" f -initBluetoothTable ./Me_Lua/h10/meizu/dbfs.lua /^function initBluetoothTable()$/;" f -initBluetoothTable ./Me_Lua/h13/meizu/dbfs.lua /^function initBluetoothTable()$/;" f -initSmbBanTable ./Me_Lua/h10/meizu/dbfs.lua /^function initSmbBanTable()$/;" f -init_access_token_table ./Me_Lua/h10/meizu/dbfs.lua /^function init_access_token_table()$/;" f -init_access_token_table ./Me_Lua/h13/meizu/dbfs.lua /^function init_access_token_table()$/;" f -init_action ./Mi_Lua/luci/sys.lua /^local function init_action(action, name)$/;" f -init_arp_table ./Me_Lua/h10/meizu/dbfs.lua /^function init_arp_table()$/;" f -init_arp_table ./Me_Lua/h13/meizu/dbfs.lua /^function init_arp_table()$/;" f -init_bind_router_body ./Me_Lua/h10/meizu/bfs.lua /^function init_bind_router_body(access_token)$/;" f -init_bind_router_body ./Me_Lua/h13/meizu/bfs.lua /^function init_bind_router_body(access_token)$/;" f -init_deny_mac_table ./Me_Lua/h13/meizu/dbfs.lua /^function init_deny_mac_table()$/;" f -init_ssid_dbdata ./Me_Lua/h13/routerReport.lua /^function init_ssid_dbdata()$/;" f -init_ssid_table ./Me_Lua/h13/meizu/dbfs.lua /^function init_ssid_table()$/;" f -init_update_resp_pd ./Me_Lua/h10/meizu/sipfs.lua /^function init_update_resp_pd(access_token, commandId, data, finishstatus, timemini)$/;" f -init_update_resp_pd ./Me_Lua/h13/meizu/sipfs.lua /^function init_update_resp_pd(access_token, commandId, data, finishstatus, timemini)$/;" f -init_upload_router_log_pd ./Me_Lua/h10/meizu/sipfs.lua /^function init_upload_router_log_pd(access_token, logtype, logdata)$/;" f -init_upload_router_log_pd ./Me_Lua/h13/meizu/sipfs.lua /^function init_upload_router_log_pd(access_token, logtype, logdata)$/;" f -init_wire_device_table ./Me_Lua/h10/meizu/dbfs.lua /^function init_wire_device_table()$/;" f -init_wireless_device_table ./Me_Lua/h10/meizu/dbfs.lua /^function init_wireless_device_table()$/;" f -inp.cfgvalue ./Mi_Lua/luci/model/cbi/firewall/zone-details.lua /^function inp.cfgvalue(self, section)$/;" f -inp.formvalue ./Mi_Lua/luci/model/cbi/firewall/zone-details.lua /^function inp.formvalue(self, section)$/;" f -inp.write ./Mi_Lua/luci/model/cbi/firewall/zone-details.lua /^function inp.write(self, section, value)$/;" f -insert_arp_macip ./Me_Lua/h10/meizu/dbfs.lua /^function insert_arp_macip(mac, ip)$/;" f -insert_arp_macip ./Me_Lua/h13/meizu/dbfs.lua /^function insert_arp_macip(mac, ip, wifi)$/;" f -insert_wire_device_mac ./Me_Lua/h10/meizu/dbfs.lua /^function insert_wire_device_mac(mac, ip)$/;" f -insert_wireless_device_mac ./Me_Lua/h10/meizu/dbfs.lua /^function insert_wireless_device_mac(mac)$/;" f -install ./Mi_Lua/luci/model/ipkg.lua /^function install(...)$/;" f -installed ./Mi_Lua/luci/model/ipkg.lua /^function installed(pkg)$/;" f -instanceof ./Mi_Lua/luci/util.lua /^function instanceof(object, class)$/;" f -integer ./Mi_Lua/luci/cbi/datatypes.lua /^function integer(val)$/;" f -interface.__init__ ./Me_Lua/h10/luci/model/network.lua /^function interface.__init__(self, ifname, network)$/;" f -interface.__init__ ./Me_Lua/h13/luci/model/network.lua /^function interface.__init__(self, ifname, network)$/;" f -interface.__init__ ./Mi_Lua/luci/model/network.lua /^function interface.__init__(self, ifname, network)$/;" f -interface._ubus ./Me_Lua/h10/luci/model/network.lua /^function interface._ubus(self, field)$/;" f -interface._ubus ./Me_Lua/h13/luci/model/network.lua /^function interface._ubus(self, field)$/;" f -interface._ubus ./Mi_Lua/luci/model/network.lua /^function interface._ubus(self, field)$/;" f -interface.adminlink ./Me_Lua/h10/luci/model/network.lua /^function interface.adminlink(self)$/;" f -interface.adminlink ./Me_Lua/h13/luci/model/network.lua /^function interface.adminlink(self)$/;" f -interface.adminlink ./Mi_Lua/luci/model/network.lua /^function interface.adminlink(self)$/;" f -interface.bridge_id ./Me_Lua/h10/luci/model/network.lua /^function interface.bridge_id(self)$/;" f -interface.bridge_id ./Me_Lua/h13/luci/model/network.lua /^function interface.bridge_id(self)$/;" f -interface.bridge_id ./Mi_Lua/luci/model/network.lua /^function interface.bridge_id(self)$/;" f -interface.bridge_stp ./Me_Lua/h10/luci/model/network.lua /^function interface.bridge_stp(self)$/;" f -interface.bridge_stp ./Me_Lua/h13/luci/model/network.lua /^function interface.bridge_stp(self)$/;" f -interface.bridge_stp ./Mi_Lua/luci/model/network.lua /^function interface.bridge_stp(self)$/;" f -interface.get_i18n ./Me_Lua/h10/luci/model/network.lua /^function interface.get_i18n(self)$/;" f -interface.get_i18n ./Me_Lua/h13/luci/model/network.lua /^function interface.get_i18n(self)$/;" f -interface.get_i18n ./Mi_Lua/luci/model/network.lua /^function interface.get_i18n(self)$/;" f -interface.get_network ./Me_Lua/h10/luci/model/network.lua /^function interface.get_network(self)$/;" f -interface.get_network ./Me_Lua/h13/luci/model/network.lua /^function interface.get_network(self)$/;" f -interface.get_network ./Mi_Lua/luci/model/network.lua /^function interface.get_network(self)$/;" f -interface.get_networks ./Me_Lua/h10/luci/model/network.lua /^function interface.get_networks(self)$/;" f -interface.get_networks ./Me_Lua/h13/luci/model/network.lua /^function interface.get_networks(self)$/;" f -interface.get_networks ./Mi_Lua/luci/model/network.lua /^function interface.get_networks(self)$/;" f -interface.get_type_i18n ./Me_Lua/h10/luci/model/network.lua /^function interface.get_type_i18n(self)$/;" f -interface.get_type_i18n ./Me_Lua/h13/luci/model/network.lua /^function interface.get_type_i18n(self)$/;" f -interface.get_type_i18n ./Mi_Lua/luci/model/network.lua /^function interface.get_type_i18n(self)$/;" f -interface.get_wifinet ./Me_Lua/h10/luci/model/network.lua /^function interface.get_wifinet(self)$/;" f -interface.get_wifinet ./Me_Lua/h13/luci/model/network.lua /^function interface.get_wifinet(self)$/;" f -interface.get_wifinet ./Mi_Lua/luci/model/network.lua /^function interface.get_wifinet(self)$/;" f -interface.ip6addrs ./Me_Lua/h10/luci/model/network.lua /^function interface.ip6addrs(self)$/;" f -interface.ip6addrs ./Me_Lua/h13/luci/model/network.lua /^function interface.ip6addrs(self)$/;" f -interface.ip6addrs ./Mi_Lua/luci/model/network.lua /^function interface.ip6addrs(self)$/;" f -interface.ipaddrs ./Me_Lua/h10/luci/model/network.lua /^function interface.ipaddrs(self)$/;" f -interface.ipaddrs ./Me_Lua/h13/luci/model/network.lua /^function interface.ipaddrs(self)$/;" f -interface.ipaddrs ./Mi_Lua/luci/model/network.lua /^function interface.ipaddrs(self)$/;" f -interface.is_bridge ./Me_Lua/h10/luci/model/network.lua /^function interface.is_bridge(self)$/;" f -interface.is_bridge ./Me_Lua/h13/luci/model/network.lua /^function interface.is_bridge(self)$/;" f -interface.is_bridge ./Mi_Lua/luci/model/network.lua /^function interface.is_bridge(self)$/;" f -interface.is_bridgeport ./Me_Lua/h10/luci/model/network.lua /^function interface.is_bridgeport(self)$/;" f -interface.is_bridgeport ./Me_Lua/h13/luci/model/network.lua /^function interface.is_bridgeport(self)$/;" f -interface.is_bridgeport ./Mi_Lua/luci/model/network.lua /^function interface.is_bridgeport(self)$/;" f -interface.is_up ./Me_Lua/h10/luci/model/network.lua /^function interface.is_up(self)$/;" f -interface.is_up ./Me_Lua/h13/luci/model/network.lua /^function interface.is_up(self)$/;" f -interface.is_up ./Mi_Lua/luci/model/network.lua /^function interface.is_up(self)$/;" f -interface.mac ./Me_Lua/h10/luci/model/network.lua /^function interface.mac(self)$/;" f -interface.mac ./Me_Lua/h13/luci/model/network.lua /^function interface.mac(self)$/;" f -interface.mac ./Mi_Lua/luci/model/network.lua /^function interface.mac(self)$/;" f -interface.name ./Me_Lua/h10/luci/model/network.lua /^function interface.name(self)$/;" f -interface.name ./Me_Lua/h13/luci/model/network.lua /^function interface.name(self)$/;" f -interface.name ./Mi_Lua/luci/model/network.lua /^function interface.name(self)$/;" f -interface.ports ./Me_Lua/h10/luci/model/network.lua /^function interface.ports(self)$/;" f -interface.ports ./Me_Lua/h13/luci/model/network.lua /^function interface.ports(self)$/;" f -interface.ports ./Mi_Lua/luci/model/network.lua /^function interface.ports(self)$/;" f -interface.rx_bytes ./Me_Lua/h10/luci/model/network.lua /^function interface.rx_bytes(self)$/;" f -interface.rx_bytes ./Me_Lua/h13/luci/model/network.lua /^function interface.rx_bytes(self)$/;" f -interface.rx_bytes ./Mi_Lua/luci/model/network.lua /^function interface.rx_bytes(self)$/;" f -interface.rx_packets ./Me_Lua/h10/luci/model/network.lua /^function interface.rx_packets(self)$/;" f -interface.rx_packets ./Me_Lua/h13/luci/model/network.lua /^function interface.rx_packets(self)$/;" f -interface.rx_packets ./Mi_Lua/luci/model/network.lua /^function interface.rx_packets(self)$/;" f -interface.shortname ./Me_Lua/h10/luci/model/network.lua /^function interface.shortname(self)$/;" f -interface.shortname ./Me_Lua/h13/luci/model/network.lua /^function interface.shortname(self)$/;" f -interface.shortname ./Mi_Lua/luci/model/network.lua /^function interface.shortname(self)$/;" f -interface.tx_bytes ./Me_Lua/h10/luci/model/network.lua /^function interface.tx_bytes(self)$/;" f -interface.tx_bytes ./Me_Lua/h13/luci/model/network.lua /^function interface.tx_bytes(self)$/;" f -interface.tx_bytes ./Mi_Lua/luci/model/network.lua /^function interface.tx_bytes(self)$/;" f -interface.tx_packets ./Me_Lua/h10/luci/model/network.lua /^function interface.tx_packets(self)$/;" f -interface.tx_packets ./Me_Lua/h13/luci/model/network.lua /^function interface.tx_packets(self)$/;" f -interface.tx_packets ./Mi_Lua/luci/model/network.lua /^function interface.tx_packets(self)$/;" f -interface.type ./Me_Lua/h10/luci/model/network.lua /^function interface.type(self)$/;" f -interface.type ./Me_Lua/h13/luci/model/network.lua /^function interface.type(self)$/;" f -interface.type ./Mi_Lua/luci/model/network.lua /^function interface.type(self)$/;" f -ip4addr ./Mi_Lua/luci/cbi/datatypes.lua /^function ip4addr(val)$/;" f -ip4prefix ./Mi_Lua/luci/cbi/datatypes.lua /^function ip4prefix(val)$/;" f -ip6addr ./Mi_Lua/luci/cbi/datatypes.lua /^function ip6addr(val)$/;" f -ip6prefix ./Mi_Lua/luci/cbi/datatypes.lua /^function ip6prefix(val)$/;" f -ipSplit ./Mi_Lua/luci/view/web/setting/net_lan.htm /^function ipSplit(ip){$/;" f -ipaddr ./Mi_Lua/luci/cbi/datatypes.lua /^function ipaddr(val)$/;" f -ipnot ./Mi_Lua/luci/ip.lua /^function ipnot ( ip )$/;" f -iptonl ./Mi_Lua/luci/ip.lua /^function iptonl( ip )$/;" f -isArray ./Mi_Lua/json.lua /^function isArray(t)$/;" f -isChange ./Mi_Lua/luci/view/web/setting/wifi_set_pro.htm /^ function isChange(name){$/;" f -isDeviceWifiConnect ./Mi_Lua/xiaoqiang/util/XQWifiUtil.lua /^function isDeviceWifiConnect(mac,wifiIndex)$/;" f -isDropbearStarted ./Mi_Lua/luci/controller/api/xqsystem.lua /^function isDropbearStarted()$/;" f -isDropbearStarted ./Mi_Lua/luci/view/web/setting/lamp.htm /^ function isDropbearStarted(){$/;" f -isEncodable ./Mi_Lua/json.lua /^function isEncodable(o)$/;" f -isInternetConnect ./Mi_Lua/luci/controller/api/xqsystem.lua /^function isInternetConnect()$/;" f -isRunning ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function isRunning()$/;" f -isSandboxCreated ./Mi_Lua/luci/controller/api/xqsystem.lua /^function isSandboxCreated()$/;" f -isSandboxCreated ./Mi_Lua/luci/view/web/setting/lamp.htm /^ function isSandboxCreated(){$/;" f -isStrNil ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function isStrNil(str)$/;" f -isUpgrading ./Mi_Lua/xiaoqiang/util/XQSysUtil.lua /^function isUpgrading()$/;" f -is_del_timer_ok ./Me_Lua/h10/meizu/btfs.lua /^function is_del_timer_ok(mac, timer_id)$/;" f -is_del_timer_ok ./Me_Lua/h13/meizu/nwfs.lua /^function is_del_timer_ok(mac, timer_id)$/;" f -is_device_online ./Me_Lua/h10/meizu/nwfs.lua /^function is_device_online(ip)$/;" f -is_device_online ./Me_Lua/h13/meizu/nwfs.lua /^function is_device_online(ip)$/;" f -is_file_exist ./Me_Lua/h10/meizu/btfs.lua /^function is_file_exist(TMP)$/;" f -is_file_exist ./Me_Lua/h13/meizu/nwfs.lua /^function is_file_exist(TMP)$/;" f -is_receive_id ./Me_Lua/h10/meizu/btfs.lua /^function is_receive_id(mac)$/;" f -is_receive_id ./Me_Lua/h13/meizu/nwfs.lua /^function is_receive_id(mac)$/;" f -is_remove_ble_from_mesh ./Me_Lua/h10/meizu/btfs.lua /^function is_remove_ble_from_mesh()$/;" f -is_remove_ble_from_mesh ./Me_Lua/h13/meizu/nwfs.lua /^function is_remove_ble_from_mesh()$/;" f -is_set_key_ok ./Me_Lua/h10/meizu/btfs.lua /^function is_set_key_ok()$/;" f -is_set_key_ok ./Me_Lua/h13/meizu/nwfs.lua /^function is_set_key_ok()$/;" f -is_set_name_ok ./Me_Lua/h10/meizu/btfs.lua /^function is_set_name_ok(mac)$/;" f -is_set_name_ok ./Me_Lua/h13/meizu/nwfs.lua /^function is_set_name_ok(mac)$/;" f -is_set_timer_ok ./Me_Lua/h10/meizu/btfs.lua /^function is_set_timer_ok(mac, timer_id)$/;" f -is_set_timer_ok ./Me_Lua/h13/meizu/nwfs.lua /^function is_set_timer_ok(mac, timer_id)$/;" f -is_str_nil ./Me_Lua/h10/meizu/nwfs.lua /^function is_str_nil(str)$/;" f -is_str_nil ./Me_Lua/h13/meizu/nwfs.lua /^function is_str_nil(str)$/;" f -is_switch_off ./Me_Lua/h10/meizu/btfs.lua /^function is_switch_off(mac)$/;" f -is_switch_off ./Me_Lua/h13/meizu/nwfs.lua /^function is_switch_off(mac)$/;" f -is_switch_on ./Me_Lua/h10/meizu/btfs.lua /^function is_switch_on(mac)$/;" f -is_switch_on ./Me_Lua/h13/meizu/nwfs.lua /^function is_switch_on(mac)$/;" f -is_wan_connected ./Me_Lua/h10/meizu/nwfs.lua /^function is_wan_connected()$/;" f -is_wan_connected ./Me_Lua/h13/meizu/nwfs.lua /^function is_wan_connected()$/;" f -isalive ./Mi_Lua/xiaoqiang/util/XQMitvUtil.lua /^function isalive(ip)$/;" f -isdirectory ./Mi_Lua/luci/fs.lua /^function isdirectory(dirname)$/;" f -isfile ./Mi_Lua/luci/fs.lua /^function isfile(filename)$/;" f -keepalive_failure.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_ppp.lua /^function keepalive_failure.cfgvalue(self, section)$/;" f -keepalive_failure.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoa.lua /^function keepalive_failure.cfgvalue(self, section)$/;" f -keepalive_failure.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoe.lua /^function keepalive_failure.cfgvalue(self, section)$/;" f -keepalive_failure.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_pptp.lua /^function keepalive_failure.cfgvalue(self, section)$/;" f -keepalive_failure.remove ./Mi_Lua/luci/model/cbi/admin_network/proto_ppp.lua /^function keepalive_failure.remove() end$/;" f -keepalive_failure.remove ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoa.lua /^function keepalive_failure.remove() end$/;" f -keepalive_failure.remove ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoe.lua /^function keepalive_failure.remove() end$/;" f -keepalive_failure.remove ./Mi_Lua/luci/model/cbi/admin_network/proto_pptp.lua /^function keepalive_failure.remove() end$/;" f -keepalive_failure.write ./Mi_Lua/luci/model/cbi/admin_network/proto_ppp.lua /^function keepalive_failure.write() end$/;" f -keepalive_failure.write ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoa.lua /^function keepalive_failure.write() end$/;" f -keepalive_failure.write ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoe.lua /^function keepalive_failure.write() end$/;" f -keepalive_failure.write ./Mi_Lua/luci/model/cbi/admin_network/proto_pptp.lua /^function keepalive_failure.write() end$/;" f -keepalive_interval.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_ppp.lua /^function keepalive_interval.cfgvalue(self, section)$/;" f -keepalive_interval.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoa.lua /^function keepalive_interval.cfgvalue(self, section)$/;" f -keepalive_interval.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoe.lua /^function keepalive_interval.cfgvalue(self, section)$/;" f -keepalive_interval.cfgvalue ./Mi_Lua/luci/model/cbi/admin_network/proto_pptp.lua /^function keepalive_interval.cfgvalue(self, section)$/;" f -keepalive_interval.write ./Mi_Lua/luci/model/cbi/admin_network/proto_ppp.lua /^function keepalive_interval.write(self, section, value)$/;" f -keepalive_interval.write ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoa.lua /^function keepalive_interval.write(self, section, value)$/;" f -keepalive_interval.write ./Mi_Lua/luci/model/cbi/admin_network/proto_pppoe.lua /^function keepalive_interval.write(self, section, value)$/;" f -keepalive_interval.write ./Mi_Lua/luci/model/cbi/admin_network/proto_pptp.lua /^function keepalive_interval.write(self, section, value)$/;" f -keyGeneration ./Mi_Lua/rc4.lua /^local function keyGeneration(state, nCount)$/;" f -keys ./Mi_Lua/luci/util.lua /^function keys(t)$/;" f -kill ./Me_Lua/h10/luci/sauth.lua /^function kill(id)$/;" f -kill ./Me_Lua/h13/luci/sauth.lua /^function kill(id)$/;" f -kill ./Mi_Lua/luci/sauth.lua /^function kill(id)$/;" f -kspairs ./Mi_Lua/luci/util.lua /^function kspairs(t)$/;" f -lanIPChange ./Mi_Lua/xiaoqiang/XQEvent.lua /^function lanIPChange(ip)$/;" f -lease_status ./Me_Lua/h10/luci/controller/admin/network.lua /^function lease_status()$/;" f -lease_status ./Me_Lua/h13/luci/controller/admin/network.lua /^function lease_status()$/;" f -ledFlashAlert ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function ledFlashAlert(enable)$/;" f -libpath ./Mi_Lua/luci/util.lua /^function libpath()$/;" f -limitsource ./Mi_Lua/luci/sgi/cgi.lua /^local function limitsource(handle, limit)$/;" f -link ./Mi_Lua/luci/fs.lua /^function link(src, dest, sym)$/;" f -list ./Mi_Lua/luci/cbi/datatypes.lua /^function list(v, subvalidator, subargs)$/;" f -list_all ./Mi_Lua/luci/model/ipkg.lua /^function list_all(pat, cb)$/;" f -list_installed ./Mi_Lua/luci/model/ipkg.lua /^function list_installed(pat, cb)$/;" f -listenStatus ./Mi_Lua/luci/view/web/setting/vpn.htm /^ function listenStatus(){$/;" f -listlocaldir ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function listlocaldir(path)$/;" f -load ./Mi_Lua/luci/cbi.lua /^function load(cbimap, ...)$/;" f -load ./Mi_Lua/luci/i18n.lua /^function load(file, lang, force)$/;" f -loadavg ./Mi_Lua/luci/sys.lua /^function loadavg()$/;" f -loadc ./Mi_Lua/luci/i18n.lua /^function loadc(file, force)$/;" f -local _template ./Me_Lua/h10/luci/dispatcher.lua /^local _template = function(self, ...)$/;" f -local _template ./Me_Lua/h13/luci/dispatcher.lua /^local _template = function(self, ...)$/;" f -local _template ./Mi_Lua/luci/dispatcher.lua /^local _template = function(self, ...)$/;" f -local a ./Mi_Lua/luci/json.lua /^ local a = ActiveDecoder(function() return nil end, ...)$/;" f -local authen ./Me_Lua/h10/luci/dispatcher.lua /^ local authen = type(track.sysauth_authenticator) == "function"$/;" f -local authen ./Me_Lua/h13/luci/dispatcher.lua /^ local authen = type(track.sysauth_authenticator) == "function"$/;" f -local authen ./Mi_Lua/luci/dispatcher.lua /^ local authen = type(track.sysauth_authenticator) == "function"$/;" f -local checkstep ./Me_Lua/h10/socket/ftp.lua /^ local checkstep = function(src, snk)$/;" f -local checkstep ./Me_Lua/h13/socket/ftp.lua /^ local checkstep = function(src, snk)$/;" f -local checkstep ./Mi_Lua/socket/ftp.lua /^ local checkstep = function(src, snk)$/;" f -local co ./Me_Lua/h10/socket/smtp.lua /^ local co = coroutine.create(function() send_message(mesgt) end)$/;" f -local co ./Me_Lua/h13/socket/smtp.lua /^ local co = coroutine.create(function() send_message(mesgt) end)$/;" f -local co ./Mi_Lua/socket/smtp.lua /^ local co = coroutine.create(function() send_message(mesgt) end)$/;" f -local entitySwap ./Mi_Lua/slaxml.lua /^ local entitySwap = function(orig,n,s) return entityMap[s] or n=="#" and char(s) or orig end$/;" f -local f ./Me_Lua/h10/ltn12.lua /^ local f = function(chunk, err)$/;" f -local f ./Me_Lua/h13/ltn12.lua /^ local f = function(chunk, err)$/;" f -local f ./Mi_Lua/ltn12.lua /^ local f = function(chunk, err)$/;" f -local f ./Mi_Lua/luci/ltn12.lua /^ local f = function(chunk, err)$/;" f -local newf ./Mi_Lua/luci/util.lua /^ local newf = function() return f(unpack(params)) end$/;" f -local openFileLogger ./Mi_Lua/logging/file.lua /^local openFileLogger = function (filename, datePattern)$/;" f -local openRollingFileLogger ./Mi_Lua/logging/rolling_file.lua /^local openRollingFileLogger = function (self)$/;" f -local proto, off ./Mi_Lua/luci/util.lua /^ local proto, off = strip_function(code:sub(offset, -1))$/;" f -local rollOver ./Mi_Lua/logging/rolling_file.lua /^local rollOver = function (self)$/;" f -local s ./Me_Lua/h10/meizu/bfs.lua /^ local s = string.gsub(s, "([^%w%.%- ])", function(c) return string.format("%%%02X", string.byte(c)) end)$/;" f -local s ./Me_Lua/h10/meizu/bfs.lua /^ local s = string.gsub(s, '%%(%x%x)', function(h) return string.char(tonumber(h, 16)) end)$/;" f -local s ./Me_Lua/h13/meizu/bfs.lua /^ local s = string.gsub(s, "([^%w%.%- ])", function(c) return string.format("%%%02X", string.byte(c)) end)$/;" f -local s ./Me_Lua/h13/meizu/bfs.lua /^ local s = string.gsub(s, '%%(%x%x)', function(h) return string.char(tonumber(h, 16)) end)$/;" f -local stat, err ./Me_Lua/h10/luci/dispatcher.lua /^ local stat, err = util.coxpcall(function()$/;" f -local stat, err ./Me_Lua/h13/luci/dispatcher.lua /^ local stat, err = util.coxpcall(function()$/;" f -local stat, err ./Mi_Lua/luci/dispatcher.lua /^ local stat, err = util.coxpcall(function()$/;" f -local_upgrade ./Me_Lua/h10/meizu/upgdfs.lua /^function local_upgrade()$/;" f -local_upgrade ./Me_Lua/h13/meizu/upgdfs.lua /^function local_upgrade()$/;" f -log ./Me_Lua/h10/MZLog.lua /^function log(...)$/;" f -log ./Me_Lua/h13/MZLog.lua /^function log(...)$/;" f -log ./Mi_Lua/xiaoqiang/XQLog.lua /^function log(...)$/;" f -logCollection ./Mi_Lua/luci/view/web/setting/log.htm /^ function logCollection() {$/;" f -logger ./Mi_Lua/sysapi/miqos.lua /^function logger(loglevel,msg)$/;" f -logger.log ./Mi_Lua/logging.lua /^ logger.log = function (self, level, ...)$/;" f -logger.setLevel ./Mi_Lua/logging.lua /^ logger.setLevel = function (self, level)$/;" f -logging.console ./Mi_Lua/logging/console.lua /^function logging.console(logPattern)$/;" f -logging.email ./Mi_Lua/logging/email.lua /^function logging.email(params)$/;" f -logging.file ./Mi_Lua/logging/file.lua /^function logging.file(filename, datePattern, logPattern)$/;" f -logging.new ./Mi_Lua/logging.lua /^function logging.new(append)$/;" f -logging.prepareLogMsg ./Mi_Lua/logging.lua /^function logging.prepareLogMsg(pattern, dt, level, message)$/;" f -logging.rolling_file ./Mi_Lua/logging/rolling_file.lua /^function logging.rolling_file(filename, maxFileSize, maxBackupIndex, logPattern)$/;" f -logging.socket ./Mi_Lua/logging/socket.lua /^function logging.socket(address, port, logPattern)$/;" f -logging.sql ./Mi_Lua/logging/sql.lua /^function logging.sql(params)$/;" f -logout ./Mi_Lua/luci/view/web/plugins/kuaipan.htm /^ function logout() {$/;" f -lower_headers ./Me_Lua/h10/socket/smtp.lua /^local function lower_headers(headers)$/;" f -lower_headers ./Me_Lua/h13/socket/smtp.lua /^local function lower_headers(headers)$/;" f -lower_headers ./Mi_Lua/socket/smtp.lua /^local function lower_headers(headers)$/;" f -m.on_commit ./Mi_Lua/luci/model/cbi/firewall/zone-details.lua /^m.on_commit = function(map)$/;" f -macBind ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function macBind()$/;" f -macBindInfo ./Mi_Lua/xiaoqiang/util/XQLanWanUtil.lua /^function macBindInfo()$/;" f -macFormat ./Me_Lua/h10/meizu/nwfs.lua /^function macFormat(mac)$/;" f -macFormat ./Me_Lua/h13/meizu/nwfs.lua /^function macFormat(mac)$/;" f -macFormat ./Mi_Lua/xiaoqiang/common/XQFunction.lua /^function macFormat(mac)$/;" f -macUnbind ./Mi_Lua/luci/controller/api/xqnetwork.lua /^function macUnbind()$/;" f -macaddr ./Mi_Lua/luci/cbi/datatypes.lua /^function macaddr(val)$/;" f -main ./Mi_Lua/sysapi/miqos.lua /^function main()$/;" f -mainStatusForApp ./Mi_Lua/luci/controller/api/xqsystem.lua /^function mainStatusForApp()$/;" f -make_get_device_details_cmd ./Me_Lua/h10/meizu/nwfs.lua /^function make_get_device_details_cmd(mac, patten)$/;" f -make_set ./Me_Lua/h10/socket/url.lua /^local function make_set(t)$/;" f -make_set ./Me_Lua/h13/socket/url.lua /^local function make_set(t)$/;" f -make_set ./Mi_Lua/socket/url.lua /^local function make_set(t)$/;" f -match.cfgvalue ./Mi_Lua/luci/model/cbi/firewall/forwards.lua /^function match.cfgvalue(self, s)$/;" f -match.cfgvalue ./Mi_Lua/luci/model/cbi/firewall/rules.lua /^function match.cfgvalue(self, s)$/;" f -max ./Mi_Lua/luci/cbi/datatypes.lua /^function max(val, max)$/;" f -maxlength ./Mi_Lua/luci/cbi/datatypes.lua /^function maxlength(val, max)$/;" f -md5Base64Str ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function md5Base64Str(str)$/;" f -md5File ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function md5File(file)$/;" f -md5Str ./Mi_Lua/xiaoqiang/util/XQCryptoUtil.lua /^function md5Str(str)$/;" f -mergeFiles ./Mi_Lua/xiaoqiang/util/XQCameraUtil.lua /^function mergeFiles(remotefiles,localfiles)$/;" f -message ./Mi_Lua/socket/smtp.lua /^function message(mesgt)$/;" f -meta.blocksource ./Mi_Lua/nixio/util.lua /^function meta.blocksource(self, bs, limit)$/;" f -meta.copy ./Mi_Lua/nixio/util.lua /^function meta.copy(self, fdout, size)$/;" f -meta.copyz ./Mi_Lua/nixio/util.lua /^function meta.copyz(self, fd, size)$/;" f -meta.is_file ./Mi_Lua/nixio/util.lua /^function meta.is_file(self)$/;" f -meta.is_socket ./Mi_Lua/nixio/util.lua /^function meta.is_socket(self)$/;" f -meta.is_tls_socket ./Mi_Lua/nixio/util.lua /^function meta.is_tls_socket(self)$/;" f -meta.linesource ./Mi_Lua/nixio/util.lua /^function meta.linesource(self, limit)$/;" f -meta.readall ./Mi_Lua/nixio/util.lua /^function meta.readall(self, len)$/;" f -meta.sink ./Mi_Lua/nixio/util.lua /^function meta.sink(self, close)$/;" f -meta.writeall ./Mi_Lua/nixio/util.lua /^function meta.writeall(self, data)$/;" f -metat.__index:auth ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:auth(user, password, ext)$/;" f -metat.__index:auth ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:auth(user, password, ext)$/;" f -metat.__index:auth ./Mi_Lua/socket/smtp.lua /^function metat.__index:auth(user, password, ext)$/;" f -metat.__index:check ./Me_Lua/h10/socket/tp.lua /^function metat.__index:check(ok)$/;" f -metat.__index:check ./Me_Lua/h13/socket/tp.lua /^function metat.__index:check(ok)$/;" f -metat.__index:check ./Mi_Lua/socket/tp.lua /^function metat.__index:check(ok)$/;" f -metat.__index:close ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h10/socket/http.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h10/socket/tp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h13/socket/http.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Me_Lua/h13/socket/tp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Mi_Lua/socket/ftp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Mi_Lua/socket/http.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Mi_Lua/socket/smtp.lua /^function metat.__index:close()$/;" f -metat.__index:close ./Mi_Lua/socket/tp.lua /^function metat.__index:close()$/;" f -metat.__index:command ./Me_Lua/h10/socket/tp.lua /^function metat.__index:command(cmd, arg)$/;" f -metat.__index:command ./Me_Lua/h13/socket/tp.lua /^function metat.__index:command(cmd, arg)$/;" f -metat.__index:command ./Mi_Lua/socket/tp.lua /^function metat.__index:command(cmd, arg)$/;" f -metat.__index:cwd ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:cwd(dir)$/;" f -metat.__index:cwd ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:cwd(dir)$/;" f -metat.__index:cwd ./Mi_Lua/socket/ftp.lua /^function metat.__index:cwd(dir)$/;" f -metat.__index:data ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:data(src, step)$/;" f -metat.__index:data ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:data(src, step)$/;" f -metat.__index:data ./Mi_Lua/socket/smtp.lua /^function metat.__index:data(src, step)$/;" f -metat.__index:dirty ./Me_Lua/h10/socket/tp.lua /^function metat.__index:dirty()$/;" f -metat.__index:dirty ./Me_Lua/h13/socket/tp.lua /^function metat.__index:dirty()$/;" f -metat.__index:dirty ./Mi_Lua/socket/tp.lua /^function metat.__index:dirty()$/;" f -metat.__index:getcontrol ./Me_Lua/h10/socket/tp.lua /^function metat.__index:getcontrol()$/;" f -metat.__index:getcontrol ./Me_Lua/h13/socket/tp.lua /^function metat.__index:getcontrol()$/;" f -metat.__index:getcontrol ./Mi_Lua/socket/tp.lua /^function metat.__index:getcontrol()$/;" f -metat.__index:getfd ./Me_Lua/h10/socket/tp.lua /^function metat.__index:getfd()$/;" f -metat.__index:getfd ./Me_Lua/h13/socket/tp.lua /^function metat.__index:getfd()$/;" f -metat.__index:getfd ./Mi_Lua/socket/tp.lua /^function metat.__index:getfd()$/;" f -metat.__index:greet ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:greet()$/;" f -metat.__index:greet ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:greet(domain)$/;" f -metat.__index:greet ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:greet()$/;" f -metat.__index:greet ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:greet(domain)$/;" f -metat.__index:greet ./Mi_Lua/socket/ftp.lua /^function metat.__index:greet()$/;" f -metat.__index:greet ./Mi_Lua/socket/smtp.lua /^function metat.__index:greet(domain)$/;" f -metat.__index:login ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:login(user, password)$/;" f -metat.__index:login ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:login(user, password)$/;" f -metat.__index:login ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:login(user, password)$/;" f -metat.__index:login ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:login(user, password)$/;" f -metat.__index:login ./Mi_Lua/socket/ftp.lua /^function metat.__index:login(user, password)$/;" f -metat.__index:login ./Mi_Lua/socket/smtp.lua /^function metat.__index:login(user, password)$/;" f -metat.__index:mail ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:mail(from)$/;" f -metat.__index:mail ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:mail(from)$/;" f -metat.__index:mail ./Mi_Lua/socket/smtp.lua /^function metat.__index:mail(from)$/;" f -metat.__index:pasv ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:pasv()$/;" f -metat.__index:pasv ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:pasv()$/;" f -metat.__index:pasv ./Mi_Lua/socket/ftp.lua /^function metat.__index:pasv()$/;" f -metat.__index:pasvconnect ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:pasvconnect()$/;" f -metat.__index:pasvconnect ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:pasvconnect()$/;" f -metat.__index:pasvconnect ./Mi_Lua/socket/ftp.lua /^function metat.__index:pasvconnect()$/;" f -metat.__index:plain ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:plain(user, password)$/;" f -metat.__index:plain ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:plain(user, password)$/;" f -metat.__index:plain ./Mi_Lua/socket/smtp.lua /^function metat.__index:plain(user, password)$/;" f -metat.__index:port ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:port(ip, port)$/;" f -metat.__index:port ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:port(ip, port)$/;" f -metat.__index:port ./Mi_Lua/socket/ftp.lua /^function metat.__index:port(ip, port)$/;" f -metat.__index:portconnect ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:portconnect()$/;" f -metat.__index:portconnect ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:portconnect()$/;" f -metat.__index:portconnect ./Mi_Lua/socket/ftp.lua /^function metat.__index:portconnect()$/;" f -metat.__index:quit ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:quit()$/;" f -metat.__index:quit ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:quit()$/;" f -metat.__index:quit ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:quit()$/;" f -metat.__index:quit ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:quit()$/;" f -metat.__index:quit ./Mi_Lua/socket/ftp.lua /^function metat.__index:quit()$/;" f -metat.__index:quit ./Mi_Lua/socket/smtp.lua /^function metat.__index:quit()$/;" f -metat.__index:rcpt ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:rcpt(to)$/;" f -metat.__index:rcpt ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:rcpt(to)$/;" f -metat.__index:rcpt ./Mi_Lua/socket/smtp.lua /^function metat.__index:rcpt(to)$/;" f -metat.__index:receive ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:receive(recvt)$/;" f -metat.__index:receive ./Me_Lua/h10/socket/tp.lua /^function metat.__index:receive(pat)$/;" f -metat.__index:receive ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:receive(recvt)$/;" f -metat.__index:receive ./Me_Lua/h13/socket/tp.lua /^function metat.__index:receive(pat)$/;" f -metat.__index:receive ./Mi_Lua/socket/ftp.lua /^function metat.__index:receive(recvt)$/;" f -metat.__index:receive ./Mi_Lua/socket/tp.lua /^function metat.__index:receive(pat)$/;" f -metat.__index:receive09body ./Me_Lua/h10/socket/http.lua /^function metat.__index:receive09body(status, sink, step)$/;" f -metat.__index:receive09body ./Me_Lua/h13/socket/http.lua /^function metat.__index:receive09body(status, sink, step)$/;" f -metat.__index:receive09body ./Mi_Lua/socket/http.lua /^function metat.__index:receive09body(status, sink, step)$/;" f -metat.__index:receivebody ./Me_Lua/h10/socket/http.lua /^function metat.__index:receivebody(headers, sink, step)$/;" f -metat.__index:receivebody ./Me_Lua/h13/socket/http.lua /^function metat.__index:receivebody(headers, sink, step)$/;" f -metat.__index:receivebody ./Mi_Lua/socket/http.lua /^function metat.__index:receivebody(headers, sink, step)$/;" f -metat.__index:receiveheaders ./Me_Lua/h10/socket/http.lua /^function metat.__index:receiveheaders()$/;" f -metat.__index:receiveheaders ./Me_Lua/h13/socket/http.lua /^function metat.__index:receiveheaders()$/;" f -metat.__index:receiveheaders ./Mi_Lua/socket/http.lua /^function metat.__index:receiveheaders()$/;" f -metat.__index:receivestatusline ./Me_Lua/h10/socket/http.lua /^function metat.__index:receivestatusline()$/;" f -metat.__index:receivestatusline ./Me_Lua/h13/socket/http.lua /^function metat.__index:receivestatusline()$/;" f -metat.__index:receivestatusline ./Mi_Lua/socket/http.lua /^function metat.__index:receivestatusline()$/;" f -metat.__index:send ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:send(sendt)$/;" f -metat.__index:send ./Me_Lua/h10/socket/smtp.lua /^function metat.__index:send(mailt)$/;" f -metat.__index:send ./Me_Lua/h10/socket/tp.lua /^function metat.__index:send(data)$/;" f -metat.__index:send ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:send(sendt)$/;" f -metat.__index:send ./Me_Lua/h13/socket/smtp.lua /^function metat.__index:send(mailt)$/;" f -metat.__index:send ./Me_Lua/h13/socket/tp.lua /^function metat.__index:send(data)$/;" f -metat.__index:send ./Mi_Lua/socket/ftp.lua /^function metat.__index:send(sendt)$/;" f -metat.__index:send ./Mi_Lua/socket/smtp.lua /^function metat.__index:send(mailt)$/;" f -metat.__index:send ./Mi_Lua/socket/tp.lua /^function metat.__index:send(data)$/;" f -metat.__index:sendbody ./Me_Lua/h10/socket/http.lua /^function metat.__index:sendbody(headers, source, step)$/;" f -metat.__index:sendbody ./Me_Lua/h13/socket/http.lua /^function metat.__index:sendbody(headers, source, step)$/;" f -metat.__index:sendbody ./Mi_Lua/socket/http.lua /^function metat.__index:sendbody(headers, source, step)$/;" f -metat.__index:sendheaders ./Me_Lua/h10/socket/http.lua /^function metat.__index:sendheaders(tosend)$/;" f -metat.__index:sendheaders ./Me_Lua/h13/socket/http.lua /^function metat.__index:sendheaders(tosend)$/;" f -metat.__index:sendheaders ./Mi_Lua/socket/http.lua /^function metat.__index:sendheaders(headers)$/;" f -metat.__index:sendrequestline ./Me_Lua/h10/socket/http.lua /^function metat.__index:sendrequestline(method, uri)$/;" f -metat.__index:sendrequestline ./Me_Lua/h13/socket/http.lua /^function metat.__index:sendrequestline(method, uri)$/;" f -metat.__index:sendrequestline ./Mi_Lua/socket/http.lua /^function metat.__index:sendrequestline(method, uri)$/;" f -metat.__index:sink ./Me_Lua/h10/socket/tp.lua /^function metat.__index:sink(snk, pat)$/;" f -metat.__index:sink ./Me_Lua/h13/socket/tp.lua /^function metat.__index:sink(snk, pat)$/;" f -metat.__index:sink ./Mi_Lua/socket/tp.lua /^function metat.__index:sink(snk, pat)$/;" f -metat.__index:source ./Me_Lua/h10/socket/tp.lua /^function metat.__index:source(source, step)$/;" f -metat.__index:source ./Me_Lua/h13/socket/tp.lua /^function metat.__index:source(source, step)$/;" f -metat.__index:source ./Mi_Lua/socket/tp.lua /^function metat.__index:source(source, step)$/;" f -metat.__index:type ./Me_Lua/h10/socket/ftp.lua /^function metat.__index:type(type)$/;" f -metat.__index:type ./Me_Lua/h13/socket/ftp.lua /^function metat.__index:type(type)$/;" f -metat.__index:type ./Mi_Lua/socket/ftp.lua /^function metat.__index:type(type)$/;" f -mimedecode_message_body ./Mi_Lua/luci/http/protocol.lua /^function mimedecode_message_body( src, msg, filecb )$/;" f -min ./Mi_Lua/luci/cbi/datatypes.lua /^function min(val, min)$/;" f -minlength ./Mi_Lua/luci/cbi/datatypes.lua /^function minlength(val, min)$/;" f -mk_etag ./Mi_Lua/luci/http/protocol/conditionals.lua /^function mk_etag( stat )$/;" f -mkdir ./Mi_Lua/luci/fs.lua /^function mkdir(path, recursive)$/;" f -mkdirr ./Mi_Lua/nixio/fs.lua /^function mkdirr(dest, mode)$/;" f -modifier ./Me_Lua/h10/luci/dispatcher.lua /^function modifier(func, order)$/;" f -modifier ./Me_Lua/h13/luci/dispatcher.lua /^function modifier(func, order)$/;" f -modifier ./Mi_Lua/luci/dispatcher.lua /^function modifier(func, order)$/;" f -modify ./Mi_Lua/luci/view/web/setting/wifi_set_mini.htm /^ function modify (){$/;" f -modify ./Mi_Lua/luci/view/web/setting/wifi_set_pro.htm /^ function modify (){$/;" f -modisort ./Me_Lua/h10/luci/dispatcher.lua /^ local function modisort(a,b)$/;" f -modisort ./Me_Lua/h13/luci/dispatcher.lua /^ local function modisort(a,b)$/;" f -modisort ./Mi_Lua/luci/dispatcher.lua /^ local function modisort(a,b)$/;" f -module ("nixio.fs", function(m) setmetatable(m, {__index ./Mi_Lua/nixio/fs.lua /^module ("nixio.fs", function(m) setmetatable(m, {__index = nixio.fs}) end)$/;" f -moduleOn ./Mi_Lua/xiaoqiang/module/XQDMZModule.lua /^function moduleOn()$/;" f -moduleOn ./Mi_Lua/xiaoqiang/module/XQPortForward.lua /^function moduleOn()$/;" f -mountThings ./Mi_Lua/luci/controller/api/xqsystem.lua /^function mountThings()$/;" f -mountThings ./Mi_Lua/luci/view/web/setting/lamp.htm /^ function mountThings(){$/;" f -mounts ./Mi_Lua/luci/sys.lua /^function mounts()$/;" f -move ./Mi_Lua/nixio/fs.lua /^function move(src, dest)$/;" f -mover ./Mi_Lua/nixio/fs.lua /^function mover(src, dest)$/;" f -mtime ./Mi_Lua/luci/fs.lua /^function mtime(path)$/;" f -name.write ./Mi_Lua/luci/model/cbi/firewall/zone-details.lua /^function name.write(self, section, value)$/;" f -navigation ./Mi_Lua/luci/view/themes/openwrt.org/header.htm /^