Home
last modified time | relevance | path

Searched refs:groups (Results 1 – 25 of 41) sorted by relevance

12

/AliOS-Things-master/components/py_engine/engine/lib/tinytest/
A Dtinytest.c286 for (i=0; groups[i].prefix; ++i) {
287 for (j=0; groups[i].cases[j].name; ++j) {
290 groups[i].prefix, testcase->name);
322 tinytest_set_flag_(groups, "..", 1, 0);
409 usage(groups, 0);
411 usage(groups, 1);
417 int r = process_test_option(groups, v[i]);
431 for (i=0; groups[i].prefix; ++i)
432 for (j=0; groups[i].cases[j].name; ++j)
434 testcase_run_one(&groups[i],
[all …]
A Dtinytest.h86 #define tinytest_skip(groups, named) \ argument
87 tinytest_set_flag_(groups, named, 1, TT_SKIP)
96 int tinytest_main(int argc, const char **argv, struct testgroup_t *groups);
/AliOS-Things-master/components/py_engine/tests/extmod/
A Dure_groups.py14 m.groups
21 print(m.groups())
24 print(m.groups())
27 print(re.match(r"(a)?b(c)", "abc").groups())
30 print(re.match(r"(a)?b(c)", "bc").groups())
33 print(re.match(r"abc", "abc").groups())
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/src/
A Dlpn.c586 for (i = 0; i < ARRAY_SIZE(lpn->groups); i++) { in lpn_group_add()
587 if (lpn->groups[i] == group) { in lpn_group_add()
593 free_slot = &lpn->groups[i]; in lpn_group_add()
611 for (i = 0; i < ARRAY_SIZE(lpn->groups); i++) { in lpn_group_del()
612 if (lpn->groups[i] == group) { in lpn_group_del()
618 lpn->groups[i] = BT_MESH_ADDR_UNASSIGNED; in lpn_group_del()
827 if (groups[i] != BT_MESH_ADDR_UNASSIGNED) { in bt_mesh_lpn_group_del()
828 BT_DBG("group 0x%04x", groups[i]); in bt_mesh_lpn_group_del()
829 lpn_group_del(groups[i]); in bt_mesh_lpn_group_del()
890 for (i = 0; i < ARRAY_SIZE(lpn->groups); i++) { in bt_mesh_lpn_friend_sub_cfm()
[all …]
A Dcfg_srv.c1580 bt_mesh_lpn_group_del(mod->groups, ARRAY_SIZE(mod->groups)); in mod_sub_overwrite()
1585 if (ARRAY_SIZE(mod->groups) > 0) { in mod_sub_overwrite()
1586 mod->groups[0] = sub_addr; in mod_sub_overwrite()
1638 bt_mesh_lpn_group_del(mod->groups, ARRAY_SIZE(mod->groups)); in mod_sub_del_all()
1815 mod->groups[i] = sub_addr; in mod_sub_va_add()
1820 if (i == ARRAY_SIZE(mod->groups)) { in mod_sub_va_add()
1940 bt_mesh_lpn_group_del(mod->groups, ARRAY_SIZE(mod->groups)); in mod_sub_va_overwrite()
1945 if (ARRAY_SIZE(mod->groups) > 0) { in mod_sub_va_overwrite()
1948 mod->groups[0] = sub_addr; in mod_sub_va_overwrite()
3564 model->groups[i] = sub_addr; in bt_mesh_mod_sub_add()
[all …]
A Dsettings.c658 (void)memset(mod->groups, 0, sizeof(mod->groups)); in mod_set_sub()
665 len = read_cb(cb_arg, mod->groups, sizeof(mod->groups)); in mod_set_sub()
671 BT_DBG("Decoded %zu subscribed group addresses for model", len / sizeof(mod->groups[0])); in mod_set_sub()
1471 u16_t groups[CONFIG_BT_MESH_MODEL_GROUP_COUNT]; in store_pending_mod_sub() local
1475 for (i = 0, count = 0; i < ARRAY_SIZE(mod->groups); i++) { in store_pending_mod_sub()
1476 if (mod->groups[i] != BT_MESH_ADDR_UNASSIGNED) { in store_pending_mod_sub()
1477 groups[count++] = mod->groups[i]; in store_pending_mod_sub()
1484 err = settings_save_one(path, groups, count * sizeof(groups[0])); in store_pending_mod_sub()
A Daccess.c380 for (i = 0; i < ARRAY_SIZE(mod->groups); i++) { in bt_mesh_model_find_group()
381 if (mod->groups[i] == addr) { in bt_mesh_model_find_group()
383 return &mod->groups[i]; in bt_mesh_model_find_group()
/AliOS-Things-master/components/ble_host/bt_host/host/
A Dtesting.c100 int bt_test_mesh_lpn_group_remove(u16_t *groups, size_t groups_count) in bt_test_mesh_lpn_group_remove() argument
102 bt_mesh_lpn_group_del(groups, groups_count); in bt_test_mesh_lpn_group_remove()
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/inc/api/mesh/
A Daccess.h183 ….pub = _pub, .groups = { [0 ...(CONFIG_BT_MESH_MODEL_GROUP_COUNT - 1)] = BT_MESH_ADDR_UNASSIGNED }…
191 .groups = { [0 ...(CONFIG_BT_MESH_MODEL_GROUP_COUNT - 1)] = BT_MESH_ADDR_UNASSIGNED }, \
347 u16_t groups[CONFIG_BT_MESH_MODEL_GROUP_COUNT]; member
/AliOS-Things-master/components/py_engine/tests/feature_check/
A DREADME4 testsuite to decide what other test groups to run/exclude.
/AliOS-Things-master/components/ble_host/bt_host/include/bluetooth/
A Dtesting.h83 int bt_test_mesh_lpn_group_remove(u16_t *groups, size_t groups_count);
/AliOS-Things-master/components/ble_mesh/bt_mesh/core/inc/
A Dlpn.h58 void bt_mesh_lpn_group_del(u16_t *groups, size_t group_count);
A Dnet.h195 u16_t groups[LPN_GROUPS]; member
/AliOS-Things-master/components/py_engine/engine/tools/autobuild/
A Dremove_old_firmware.py34 dir, board, date, version = m.groups()
/AliOS-Things-master/components/py_engine/engine/tools/
A Dpydfu.py468 num_pages = int(seg_match.groups()[0], 10)
469 page_size = int(seg_match.groups()[1], 10)
470 multiplier = seg_match.groups()[2]
/AliOS-Things-master/components/py_engine/engine/extmod/
A Dmodure.c91 mp_obj_tuple_t *groups = MP_OBJ_TO_PTR(mp_obj_new_tuple(self->num_matches - 1, NULL)); in match_groups() local
93 groups->items[i - 1] = match_group(self_in, MP_OBJ_NEW_SMALL_INT(i)); in match_groups()
95 return MP_OBJ_FROM_PTR(groups); in match_groups()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dtest262_errors.txt5 test262/test/built-ins/RegExp/named-groups/non-unicode-property-names-valid.js:46: SyntaxError: inv…
6 test262/test/built-ins/RegExp/named-groups/non-unicode-property-names-valid.js:46: strict mode: Syn…
A Dtest262.conf128 regexp-named-groups
A Dquickjs-atom.h167 DEF(groups, "groups")
/AliOS-Things-master/components/ble_mesh/bt_shell/bt_mesh/
A Dshell.c1866 for (i = 0; i < ARRAY_SIZE(root_models[model_idx].groups); i++) { in cmd_local_model_sub_set()
1867 if (root_models[model_idx].groups[i] == BT_MESH_ADDR_UNASSIGNED) { in cmd_local_model_sub_set()
1868 root_models[model_idx].groups[i] = sub_addr; in cmd_local_model_sub_set()
1873 if (i == ARRAY_SIZE(root_models[model_idx].groups)) { in cmd_local_model_sub_set()
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/
A DREADME.mux256 Web: http://groups.google.com/a/webmproject.org/group/webp-discuss
/AliOS-Things-master/components/ble_mesh/bt_mesh/
A DKconfig360 int "Number of groups the LPN can subscribe to"
364 Maximum number of groups that the LPN can subscribe to.
/AliOS-Things-master/components/SDL2/docs/
A Ddoxyfile269 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
1348 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1349 # in the modules index. If set to NO, only the current project's groups will
1432 # will generate a graph for groups, showing the direct groups dependencies
/AliOS-Things-master/components/SDL2/src/hidapi/doxygen/
A DDoxyfile258 # Set the SUBGROUPING tag to YES (the default) to allow class member groups of
1419 # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1420 # in the modules index. If set to NO, only the current project's groups will
1511 # will generate a graph for groups, showing the direct groups dependencies
/AliOS-Things-master/components/SDL2/include/
A DSDL_opengles2_gl2ext.h1259 … void GL_APIENTRY glGetPerfMonitorGroupsAMD (GLint *numGroups, GLsizei groupsSize, GLuint *groups);
1271 …APIENTRYP PFNGLGETPERFMONITORGROUPSAMDPROC) (GLint *numGroups, GLsizei groupsSize, GLuint *groups);

Completed in 50 milliseconds

12