Lines Matching defs:L
139 #if defined(__cplusplus) && __cplusplus >=201103L
154 #if ((defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) || \
155 (defined __cplusplus && __cplusplus >= 201103L) || \
843 #define lua_pushrotable(L,p)\
844 lua_newtable(L);\
846 SWIG_Lua_elua_emulate_register(L,(swig_elua_entry*)(p));
923 static const char *(lua_tolstring)(lua_State *L, int idx, size_t *len) {
926 const char *result = lua_tostring(L, idx);
927 if (len) *len = lua_strlen(L, idx);
937 # define lua_pushglobaltable(L) lua_pushvalue(L, LUA_GLOBALSINDEX)
942 # define lua_absindex(L,i) ((i)>0 || (i) <= LUA_REGISTRYINDEX ? (i) : lua_gettop(L) + (i) + 1)
947 #define lua_rawsetp(L,index,ptr)\
948 lua_pushlightuserdata(L,(void*)(ptr));\
949 lua_insert(L,-2);\
950 lua_rawset(L,index);
952 #define lua_rawgetp(L,index,ptr)\
953 lua_pushlightuserdata(L,(void*)(ptr));\
954 lua_rawget(L,index);
966 SWIG_Lua_pusherrstring (lua_State *L, const char *str)
968 luaL_where (L, 1);
969 lua_pushstring (L, str);
970 lua_concat (L, 2);
977 SWIG_Lua_pushferrstring (lua_State *L, const char *fmt, ...)
981 luaL_where(L, 1);
982 lua_pushvfstring(L, fmt, argp);
984 lua_concat(L, 2);
1076 #define SWIG_NewPointerObj(L, ptr, type, owner) SWIG_Lua_NewPointerObj(L, (void *)ptr, type, owner)
1077 #define SWIG_ConvertPtr(L,idx, ptr, type, flags) SWIG_Lua_ConvertPtr(L,idx,ptr,type,flags)
1078 #define SWIG_MustGetPtr(L,idx, type,flags, argnum,fnname) SWIG_Lua_MustGetPtr(L,idx, type,flags, argnum,fnname)
1080 #define SWIG_ConvertMember(L, idx, ptr, sz, ty) SWIG_Lua_ConvertPacked(L, idx, ptr, sz, ty)
1081 #define SWIG_NewMemberObj(L, ptr, sz, type) SWIG_Lua_NewPackedObj(L, ptr, sz, type)
1090 do { if (!(expr)) { SWIG_Lua_pusherrstring(L, (char *) msg); goto fail; } } while (0)
1096 {SWIG_Lua_pushferrstring(L,"Error in %s (arg %d), expected '%s' got '%s'",\
1097 func_name,argnum,type,SWIG_Lua_typename(L,argnum));\
1102 if (lua_gettop(L)<a || lua_gettop(L)>b) \
1103 {SWIG_Lua_pushferrstring(L,"Error in %s expected %d..%d args, got %d",func_name,a,b,lua_gettop(L));\
1107 #define SWIG_Lua_get_table(L,n) \
1108 (lua_pushstring(L, n), lua_rawget(L,-2))
1110 #define SWIG_Lua_add_function(L,n,f) \
1111 (lua_pushstring(L, n), \
1112 lua_pushcfunction(L, f), \
1113 lua_rawset(L,-3))
1115 #define SWIG_Lua_add_boolean(L,n,b) \
1116 (lua_pushstring(L, n), \
1117 lua_pushboolean(L, b), \
1118 lua_rawset(L,-3))
1121 #define SWIG_isptrtype(L,I) (lua_isuserdata(L,I) || lua_isnil(L,I))
1131 SWIG_Lua_GetModule(lua_State *L) {
1133 lua_pushstring(L,"swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME);
1134 lua_rawget(L,LUA_REGISTRYINDEX);
1135 if (lua_islightuserdata(L,-1))
1136 ret=(swig_module_info*)lua_touserdata(L,-1);
1137 lua_pop(L,1); /* tidy */
1142 SWIG_Lua_SetModule(lua_State *L, swig_module_info *module) {
1144 lua_pushstring(L,"swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME);
1145 lua_pushlightuserdata(L,(void*)module);
1146 lua_rawset(L,LUA_REGISTRYINDEX);
1156 SWIGINTERN int SWIG_Lua_set_immutable(lua_State *L)
1160 lua_pop(L,1); /* remove it */
1161 luaL_error(L,"This variable is immutable");
1168 SWIGRUNTIME void SWIG_Lua_NewPointerObj(lua_State *L,void *ptr,swig_type_info *type, int own);
1169 SWIGRUNTIME void SWIG_Lua_NewPackedObj(lua_State *L,void *ptr,size_t size,swig_type_info *type);
1173 SWIGINTERN void SWIG_Lua_elua_emulate_register(lua_State *L, const swig_elua_entry *table)
1176 assert(lua_istable(L,-1));
1177 target_table = lua_gettop(L);
1179 lua_rawgetp(L, LUA_REGISTRYINDEX, &swig_lua_elua_emulate_unique_key);
1180 if(lua_isnil(L,-1)) {
1181 lua_pop(L,1);
1182 lua_newtable(L);
1183 lua_pushvalue(L,-1);
1184 lua_rawsetp(L,LUA_REGISTRYINDEX,(void*)(&swig_lua_elua_emulate_unique_key));
1186 parsed_tables_array = lua_gettop(L);
1187 lua_pushvalue(L,target_table);
1188 lua_rawsetp(L, parsed_tables_array, table);
1190 const int SWIGUNUSED pairs_start = lua_gettop(L);
1197 lua_pushstring(L,entry->key.key.strkey);
1202 lua_pushnumber(L,entry->key.key.numkey);
1205 lua_pushnil(L);
1212 lua_pushstring(L,entry->value.value.string);
1215 lua_pushnumber(L,entry->value.value.number);
1218 lua_pushcfunction(L,entry->value.value.function);
1221 lua_rawgetp(L,parsed_tables_array, entry->value.value.table);
1222 table_parsed = !lua_isnil(L,-1);
1224 lua_pop(L,1); /*remove nil */
1225 lua_newtable(L);
1226 SWIG_Lua_elua_emulate_register(L,entry->value.value.table);
1229 assert(lua_istable(L,-1));
1230 lua_pushvalue(L,-1);
1231 lua_setmetatable(L,target_table);
1237 SWIG_NewMemberObj(L,entry->value.value.userdata.pvalue,
1241 SWIG_NewPointerObj(L,entry->value.value.userdata.pvalue,
1245 lua_pushnil(L);
1250 assert(lua_gettop(L) == pairs_start + 2);
1251 lua_rawset(L,target_table);
1253 lua_pop(L,1); /* Removing parsed tables storage */
1254 assert(lua_gettop(L) == target_table);
1257 SWIGINTERN void SWIG_Lua_elua_emulate_register_clear(lua_State *L)
1259 lua_pushnil(L);
1260 lua_rawsetp(L, LUA_REGISTRYINDEX, &swig_lua_elua_emulate_unique_key);
1263 SWIGINTERN void SWIG_Lua_get_class_registry(lua_State *L);
1265 SWIGINTERN int SWIG_Lua_emulate_elua_getmetatable(lua_State *L)
1268 SWIG_Lua_get_class_registry(L);
1269 lua_getfield(L,-1,"lua_getmetatable");
1270 lua_remove(L,-2); /* remove the registry*/
1271 assert(!lua_isnil(L,-1));
1272 lua_pushvalue(L,1);
1273 assert(lua_gettop(L) == 3); /* object | function | object again */
1274 lua_call(L,1,1);
1275 if(!lua_isnil(L,-1)) /*There is an ordinary metatable */
1278 assert(lua_gettop(L) == 2);
1279 if(lua_istable(L,-2)) {
1280 lua_pop(L,1); /*remove the nil*/
1281 lua_getfield(L,-1, SWIG_LUA_ELUA_EMUL_METATABLE_KEY);
1283 assert(lua_gettop(L) == 2);
1287 lua_error(L);
1291 SWIGINTERN void SWIG_Lua_emulate_elua_swap_getmetatable(lua_State *L)
1293 SWIG_Lua_get_class_registry(L);
1294 lua_pushglobaltable(L);
1295 lua_pushstring(L,"lua_getmetatable");
1296 lua_getfield(L,-2,"getmetatable");
1297 assert(!lua_isnil(L,-1));
1298 lua_rawset(L,-4);
1299 lua_pushstring(L, "getmetatable");
1300 lua_pushcfunction(L, SWIG_Lua_emulate_elua_getmetatable);
1301 lua_rawset(L,-3);
1302 lua_pop(L,2);
1312 SWIGINTERN int SWIG_Lua_namespace_get(lua_State *L)
1318 assert(lua_istable(L,-2)); /* just in case */
1319 lua_getmetatable(L,-2);
1320 assert(lua_istable(L,-1));
1321 SWIG_Lua_get_table(L,".get"); /* find the .get table */
1322 assert(lua_istable(L,-1));
1324 lua_pushvalue(L,2); /* key */
1325 lua_rawget(L,-2);
1326 lua_remove(L,-2); /* stack tidy, remove .get table */
1327 if (lua_iscfunction(L,-1))
1329 lua_call(L,0,1); /* 1 value in (userdata),1 out (result) */
1330 lua_remove(L,-2); /* stack tidy, remove metatable */
1333 lua_pop(L,1); /* remove whatever was there */
1335 SWIG_Lua_get_table(L,".fn"); /* find the .get table */
1336 assert(lua_istable(L,-1)); /* just in case */
1337 lua_pushvalue(L,2); /* key */
1338 lua_rawget(L,-2); /* look for the fn */
1339 lua_remove(L,-2); /* stack tidy, remove .fn table */
1340 if (lua_isfunction(L,-1)) /* note: whether it's a C function or lua function */
1342 lua_remove(L,-2); /* stack tidy, remove metatable */
1345 lua_pop(L,1); /* remove whatever was there */
1349 SWIGINTERN int SWIG_Lua_namespace_set(lua_State *L)
1357 assert(lua_istable(L,1));
1358 lua_getmetatable(L,1); /* get the meta table */
1359 assert(lua_istable(L,-1));
1361 SWIG_Lua_get_table(L,".set"); /* find the .set table */
1362 if (lua_istable(L,-1))
1365 lua_pushvalue(L,2); /* key */
1366 lua_rawget(L,-2);
1367 if (lua_iscfunction(L,-1))
1369 lua_pushvalue(L,3); /* value */
1370 lua_call(L,1,0);
1373 lua_pop(L,1); /* remove the value */
1375 lua_pop(L,1); /* remove the value .set table */
1376 lua_pop(L,1); /* remote metatable */
1377 lua_rawset(L,-3);
1382 SWIGINTERN void SWIG_Lua_InstallConstants(lua_State *L, swig_lua_const_info constants[]); /* forward declaration */
1383 SWIGINTERN void SWIG_Lua_add_variable(lua_State *L,const char *name,lua_CFunction getFn,lua_CFunction setFn); /* forward declaration */
1384 SWIGINTERN void SWIG_Lua_class_register(lua_State *L,swig_lua_class *clss);
1387 SWIGINTERN int SWIG_Lua_add_namespace_details(lua_State *L, swig_lua_namespace *ns)
1391 assert(lua_istable(L,-1));
1392 SWIG_Lua_InstallConstants(L, ns->ns_constants);
1396 SWIG_Lua_add_function(L,ns->ns_methods[i].name,ns->ns_methods[i].func);
1398 lua_getmetatable(L,-1);
1402 SWIG_Lua_add_variable(L,ns->ns_attributes[i].name,ns->ns_attributes[i].getmethod,ns->ns_attributes[i].setmethod);
1406 lua_pop(L,1);
1411 SWIGINTERN void SWIG_Lua_add_namespace_classes(lua_State *L, swig_lua_namespace *ns)
1416 assert(lua_istable(L,-1));
1422 SWIG_Lua_class_register(L, *classes);
1433 SWIGINTERN void SWIG_Lua_namespace_register(lua_State *L, swig_lua_namespace *ns, int reg)
1437 const int SWIGUNUSED begin = lua_gettop(L);
1438 assert(lua_istable(L,-1)); /* just in case. This is supposed to be module table or parent namespace table */
1439 lua_checkstack(L,5);
1440 lua_newtable(L); /* namespace itself */
1441 lua_newtable(L); /* metatable for namespace */
1444 lua_pushstring(L,".get");
1445 lua_newtable(L);
1446 lua_rawset(L,-3);
1448 lua_pushstring(L,".set");
1449 lua_newtable(L);
1450 lua_rawset(L,-3);
1452 lua_pushstring(L,".fn");
1453 lua_newtable(L);
1454 lua_rawset(L,-3);
1457 SWIG_Lua_add_function(L,"__index",SWIG_Lua_namespace_get);
1458 SWIG_Lua_add_function(L,"__newindex",SWIG_Lua_namespace_set);
1460 lua_setmetatable(L,-2); /* set metatable */
1463 SWIG_Lua_add_namespace_details(L,ns);
1465 SWIG_Lua_add_namespace_classes(L,ns);
1470 SWIG_Lua_namespace_register(L, *sub_namespace, 1);
1471 lua_pop(L,1); /* removing sub-namespace table */
1477 lua_pushstring(L,ns->name);
1478 lua_pushvalue(L,-2);
1479 lua_rawset(L,-4); /* add namespace to module table */
1481 assert(lua_gettop(L) == begin+1);
1489 SWIGINTERN void SWIG_Lua_get_class_metatable(lua_State *L,const char *cname);
1493 SWIGINTERN int SWIG_Lua_iterate_bases(lua_State *L, swig_type_info * SWIGUNUSED swig_type,
1498 int last_arg = lua_gettop(L);/* position of last argument */
1504 lua_getmetatable(L,first_arg);
1508 SWIG_Lua_get_table(L,".bases");
1509 assert(lua_istable(L,-1));
1510 bases_count = lua_rawlen(L,-1);
1511 bases_table = lua_gettop(L);
1516 swig_module_info *module=SWIG_GetModule(L);
1532 int subcall_first_arg = lua_gettop(L) + 1;/* Here a copy of first_arg and arguments begin */
1536 lua_pushvalue(L,j);
1537 subcall_last_arg = lua_gettop(L);
1543 lua_rawgeti(L,bases_table,i+1);
1545 if(lua_isnil(L,-1)) {
1547 lua_pop(L,1);
1557 SWIG_Lua_get_class_metatable(L,base_class->fqname);
1565 assert(lua_isuserdata(L, subcall_first_arg));
1566 assert(lua_istable(L,-1));
1567 lua_setmetatable(L,subcall_first_arg); /* Set new metatable */
1568 assert(lua_gettop(L) == subcall_last_arg);
1569 result = func(L, base_swig_type,subcall_first_arg, ret); /* Forward call */
1575 lua_pushvalue(L,original_metatable);
1576 lua_setmetatable(L,first_arg);
1580 lua_remove(L,last_arg+1);
1583 lua_pop(L, lua_gettop(L) - last_arg);
1585 if(ret) assert(lua_gettop(L) == last_arg + *ret);
1593 SWIGINTERN int SWIG_Lua_class_do_get_item(lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg, int *ret)
1600 int substack_start = lua_gettop(L)-2;
1603 lua_checkstack(L,5);
1604 assert(lua_isuserdata(L,-2)); /* just in case */
1605 lua_getmetatable(L,-2); /* get the meta table */
1606 assert(lua_istable(L,-1)); /* just in case */
1609 SWIG_Lua_get_table(L,"__getitem"); /* find the __getitem fn */
1610 if (lua_iscfunction(L,-1)) /* if it's there */
1612 lua_pushvalue(L,substack_start+1); /* the userdata */
1613 lua_pushvalue(L,substack_start+2); /* the parameter */
1614 lua_call(L,2,1); /* 2 value in (userdata),1 out (result) */
1615 lua_remove(L,-2); /* stack tidy, remove metatable */
1619 lua_pop(L,1);
1621 lua_pop(L,1);
1623 bases_search_result = SWIG_Lua_iterate_bases(L,type,substack_start+1,SWIG_Lua_class_do_get_item,ret);
1632 SWIGINTERN int SWIG_Lua_class_do_get(lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg, int *ret)
1639 int substack_start = lua_gettop(L)-2;
1642 lua_checkstack(L,5);
1643 assert(lua_isuserdata(L,-2)); /* just in case */
1644 lua_getmetatable(L,-2); /* get the meta table */
1645 assert(lua_istable(L,-1)); /* just in case */
1646 SWIG_Lua_get_table(L,".get"); /* find the .get table */
1647 assert(lua_istable(L,-1)); /* just in case */
1649 lua_pushvalue(L,substack_start+2); /* key */
1650 lua_rawget(L,-2);
1651 lua_remove(L,-2); /* stack tidy, remove .get table */
1652 if (lua_iscfunction(L,-1))
1654 lua_pushvalue(L,substack_start+1); /* the userdata */
1655 lua_call(L,1,1); /* 1 value in (userdata),1 out (result) */
1656 lua_remove(L,-2); /* stack tidy, remove metatable */
1661 lua_pop(L,1); /* remove whatever was there */
1663 SWIG_Lua_get_table(L,".fn"); /* find the .fn table */
1664 assert(lua_istable(L,-1)); /* just in case */
1665 lua_pushvalue(L,substack_start+2); /* key */
1666 lua_rawget(L,-2); /* look for the fn */
1667 lua_remove(L,-2); /* stack tidy, remove .fn table */
1668 if (lua_isfunction(L,-1)) /* note: if it's a C function or lua function */
1670 lua_remove(L,-2); /* stack tidy, remove metatable */
1675 lua_pop(L,1); /* remove whatever was there */
1677 lua_pop(L,1);
1679 bases_search_result = SWIG_Lua_iterate_bases(L,type,substack_start+1,SWIG_Lua_class_do_get,ret);
1685 SWIGINTERN int SWIG_Lua_class_get(lua_State *L)
1695 assert(lua_isuserdata(L,1));
1696 usr=(swig_lua_userdata*)lua_touserdata(L,1); /* get data */
1698 result = SWIG_Lua_class_do_get(L,type,1,&ret);
1702 result = SWIG_Lua_class_do_get_item(L,type,1,&ret);
1712 SWIGINTERN int SWIG_Lua_class_do_set(lua_State *L, swig_type_info *type, int first_arg, int *ret)
1721 int substack_start = lua_gettop(L) - 3;
1722 lua_checkstack(L,5);
1723 assert(lua_isuserdata(L,substack_start+1)); /* just in case */
1724 lua_getmetatable(L,substack_start+1); /* get the meta table */
1725 assert(lua_istable(L,-1)); /* just in case */
1729 SWIG_Lua_get_table(L,".set"); /* find the .set table */
1730 if (lua_istable(L,-1))
1733 lua_pushvalue(L,substack_start+2); /* key */
1734 lua_rawget(L,-2);
1735 lua_remove(L,-2); /* tidy stack, remove .set table */
1736 if (lua_iscfunction(L,-1))
1738 lua_pushvalue(L,substack_start+1); /* userdata */
1739 lua_pushvalue(L,substack_start+3); /* value */
1740 lua_call(L,2,0);
1741 lua_remove(L,substack_start+4); /*remove metatable*/
1744 lua_pop(L,1); /* remove the value */
1746 lua_pop(L,1); /* remove the answer for .set table request*/
1750 SWIG_Lua_get_table(L,"__setitem"); /* find the fn */
1751 if (lua_iscfunction(L,-1)) /* if it's there */
1753 lua_pushvalue(L,substack_start+1); /* the userdata */
1754 lua_pushvalue(L,substack_start+2); /* the parameter */
1755 lua_pushvalue(L,substack_start+3); /* the value */
1756 lua_call(L,3,0); /* 3 values in ,0 out */
1757 lua_remove(L,-2); /* stack tidy, remove metatable */
1760 lua_pop(L,1); /* remove value */
1762 lua_pop(L,1); /* remove metatable */
1764 bases_search_result = SWIG_Lua_iterate_bases(L,type,first_arg,SWIG_Lua_class_do_set,ret);
1767 assert(lua_gettop(L) == substack_start + 3);
1774 SWIGINTERN int SWIG_Lua_class_set(lua_State *L)
1785 assert(lua_isuserdata(L,1));
1786 usr=(swig_lua_userdata*)lua_touserdata(L,1); /* get data */
1788 result = SWIG_Lua_class_do_set(L,type,1,&ret);
1790 SWIG_Lua_pushferrstring(L,"Assignment not possible. No setter/member with this name. For custom assignments implement __setitem method.");
1791 lua_error(L);
1799 SWIGINTERN int SWIG_Lua_class_destruct(lua_State *L)
1805 assert(lua_isuserdata(L,-1)); /* just in case */
1806 usr=(swig_lua_userdata*)lua_touserdata(L,-1); /* get it */
1820 SWIGINTERN int SWIG_Lua_class_tostring(lua_State *L)
1825 assert(lua_isuserdata(L,1)); /* just in case */
1826 userData = (swig_lua_userdata*)lua_touserdata(L,1); /* get the userdata address */
1828 lua_pushfstring(L, "<userdata of type '%s' at %p>", userData->type->str, userData->ptr);
1833 SWIGINTERN int SWIG_Lua_class_disown(lua_State *L)
1838 assert(lua_isuserdata(L,-1)); /* just in case */
1839 usr=(swig_lua_userdata*)lua_touserdata(L,-1); /* get it */
1848 SWIGRUNTIME int SWIG_Lua_class_equal(lua_State *L)
1852 if (!lua_isuserdata(L,1) || !lua_isuserdata(L,2)) /* just in case */
1854 usr1=(swig_lua_userdata*)lua_touserdata(L,1); /* get data */
1855 usr2=(swig_lua_userdata*)lua_touserdata(L,2); /* get data */
1858 lua_pushboolean(L,result);
1863 SWIGINTERN void SWIG_Lua_populate_inheritable_metamethods(lua_State *L)
1865 SWIG_Lua_add_boolean(L, "__add", 1);
1866 SWIG_Lua_add_boolean(L, "__sub", 1);
1867 SWIG_Lua_add_boolean(L, "__mul", 1);
1868 SWIG_Lua_add_boolean(L, "__div", 1);
1869 SWIG_Lua_add_boolean(L, "__mod", 1);
1870 SWIG_Lua_add_boolean(L, "__pow", 1);
1871 SWIG_Lua_add_boolean(L, "__unm", 1);
1872 SWIG_Lua_add_boolean(L, "__len", 1 );
1873 SWIG_Lua_add_boolean(L, "__concat", 1 );
1874 SWIG_Lua_add_boolean(L, "__eq", 1);
1875 SWIG_Lua_add_boolean(L, "__lt", 1);
1876 SWIG_Lua_add_boolean(L, "__le", 1);
1877 SWIG_Lua_add_boolean(L, "__call", 1);
1878 SWIG_Lua_add_boolean(L, "__tostring", 1);
1879 SWIG_Lua_add_boolean(L, "__gc", 0);
1883 SWIGINTERN void SWIG_Lua_create_class_registry(lua_State *L)
1886 lua_pushstring(L,"SWIG");
1887 lua_newtable(L);
1891 lua_pushstring(L,".library");
1892 lua_newtable(L);
1895 lua_pushstring(L,"inheritable_metamethods");
1896 lua_newtable(L);
1898 SWIG_Lua_populate_inheritable_metamethods(L);
1899 lua_rawset(L,-3);
1901 lua_rawset(L,-3);
1903 lua_rawset(L,LUA_REGISTRYINDEX);
1907 SWIGINTERN void SWIG_Lua_get_class_registry(lua_State *L)
1910 lua_pushstring(L,"SWIG");
1911 lua_rawget(L,LUA_REGISTRYINDEX); /* get the registry */
1912 if (!lua_istable(L,-1)) /* not there */
1914 lua_pop(L,1); /* remove the result */
1915 SWIG_Lua_create_class_registry(L);
1917 lua_pushstring(L,"SWIG");
1918 lua_rawget(L,LUA_REGISTRYINDEX);
1922 SWIGINTERN void SWIG_Lua_get_inheritable_metamethods(lua_State *L)
1924 SWIG_Lua_get_class_registry(L);
1925 lua_pushstring(L, ".library");
1926 lua_rawget(L,-2);
1927 assert( !lua_isnil(L,-1) );
1928 lua_pushstring(L, "inheritable_metamethods");
1929 lua_rawget(L,-2);
1932 lua_remove(L,-2);
1933 lua_remove(L,-2);
1937 SWIGINTERN void SWIG_Lua_get_class_metatable(lua_State *L,const char *cname)
1939 SWIG_Lua_get_class_registry(L); /* get the registry */
1940 lua_pushstring(L,cname); /* get the name */
1941 lua_rawget(L,-2); /* get it */
1942 lua_remove(L,-2); /* tidy up (remove registry) */
1952 SWIGINTERN void SWIG_Lua_init_base_class(lua_State *L,swig_lua_class *clss)
1955 swig_module_info *module=SWIG_GetModule(L);
1969 SWIGINTERN void SWIG_Lua_merge_tables_by_index(lua_State *L, int target, int source)
1972 lua_pushnil(L);
1973 while (lua_next(L,source) != 0) {
1976 lua_pushvalue(L,-2); /* copy of index */
1977 lua_pushvalue(L,-2); /* copy of value */
1978 lua_rawset(L, target);
1979 lua_pop(L,1);
1985 SWIGINTERN void SWIG_Lua_merge_tables(lua_State *L, const char* name, int original, int base)
1988 lua_pushstring(L,name);
1989 lua_rawget(L,original);
1990 int original_table = lua_gettop(L);
1991 lua_pushstring(L,name);
1992 lua_rawget(L,base);
1993 int base_table = lua_gettop(L);
1994 SWIG_Lua_merge_tables_by_index(L, original_table, base_table);
1996 lua_pop(L,2);
2000 SWIGINTERN void SWIG_Lua_class_squash_base(lua_State *L, swig_lua_class *base_cls)
2003 assert(lua_istable(L,-1));
2004 int original = lua_gettop(L);
2005 SWIG_Lua_get_class_metatable(L,base_cls->fqname);
2006 int base = lua_gettop(L);
2007 SWIG_Lua_merge_tables(L, ".fn", original, base );
2008 SWIG_Lua_merge_tables(L, ".set", original, base );
2009 SWIG_Lua_merge_tables(L, ".get", original, base );
2010 lua_pop(L,1);
2014 SWIGINTERN void SWIG_Lua_class_squash_bases(lua_State *L, swig_lua_class *clss)
2017 SWIG_Lua_get_class_metatable(L,clss->fqname);
2026 SWIG_Lua_class_squash_base(L, clss->bases[i]);
2028 lua_pop(L,1); /*tidy stack*/
2034 SWIGINTERN void SWIG_Lua_add_variable(lua_State *L,const char *name,lua_CFunction getFn,lua_CFunction setFn)
2036 assert(lua_istable(L,-1)); /* just in case */
2037 SWIG_Lua_get_table(L,".get"); /* find the .get table */
2038 assert(lua_istable(L,-1)); /* just in case */
2039 SWIG_Lua_add_function(L,name,getFn);
2040 lua_pop(L,1); /* tidy stack (remove table) */
2043 SWIG_Lua_get_table(L,".set"); /* find the .set table */
2044 assert(lua_istable(L,-1)); /* just in case */
2045 SWIG_Lua_add_function(L,name,setFn);
2046 lua_pop(L,1); /* tidy stack (remove table) */
2051 SWIGINTERN void SWIG_Lua_add_class_static_details(lua_State *L, swig_lua_class *clss)
2055 assert(lua_istable(L,-1));
2059 SWIG_Lua_add_class_static_details(L,clss->bases[i]);
2062 SWIG_Lua_add_namespace_details(L, clss->cls_static);
2065 SWIGINTERN void SWIG_Lua_add_class_user_metamethods(lua_State *L, swig_lua_class *clss); /* forward declaration */
2068 SWIGINTERN void SWIG_Lua_add_class_instance_details(lua_State *L, swig_lua_class *clss)
2073 SWIG_Lua_get_table(L,".bases");
2074 assert(lua_istable(L,-1)); /* just in case */
2077 SWIG_Lua_get_class_metatable(L,clss->bases[i]->fqname);
2079 assert(lua_istable(L,-1));
2080 lua_rawseti(L,-2,i+1); /* In lua indexing starts from 1 */
2083 assert(lua_rawlen(L,-1) == bases_count);
2084 lua_pop(L,1); /* remove .bases table */
2087 SWIG_Lua_add_variable(L,clss->attributes[i].name,clss->attributes[i].getmethod,clss->attributes[i].setmethod);
2090 SWIG_Lua_get_table(L,".fn"); /* find the .fn table */
2091 assert(lua_istable(L,-1)); /* just in case */
2093 SWIG_Lua_add_function(L,clss->methods[i].name,clss->methods[i].func);
2095 lua_pop(L,1); /* tidy stack (remove table) */
2102 SWIG_Lua_add_function(L,clss->metatable[i].name,clss->metatable[i].func);
2110 SWIG_Lua_add_class_user_metamethods(L, clss);
2125 SWIGRUNTIME int SWIG_Lua_resolve_metamethod(lua_State *L); /*forward declaration*/
2130 * and it is a SWIG-generated C function.). It returns value on the top of the L and there is no garbage below the
2134 * metamethod_name_idx is index in L where metamethod name (as string) lies
2139 SWIGINTERN int SWIG_Lua_do_resolve_metamethod(lua_State *L, const swig_lua_class *clss, int metamethod_name_idx,
2147 SWIG_Lua_get_class_metatable(L, clss->fqname);
2148 lua_pushvalue(L, metamethod_name_idx);
2149 lua_rawget(L,-2);
2154 if (!lua_isnil(L,-1) && lua_tocfunction(L,-1) != SWIG_Lua_resolve_metamethod ) {
2155 lua_remove(L,-2); /* removing class metatable */
2158 lua_pop(L,2); /* remove class metatable and query result */
2164 result = SWIG_Lua_do_resolve_metamethod(L, clss->bases[i], metamethod_name_idx, 0);
2174 SWIGRUNTIME int SWIG_Lua_resolve_metamethod(lua_State *L)
2181 lua_checkstack(L,5);
2182 numargs = lua_gettop(L); /* number of arguments to pass to actual metamethod */
2185 lua_pushvalue(L, lua_upvalueindex(1)); /*Get function name*/
2186 metamethod_name_idx = lua_gettop(L);
2188 lua_pushvalue(L, lua_upvalueindex(2));
2189 clss = (const swig_lua_class*)(lua_touserdata(L,-1));
2190 lua_pop(L,1); /* remove lightuserdata with clss from stack */
2193 result = SWIG_Lua_do_resolve_metamethod(L, clss, metamethod_name_idx, 1);
2195 SWIG_Lua_pushferrstring(L,"The metamethod proxy is set, but it failed to find actual metamethod. Memory corruption is most likely explanation.");
2196 lua_error(L);
2200 lua_remove(L,-2); /* remove metamethod key */
2201 lua_insert(L,1); /* move function to correct position */
2202 lua_call(L, numargs, LUA_MULTRET);
2203 return lua_gettop(L); /* return all results */
2211 SWIGINTERN int SWIG_Lua_add_class_user_metamethod(lua_State *L, swig_lua_class *clss, const int metatable_index)
2218 assert(lua_isstring(L,-1));
2220 key_index = lua_gettop(L);
2223 lua_pushvalue(L,key_index); /* copy of the key */
2224 lua_gettable(L,metatable_index);
2225 if( !lua_isnil(L,-1) ) {
2226 lua_pop(L,1);
2229 lua_pop(L,1);
2235 SWIG_Lua_get_class_metatable(L, base->fqname);
2236 lua_pushvalue(L, key_index);
2237 lua_rawget(L, -2);
2238 if( !lua_isnil(L,-1) ) {
2239 lua_pushvalue(L, key_index);
2242 lua_pushvalue(L, key_index); /* first closure value is function name */
2243 lua_pushlightuserdata(L, clss); /* second closure value is swig_lua_class structure */
2244 lua_pushcclosure(L, SWIG_Lua_resolve_metamethod, 2);
2246 lua_rawset(L, metatable_index);
2249 lua_pop(L,1); /* remove function or nil */
2250 lua_pop(L,1); /* remove base class metatable */
2259 SWIGINTERN void SWIG_Lua_add_class_user_metamethods(lua_State *L, swig_lua_class *clss)
2266 SWIG_Lua_get_class_metatable(L, clss->fqname);
2267 metatable_index = lua_gettop(L);
2268 SWIG_Lua_get_inheritable_metamethods(L);
2269 assert(lua_istable(L,-1));
2270 metamethods_info_index = lua_gettop(L);
2271 lua_pushnil(L); /* first key */
2272 while(lua_next(L, metamethods_info_index) != 0 ) {
2274 const int is_inheritable = lua_toboolean(L,-2);
2275 lua_pop(L,1); /* remove value - we don't need it anymore */
2278 SWIG_Lua_add_class_user_metamethod(L,clss,metatable_index);
2282 lua_pop(L,1); /* remove inheritable metamethods table */
2285 lua_pushstring(L, "__tostring");
2286 lua_pushvalue(L,-1);
2287 lua_rawget(L,metatable_index);
2288 tostring_undefined = lua_isnil(L,-1);
2289 lua_pop(L,1);
2291 lua_pushcfunction(L, SWIG_Lua_class_tostring);
2292 lua_rawset(L, metatable_index);
2294 lua_pop(L,1); /* remove copy of the key */
2298 lua_pushstring(L, "__eq");
2299 lua_pushvalue(L,-1);
2300 lua_rawget(L,metatable_index);
2301 eq_undefined = lua_isnil(L,-1);
2302 lua_pop(L,1);
2304 lua_pushcfunction(L, SWIG_Lua_class_equal);
2305 lua_rawset(L, metatable_index);
2307 lua_pop(L,1); /* remove copy of the key */
2312 lua_pop(L,1); /* pop class metatable */
2316 SWIGINTERN void SWIG_Lua_class_register_static(lua_State *L, swig_lua_class *clss)
2318 const int SWIGUNUSED begin = lua_gettop(L);
2319 lua_checkstack(L,5); /* just in case */
2320 assert(lua_istable(L,-1)); /* just in case */
2323 SWIG_Lua_namespace_register(L,clss->cls_static, 1);
2325 assert(lua_istable(L,-1)); /* just in case */
2333 lua_getmetatable(L,-1);
2334 assert(lua_istable(L,-1)); /* just in case */
2335 SWIG_Lua_add_function(L,"__call", clss->constructor);
2336 lua_pop(L,1);
2339 assert(lua_istable(L,-1)); /* just in case */
2340 SWIG_Lua_add_class_static_details(L, clss);
2343 lua_pop(L,1);
2344 assert( lua_gettop(L) == begin );
2350 SWIGINTERN void SWIG_Lua_class_register_instance(lua_State *L,swig_lua_class *clss)
2352 const int SWIGUNUSED begin = lua_gettop(L);
2355 SWIG_Lua_get_class_registry(L); /* get the registry */
2356 lua_pushstring(L,clss->fqname); /* get the name */
2357 lua_rawget(L,-2);
2358 if(!lua_isnil(L,-1)) {
2359 lua_pop(L,2);
2360 assert(lua_gettop(L)==begin);
2363 lua_pop(L,2); /* tidy stack */
2367 SWIG_Lua_class_register_instance(L,clss->bases[i]);
2370 SWIG_Lua_get_class_registry(L); /* get the registry */
2371 lua_pushstring(L,clss->fqname); /* get the name */
2372 lua_newtable(L); /* create the metatable */
2379 int new_metatable_index = lua_absindex(L,-1);
2383 SWIG_Lua_get_class_metatable(L,clss->bases[i]->fqname);
2384 base_metatable = lua_absindex(L,-1);
2385 SWIG_Lua_merge_tables_by_index(L,new_metatable_index, base_metatable);
2386 lua_pop(L,1);
2392 lua_pushstring(L,".type");
2393 lua_pushstring(L,clss->fqname);
2394 lua_rawset(L,-3);
2396 lua_pushstring(L,".bases");
2397 lua_newtable(L);
2398 lua_rawset(L,-3);
2400 lua_pushstring(L,".get");
2401 lua_newtable(L);
2402 lua_rawset(L,-3);
2404 lua_pushstring(L,".set");
2405 lua_newtable(L);
2406 lua_rawset(L,-3);
2408 lua_pushstring(L,".fn");
2409 lua_newtable(L);
2411 SWIG_Lua_add_function(L,"__disown",SWIG_Lua_class_disown);
2412 lua_rawset(L,-3);
2414 SWIG_Lua_add_function(L,"__index",SWIG_Lua_class_get);
2415 SWIG_Lua_add_function(L,"__newindex",SWIG_Lua_class_set);
2416 SWIG_Lua_add_function(L,"__gc",SWIG_Lua_class_destruct);
2418 lua_rawset(L,-3); /* metatable into registry */
2419 lua_pop(L,1); /* tidy stack (remove registry) */
2420 assert(lua_gettop(L) == begin);
2424 SWIG_Lua_class_squash_bases(L,clss);
2426 SWIG_Lua_get_class_metatable(L,clss->fqname);
2427 SWIG_Lua_add_class_instance_details(L,clss); /* recursive adding of details (atts & ops) */
2428 lua_pop(L,1); /* tidy stack (remove class metatable) */
2429 assert( lua_gettop(L) == begin );
2432 SWIGINTERN void SWIG_Lua_class_register(lua_State *L,swig_lua_class *clss)
2435 assert(lua_istable(L,-1)); /* This is a table (module or namespace) where classes will be added */
2436 SWIG_Lua_class_register_instance(L,clss);
2437 SWIG_Lua_class_register_static(L,clss);
2449 begin = lua_gettop(L);
2450 lua_pushstring(L,clss->cls_static->name);
2451 lua_rawget(L,-2); /* get class static table */
2452 assert(lua_istable(L,-1));
2453 lua_getmetatable(L,-1);
2454 assert(lua_istable(L,-1)); /* get class static metatable */
2455 lua_pushstring(L,".instance"); /* prepare key */
2457 SWIG_Lua_get_class_metatable(L,clss->fqname); /* get class metatable */
2458 assert(lua_istable(L,-1));
2459 lua_pushstring(L,".static"); /* prepare key */
2460 lua_pushvalue(L, -4); /* push static class TABLE */
2461 assert(lua_istable(L,-1));
2462 lua_rawset(L,-3); /* assign static class table(!NOT metatable) as ".static" member of class metatable */
2463 lua_rawset(L,-3); /* assign class metatable as ".instance" member of class static METATABLE */
2464 lua_pop(L,2);
2465 assert(lua_gettop(L) == begin);
2470 SWIGINTERN void SWIG_Lua_elua_class_register_instance(lua_State *L, swig_lua_class *clss)
2472 const int SWIGUNUSED begin = lua_gettop(L);
2475 SWIG_Lua_get_class_registry(L); /* get the registry */
2476 lua_pushstring(L,clss->fqname); /* get the name */
2477 lua_rawget(L,-2);
2478 if(!lua_isnil(L,-1)) {
2479 lua_pop(L,2);
2480 assert(lua_gettop(L)==begin);
2483 lua_pop(L,2); /* tidy stack */
2487 SWIG_Lua_elua_class_register_instance(L,clss->bases[i]);
2490 SWIG_Lua_get_class_registry(L); /* get the registry */
2491 lua_pushstring(L,clss->fqname); /* get the name */
2493 lua_pushrotable(L, (void*)(clss->metatable)); /* create the metatable */
2494 lua_rawset(L,-3);
2495 lua_pop(L,1);
2496 assert(lua_gettop(L) == begin);
2505 SWIGINTERN void SWIG_Lua_AddMetatable(lua_State *L,swig_type_info *type)
2509 SWIG_Lua_get_class_metatable(L,((swig_lua_class*)(type->clientdata))->fqname);
2510 if (lua_istable(L,-1))
2512 lua_setmetatable(L,-2);
2516 lua_pop(L,1);
2522 SWIGRUNTIME void SWIG_Lua_NewPointerObj(lua_State *L,void *ptr,swig_type_info *type, int own)
2526 lua_pushnil(L);
2529 usr=(swig_lua_userdata*)lua_newuserdata(L,sizeof(swig_lua_userdata)); /* get data */
2534 SWIG_Lua_AddMetatable(L,type); /* add metatable */
2540 SWIGRUNTIME int SWIG_Lua_ConvertPtr(lua_State *L,int index,void **ptr,swig_type_info *type,int flags)
2546 if (lua_isnil(L,index))
2551 if (lua_islightuserdata(L,index))
2553 *ptr=lua_touserdata(L,index);
2556 usr=(swig_lua_userdata*)lua_touserdata(L,index); /* get data */
2591 SWIGRUNTIME void* SWIG_Lua_MustGetPtr(lua_State *L,int index,swig_type_info *type,int flags,
2594 if (!SWIG_IsOK(SWIG_ConvertPtr(L,index,&result,type,flags))){
2595 luaL_error (L,"Error in %s, expected a %s at argument number %d\n",
2602 SWIGRUNTIME void SWIG_Lua_NewPackedObj(lua_State *L,void *ptr,size_t size,swig_type_info *type)
2606 raw=(swig_lua_rawdata*)lua_newuserdata(L,sizeof(swig_lua_rawdata)-1+size); /* alloc data */
2610 SWIG_Lua_AddMetatable(L,type); /* add metatable */
2614 SWIGRUNTIME int SWIG_Lua_ConvertPacked(lua_State *L,int index,void *ptr,size_t size,swig_type_info *type)
2617 raw=(swig_lua_rawdata*)lua_touserdata(L,index); /* get data */
2628 SWIGRUNTIME const char *SWIG_Lua_typename(lua_State *L, int tp)
2631 if (lua_isuserdata(L,tp))
2633 usr=(swig_lua_userdata*)lua_touserdata(L,tp); /* get data */
2638 return lua_typename(L,lua_type(L,tp));
2642 SWIGRUNTIME int SWIG_Lua_type(lua_State *L)
2644 lua_pushstring(L,SWIG_Lua_typename(L,1));
2655 SWIG_Lua_InstallConstants(lua_State *L, swig_lua_const_info constants[]) {
2660 lua_pushstring(L,constants[i].name);
2661 lua_pushinteger(L,(lua_Integer)constants[i].lvalue);
2662 lua_rawset(L,-3);
2665 lua_pushstring(L,constants[i].name);
2666 lua_pushnumber(L,(lua_Number)constants[i].dvalue);
2667 lua_rawset(L,-3);
2670 lua_pushstring(L,constants[i].name);
2673 lua_pushlstring(L,&c,1);
2675 lua_rawset(L,-3);
2678 lua_pushstring(L,constants[i].name);
2679 lua_pushstring(L,(char *) constants[i].pvalue);
2680 lua_rawset(L,-3);
2683 lua_pushstring(L,constants[i].name);
2684 SWIG_NewPointerObj(L,constants[i].pvalue, *(constants[i]).ptype,0);
2685 lua_rawset(L,-3);
2688 lua_pushstring(L,constants[i].name);
2689 SWIG_NewMemberObj(L,constants[i].pvalue,constants[i].lvalue,*(constants[i]).ptype);
2690 lua_rawset(L,-3);
2712 SWIG_Lua_dostring(lua_State *L, const char *str) {
2715 top=lua_gettop(L); /* save stack */
2717 ok=luaL_dostring(L,str); /* looks like this is lua 5.1.X or later, good */
2719 ok=lua_dostring(L,str); /* might be lua 5.0.x, using lua_dostring */
2722 SWIG_DOSTRING_FAIL(lua_tostring(L,-1));
2724 lua_settop(L,top); /* restore the stack */
3022 #if __cplusplus >=201103L
3045 #if __cplusplus >=201103L
3062 SWIGINTERN int SWIG_lua_isnilstring(lua_State *L, int idx) {
3063 int ret = lua_isstring(L, idx);
3065 ret = lua_isnil(L, idx);
3078 SWIGINTERN int SWIG_itable_size(lua_State* L, int index)
3082 lua_rawgeti(L,index,n+1);
3083 if (lua_isnil(L,-1))break;
3085 lua_pop(L,1);
3087 lua_pop(L,1);
3091 SWIGINTERN int SWIG_table_size(lua_State* L, int index)
3094 lua_pushnil(L); /* first key*/
3095 while (lua_next(L, index) != 0) {
3097 lua_pop(L, 1); /* removes `value'; keeps `key' for next iteration*/
3104 SWIGINTERN int SWIG_read_##NAME##_num_array(lua_State* L,int index,TYPE *array,int size){\
3107 lua_rawgeti(L,index,i+1);\
3108 if (lua_isnumber(L,-1)){\
3109 array[i] = (TYPE)lua_tonumber(L,-1);\
3111 lua_pop(L,1);\
3114 lua_pop(L,1);\
3118 SWIGINTERN TYPE* SWIG_get_##NAME##_num_array_fixed(lua_State* L, int index, int size){\
3120 if (!lua_istable(L,index) || SWIG_itable_size(L,index) != size) {\
3121 SWIG_Lua_pushferrstring(L,"expected a table of size %d",size);\
3125 if (!SWIG_read_##NAME##_num_array(L,index,array,size)){\
3126 SWIG_Lua_pusherrstring(L,"table must contain numbers");\
3132 SWIGINTERN TYPE* SWIG_get_##NAME##_num_array_var(lua_State* L, int index, int* size)\
3135 if (!lua_istable(L,index)) {\
3136 SWIG_Lua_pusherrstring(L,"expected a table");\
3139 *size=SWIG_itable_size(L,index);\
3141 SWIG_Lua_pusherrstring(L,"table appears to be empty");\
3145 if (!SWIG_read_##NAME##_num_array(L,index,array,*size)){\
3146 SWIG_Lua_pusherrstring(L,"table must contain numbers");\
3152 SWIGINTERN void SWIG_write_##NAME##_num_array(lua_State* L,TYPE *array,int size){\
3154 lua_newtable(L);\
3156 lua_pushnumber(L,(lua_Number)array[i]);\
3157 lua_rawseti(L,-2,i+1);/* -1 is the number, -2 is the table*/ \
3172 SWIGINTERN int SWIG_read_ptr_array(lua_State* L,int index,void **array,int size,swig_type_info *type){
3175 lua_rawgeti(L,index,i+1);
3176 if (!lua_isuserdata(L,-1) || SWIG_ConvertPtr(L,-1,&array[i],type,0)==-1){
3177 lua_pop(L,1);
3180 lua_pop(L,1);
3184 SWIGINTERN void** SWIG_get_ptr_array_fixed(lua_State* L, int index, int size,swig_type_info *type){
3186 if (!lua_istable(L,index) || SWIG_itable_size(L,index) != size) {
3187 SWIG_Lua_pushferrstring(L,"expected a table of size %d",size);
3191 if (!SWIG_read_ptr_array(L,index,array,size,type)){
3192 SWIG_Lua_pushferrstring(L,"table must contain pointers of type %s",type->name);
3198 SWIGINTERN void** SWIG_get_ptr_array_var(lua_State* L, int index, int* size,swig_type_info *type){
3200 if (!lua_istable(L,index)) {
3201 SWIG_Lua_pusherrstring(L,"expected a table");
3204 *size=SWIG_itable_size(L,index);
3206 SWIG_Lua_pusherrstring(L,"table appears to be empty");
3210 if (!SWIG_read_ptr_array(L,index,array,*size,type)){
3211 SWIG_Lua_pushferrstring(L,"table must contain pointers of type %s",type->name);
3217 SWIGINTERN void SWIG_write_ptr_array(lua_State* L,void **array,int size,swig_type_info *type,int own){
3219 lua_newtable(L);
3221 SWIG_NewPointerObj(L,array[i],type,own);
3222 lua_rawseti(L,-2,i+1);/* -1 is the number, -2 is the table*/
3796 template <typename T> void PushSBClass(lua_State * L, T * obj);
3801 lua_State * L, lldb::StackFrameSP stop_frame_sp,
3811 PushSBClass(L, &sb_frame);
3812 PushSBClass(L, &sb_bp_loc);
3815 PushSBClass(L, &extra_args);
3821 if (lua_pcall(L, nargs, 1, 0) != LUA_OK) {
3823 llvm::formatv("{0}\n", lua_tostring(L, -1)),
3826 lua_pop(L, 1);
3831 bool stop = lua_toboolean(L, -1);
3832 lua_pop(L, 1);
3840 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) {
3846 PushSBClass(L, &sb_frame);
3847 PushSBClass(L, &sb_wp);
3851 if (lua_pcall(L, nargs, 1, 0) != LUA_OK) {
3853 llvm::formatv("{0}\n", lua_tostring(L, -1)),
3856 lua_pop(L, 1);
3861 bool stop = lua_toboolean(L, -1);
3862 lua_pop(L, 1);
3868 lua_State *L = (lua_State *)baton;
3870 lua_pushlightuserdata(L, (void *)&LLDBSwigLuaCallLuaLogOutputCallback);
3871 lua_gettable(L, LUA_REGISTRYINDEX);
3874 lua_pushstring(L, str);
3875 lua_pcall(L, 1, 0, 0);
3878 static int LLDBSwigLuaCloseFileHandle(lua_State * L) {
3879 return luaL_error(L, "You cannot close a file handle used by lldb.");
3886 static int _wrap_new_string__SWIG_0(lua_State* L) {
3893 SWIG_NewPointerObj(L,result,SWIGTYPE_p_std__string,1); SWIG_arg++;
3898 lua_error(L);
3903 static int _wrap_new_string__SWIG_1(lua_State* L) {
3910 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("std::string::string",1,"char const *");
3911 arg1 = (char *)lua_tostring(L, 1);
3913 SWIG_NewPointerObj(L,result,SWIGTYPE_p_std__string,1); SWIG_arg++;
3918 lua_error(L);
3923 static int _wrap_new_string(lua_State* L) {
3929 argc = lua_gettop(L);
3931 return _wrap_new_string__SWIG_0(L);
3936 _v = SWIG_lua_isnilstring(L,argv[0]);
3939 return _wrap_new_string__SWIG_1(L);
3943 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_string'\n"
3947 lua_error(L);return 0;
3951 static int _wrap_string_size(lua_State* L) {
3958 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::size",1,"std::string const *");
3960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){
3965 lua_pushnumber(L, (lua_Number) result); SWIG_arg++;
3970 lua_error(L);
3975 static int _wrap_string_length(lua_State* L) {
3982 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::length",1,"std::string const *");
3984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){
3989 lua_pushnumber(L, (lua_Number) result); SWIG_arg++;
3994 lua_error(L);
3999 static int _wrap_string_empty(lua_State* L) {
4006 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::empty",1,"std::string const *");
4008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){
4013 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
4018 lua_error(L);
4023 static int _wrap_string_c_str(lua_State* L) {
4030 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::c_str",1,"std::string const *");
4032 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){
4037 lua_pushstring(L,(const char *)result); SWIG_arg++;
4042 lua_error(L);
4047 static int _wrap_string_data(lua_State* L) {
4054 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::data",1,"std::string const *");
4056 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){
4061 lua_pushstring(L,(const char *)result); SWIG_arg++;
4066 lua_error(L);
4071 static int _wrap_string_assign(lua_State* L) {
4078 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::assign",1,"std::string *");
4079 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("std::string::assign",2,"char const *");
4081 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){
4085 arg2 = (char *)lua_tostring(L, 2);
4092 lua_error(L);
4101 static int _proxy__wrap_new_string(lua_State *L) {
4102 assert(lua_istable(L,1));
4103 lua_pushcfunction(L,_wrap_new_string);
4104 assert(!lua_isnil(L,-1));
4105 lua_replace(L,1); /* replace our table with real constructor */
4106 lua_call(L,lua_gettop(L)-1,1);
4150 static int _wrap_new_SBAddress__SWIG_0(lua_State* L) {
4157 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
4162 lua_error(L);
4167 static int _wrap_new_SBAddress__SWIG_1(lua_State* L) {
4174 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddress::SBAddress",1,"lldb::SBAddress const &");
4176 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4181 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
4186 lua_error(L);
4191 static int _wrap_new_SBAddress__SWIG_2(lua_State* L) {
4200 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddress::SBAddress",1,"lldb::SBSection");
4201 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::SBAddress",2,"lldb::addr_t");
4203 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBSection,0))){
4208 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
4210 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
4215 lua_error(L);
4220 static int _wrap_new_SBAddress__SWIG_3(lua_State* L) {
4228 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBAddress::SBAddress",1,"lldb::addr_t");
4229 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::SBAddress",2,"lldb::SBTarget &");
4230 arg1 = (lldb::addr_t)lua_tointeger(L, 1);
4232 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
4237 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
4242 lua_error(L);
4247 static int _wrap_new_SBAddress(lua_State* L) {
4253 argc = lua_gettop(L);
4255 return _wrap_new_SBAddress__SWIG_0(L);
4261 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
4268 return _wrap_new_SBAddress__SWIG_1(L);
4275 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSection, SWIG_POINTER_NO_NULL)) {
4283 _v = lua_isnumber(L,argv[1]);
4286 return _wrap_new_SBAddress__SWIG_2(L);
4293 _v = lua_isnumber(L,argv[0]);
4298 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
4305 return _wrap_new_SBAddress__SWIG_3(L);
4310 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAddress'\n"
4316 lua_error(L);return 0;
4320 static int _wrap_SBAddress_IsValid(lua_State* L) {
4327 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::IsValid",1,"lldb::SBAddress const *");
4329 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4334 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
4339 lua_error(L);
4344 static int _wrap_SBAddress_Clear(lua_State* L) {
4350 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::Clear",1,"lldb::SBAddress *");
4352 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4362 lua_error(L);
4367 static int _wrap_SBAddress_GetFileAddress(lua_State* L) {
4374 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetFileAddress",1,"lldb::SBAddress const *");
4376 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4381 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
4386 lua_error(L);
4391 static int _wrap_SBAddress_GetLoadAddress(lua_State* L) {
4399 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetLoadAddress",1,"lldb::SBAddress const *");
4400 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::GetLoadAddress",2,"lldb::SBTarget const &");
4402 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
4412 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
4417 lua_error(L);
4422 static int _wrap_SBAddress_SetAddress(lua_State* L) {
4431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::SetAddress",1,"lldb::SBAddress *");
4432 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::SetAddress",2,"lldb::SBSection");
4433 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBAddress::SetAddress",3,"lldb::addr_t");
4435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSection,0))){
4445 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
4452 lua_error(L);
4457 static int _wrap_SBAddress_SetLoadAddress(lua_State* L) {
4465 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::SetLoadAddress",1,"lldb::SBAddress *");
4466 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::SetLoadAddress",2,"lldb::addr_t");
4467 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBAddress::SetLoadAddress",3,"lldb::SBTarget &");
4469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4473 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
4475 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBTarget,0))){
4485 lua_error(L);
4490 static int _wrap_SBAddress_OffsetAddress(lua_State* L) {
4498 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::OffsetAddress",1,"lldb::SBAddress *");
4499 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::OffsetAddress",2,"lldb::addr_t");
4501 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4505 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
4507 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
4512 lua_error(L);
4517 static int _wrap_SBAddress_GetDescription(lua_State* L) {
4525 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetDescription",1,"lldb::SBAddress *");
4526 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::GetDescription",2,"lldb::SBStream &");
4528 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4533 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
4538 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
4543 lua_error(L);
4548 static int _wrap_SBAddress_GetSymbolContext(lua_State* L) {
4556 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetSymbolContext",1,"lldb::SBAddress *");
4557 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::GetSymbolContext",2,"uint32_t");
4559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4563 arg2 = (uint32_t)lua_tointeger(L, 2);
4567 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
4573 lua_error(L);
4578 static int _wrap_SBAddress_GetSection(lua_State* L) {
4585 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetSection",1,"lldb::SBAddress *");
4587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4594 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
4600 lua_error(L);
4605 static int _wrap_SBAddress_GetOffset(lua_State* L) {
4612 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetOffset",1,"lldb::SBAddress *");
4614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4619 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
4624 lua_error(L);
4629 static int _wrap_SBAddress_GetModule(lua_State* L) {
4636 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetModule",1,"lldb::SBAddress *");
4638 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4645 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
4651 lua_error(L);
4656 static int _wrap_SBAddress_GetCompileUnit(lua_State* L) {
4663 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetCompileUnit",1,"lldb::SBAddress *");
4665 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4672 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++;
4678 lua_error(L);
4683 static int _wrap_SBAddress_GetFunction(lua_State* L) {
4690 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetFunction",1,"lldb::SBAddress *");
4692 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4699 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++;
4705 lua_error(L);
4710 static int _wrap_SBAddress_GetBlock(lua_State* L) {
4717 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetBlock",1,"lldb::SBAddress *");
4719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4726 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
4732 lua_error(L);
4737 static int _wrap_SBAddress_GetSymbol(lua_State* L) {
4744 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetSymbol",1,"lldb::SBAddress *");
4746 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4753 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
4759 lua_error(L);
4764 static int _wrap_SBAddress_GetLineEntry(lua_State* L) {
4771 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetLineEntry",1,"lldb::SBAddress *");
4773 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4780 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++;
4786 lua_error(L);
4791 static int _wrap_SBAddress___tostring(lua_State* L) {
4798 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::__repr__",1,"lldb::SBAddress *");
4800 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){
4805 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
4810 lua_error(L);
4819 static int _proxy__wrap_new_SBAddress(lua_State *L) {
4820 assert(lua_istable(L,1));
4821 lua_pushcfunction(L,_wrap_new_SBAddress);
4822 assert(!lua_isnil(L,-1));
4823 lua_replace(L,1); /* replace our table with real constructor */
4824 lua_call(L,lua_gettop(L)-1,1);
4881 static int _wrap_new_SBAddressRange__SWIG_0(lua_State* L) {
4888 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++;
4893 lua_error(L);
4898 static int _wrap_new_SBAddressRange__SWIG_1(lua_State* L) {
4905 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddressRange::SBAddressRange",1,"lldb::SBAddressRange const &");
4907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
4912 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++;
4917 lua_error(L);
4922 static int _wrap_new_SBAddressRange__SWIG_2(lua_State* L) {
4931 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddressRange::SBAddressRange",1,"lldb::SBAddress");
4932 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddressRange::SBAddressRange",2,"lldb::addr_t");
4934 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBAddress,0))){
4939 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
4941 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++;
4946 lua_error(L);
4951 static int _wrap_new_SBAddressRange(lua_State* L) {
4957 argc = lua_gettop(L);
4959 return _wrap_new_SBAddressRange__SWIG_0(L);
4965 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAddressRange, SWIG_POINTER_NO_NULL)) {
4972 return _wrap_new_SBAddressRange__SWIG_1(L);
4979 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
4987 _v = lua_isnumber(L,argv[1]);
4990 return _wrap_new_SBAddressRange__SWIG_2(L);
4995 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAddressRange'\n"
5000 lua_error(L);return 0;
5004 static int _wrap_SBAddressRange_Clear(lua_State* L) {
5010 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::Clear",1,"lldb::SBAddressRange *");
5012 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
5022 lua_error(L);
5027 static int _wrap_SBAddressRange_IsValid(lua_State* L) {
5034 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::IsValid",1,"lldb::SBAddressRange const *");
5036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
5041 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
5046 lua_error(L);
5051 static int _wrap_SBAddressRange_GetBaseAddress(lua_State* L) {
5058 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::GetBaseAddress",1,"lldb::SBAddressRange const *");
5060 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
5067 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
5073 lua_error(L);
5078 static int _wrap_SBAddressRange_GetByteSize(lua_State* L) {
5085 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::GetByteSize",1,"lldb::SBAddressRange const *");
5087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
5092 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
5097 lua_error(L);
5102 static int _wrap_SBAddressRange___eq(lua_State* L) {
5110 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::operator ==",1,"lldb::SBAddressRange *");
5111 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRange::operator ==",2,"lldb::SBAddressRange const &");
5113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
5118 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddressRange,0))){
5123 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
5128 lua_error(L);
5133 static int _wrap_SBAddressRange_GetDescription(lua_State* L) {
5143 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::GetDescription",1,"lldb::SBAddressRange *");
5144 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRange::GetDescription",2,"lldb::SBStream &");
5145 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBAddressRange::GetDescription",3,"lldb::SBTarget const");
5147 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){
5152 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
5157 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTarget,0))){
5163 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
5168 lua_error(L);
5177 static int _proxy__wrap_new_SBAddressRange(lua_State *L) {
5178 assert(lua_istable(L,1));
5179 lua_pushcfunction(L,_wrap_new_SBAddressRange);
5180 assert(!lua_isnil(L,-1));
5181 lua_replace(L,1); /* replace our table with real constructor */
5182 lua_call(L,lua_gettop(L)-1,1);
5227 static int _wrap_new_SBAddressRangeList__SWIG_0(lua_State* L) {
5234 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++;
5239 lua_error(L);
5244 static int _wrap_new_SBAddressRangeList__SWIG_1(lua_State* L) {
5251 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::SBAddressRangeList",1,"lldb::SBAddressRangeList const &");
5253 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5258 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++;
5263 lua_error(L);
5268 static int _wrap_new_SBAddressRangeList(lua_State* L) {
5274 argc = lua_gettop(L);
5276 return _wrap_new_SBAddressRangeList__SWIG_0(L);
5282 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAddressRangeList, SWIG_POINTER_NO_NULL)) {
5289 return _wrap_new_SBAddressRangeList__SWIG_1(L);
5293 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAddressRangeList'\n"
5297 lua_error(L);return 0;
5301 static int _wrap_SBAddressRangeList_GetSize(lua_State* L) {
5308 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::GetSize",1,"lldb::SBAddressRangeList const *");
5310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5315 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
5320 lua_error(L);
5325 static int _wrap_SBAddressRangeList_Clear(lua_State* L) {
5331 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::Clear",1,"lldb::SBAddressRangeList *");
5333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5343 lua_error(L);
5348 static int _wrap_SBAddressRangeList_GetAddressRangeAtIndex(lua_State* L) {
5356 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::GetAddressRangeAtIndex",1,"lldb::SBAddressRangeList *");
5357 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::GetAddressRangeAtIndex",2,"uint64_t");
5359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5363 arg2 = (uint64_t)lua_tointeger(L, 2);
5367 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++;
5373 lua_error(L);
5378 static int _wrap_SBAddressRangeList_Append__SWIG_0(lua_State* L) {
5385 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",1,"lldb::SBAddressRangeList *");
5386 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",2,"lldb::SBAddressRange const &");
5388 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5393 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddressRange,0))){
5403 lua_error(L);
5408 static int _wrap_SBAddressRangeList_Append__SWIG_1(lua_State* L) {
5415 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",1,"lldb::SBAddressRangeList *");
5416 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",2,"lldb::SBAddressRangeList const &");
5418 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5423 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5433 lua_error(L);
5438 static int _wrap_SBAddressRangeList_Append(lua_State* L) {
5444 argc = lua_gettop(L);
5449 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAddressRangeList, 0)) {
5458 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddressRange, SWIG_POINTER_NO_NULL)) {
5465 return _wrap_SBAddressRangeList_Append__SWIG_0(L);
5473 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAddressRangeList, 0)) {
5482 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddressRangeList, SWIG_POINTER_NO_NULL)) {
5489 return _wrap_SBAddressRangeList_Append__SWIG_1(L);
5494 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBAddressRangeList_Append'\n"
5498 lua_error(L);return 0;
5502 static int _wrap_SBAddressRangeList_GetDescription(lua_State* L) {
5511 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::GetDescription",1,"lldb::SBAddressRangeList *");
5512 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::GetDescription",2,"lldb::SBStream &");
5513 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBAddressRangeList::GetDescription",3,"lldb::SBTarget const &");
5515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
5520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
5525 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBTarget,0))){
5530 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
5535 lua_error(L);
5544 static int _proxy__wrap_new_SBAddressRangeList(lua_State *L) {
5545 assert(lua_istable(L,1));
5546 lua_pushcfunction(L,_wrap_new_SBAddressRangeList);
5547 assert(!lua_isnil(L,-1));
5548 lua_replace(L,1); /* replace our table with real constructor */
5549 lua_call(L,lua_gettop(L)-1,1);
5592 static int _wrap_new_SBAttachInfo__SWIG_0(lua_State* L) {
5599 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++;
5604 lua_error(L);
5609 static int _wrap_new_SBAttachInfo__SWIG_1(lua_State* L) {
5616 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"lldb::pid_t");
5617 arg1 = (lldb::pid_t)lua_tointeger(L, 1);
5619 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++;
5624 lua_error(L);
5629 static int _wrap_new_SBAttachInfo__SWIG_2(lua_State* L) {
5637 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"char const *");
5638 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",2,"bool");
5639 arg1 = (char *)lua_tostring(L, 1);
5640 arg2 = (lua_toboolean(L, 2)!=0);
5642 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++;
5647 lua_error(L);
5652 static int _wrap_new_SBAttachInfo__SWIG_3(lua_State* L) {
5661 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"char const *");
5662 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",2,"bool");
5663 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",3,"bool");
5664 arg1 = (char *)lua_tostring(L, 1);
5665 arg2 = (lua_toboolean(L, 2)!=0);
5666 arg3 = (lua_toboolean(L, 3)!=0);
5668 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++;
5673 lua_error(L);
5678 static int _wrap_new_SBAttachInfo__SWIG_4(lua_State* L) {
5685 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"lldb::SBAttachInfo const &");
5687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5692 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++;
5697 lua_error(L);
5702 static int _wrap_new_SBAttachInfo(lua_State* L) {
5708 argc = lua_gettop(L);
5710 return _wrap_new_SBAttachInfo__SWIG_0(L);
5716 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAttachInfo, SWIG_POINTER_NO_NULL)) {
5723 return _wrap_new_SBAttachInfo__SWIG_4(L);
5729 _v = lua_isnumber(L,argv[0]);
5732 return _wrap_new_SBAttachInfo__SWIG_1(L);
5738 _v = SWIG_lua_isnilstring(L,argv[0]);
5742 _v = lua_isboolean(L,argv[1]);
5745 return _wrap_new_SBAttachInfo__SWIG_2(L);
5752 _v = SWIG_lua_isnilstring(L,argv[0]);
5756 _v = lua_isboolean(L,argv[1]);
5760 _v = lua_isboolean(L,argv[2]);
5763 return _wrap_new_SBAttachInfo__SWIG_3(L);
5769 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAttachInfo'\n"
5776 lua_error(L);return 0;
5780 static int _wrap_SBAttachInfo_GetProcessID(lua_State* L) {
5787 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetProcessID",1,"lldb::SBAttachInfo *");
5789 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5794 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
5799 lua_error(L);
5804 static int _wrap_SBAttachInfo_SetProcessID(lua_State* L) {
5811 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessID",1,"lldb::SBAttachInfo *");
5812 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessID",2,"lldb::pid_t");
5814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5818 arg2 = (lldb::pid_t)lua_tointeger(L, 2);
5825 lua_error(L);
5830 static int _wrap_SBAttachInfo_SetExecutable__SWIG_0(lua_State* L) {
5837 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",1,"lldb::SBAttachInfo *");
5838 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",2,"char const *");
5840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5844 arg2 = (char *)lua_tostring(L, 2);
5851 lua_error(L);
5856 static int _wrap_SBAttachInfo_SetExecutable__SWIG_1(lua_State* L) {
5864 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",1,"lldb::SBAttachInfo *");
5865 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",2,"lldb::SBFileSpec");
5867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){
5883 lua_error(L);
5888 static int _wrap_SBAttachInfo_SetExecutable(lua_State* L) {
5894 argc = lua_gettop(L);
5899 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAttachInfo, 0)) {
5908 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
5915 return _wrap_SBAttachInfo_SetExecutable__SWIG_1(L);
5923 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAttachInfo, 0)) {
5931 _v = SWIG_lua_isnilstring(L,argv[1]);
5934 return _wrap_SBAttachInfo_SetExecutable__SWIG_0(L);
5939 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBAttachInfo_SetExecutable'\n"
5943 lua_error(L);return 0;
5947 static int _wrap_SBAttachInfo_GetWaitForLaunch(lua_State* L) {
5954 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetWaitForLaunch",1,"lldb::SBAttachInfo *");
5956 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5961 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
5966 lua_error(L);
5971 static int _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0(lua_State* L) {
5978 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",1,"lldb::SBAttachInfo *");
5979 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",2,"bool");
5981 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
5985 arg2 = (lua_toboolean(L, 2)!=0);
5992 lua_error(L);
5997 static int _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1(lua_State* L) {
6005 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",1,"lldb::SBAttachInfo *");
6006 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",2,"bool");
6007 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",3,"bool");
6009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6013 arg2 = (lua_toboolean(L, 2)!=0);
6014 arg3 = (lua_toboolean(L, 3)!=0);
6021 lua_error(L);
6026 static int _wrap_SBAttachInfo_SetWaitForLaunch(lua_State* L) {
6032 argc = lua_gettop(L);
6037 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAttachInfo, 0)) {
6045 _v = lua_isboolean(L,argv[1]);
6048 return _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0(L);
6056 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBAttachInfo, 0)) {
6064 _v = lua_isboolean(L,argv[1]);
6068 _v = lua_isboolean(L,argv[2]);
6071 return _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1(L);
6077 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBAttachInfo_SetWaitForLaunch'\n"
6081 lua_error(L);return 0;
6085 static int _wrap_SBAttachInfo_GetIgnoreExisting(lua_State* L) {
6092 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetIgnoreExisting",1,"lldb::SBAttachInfo *");
6094 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6099 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
6104 lua_error(L);
6109 static int _wrap_SBAttachInfo_SetIgnoreExisting(lua_State* L) {
6116 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetIgnoreExisting",1,"lldb::SBAttachInfo *");
6117 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetIgnoreExisting",2,"bool");
6119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6123 arg2 = (lua_toboolean(L, 2)!=0);
6130 lua_error(L);
6135 static int _wrap_SBAttachInfo_GetResumeCount(lua_State* L) {
6142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetResumeCount",1,"lldb::SBAttachInfo *");
6144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6149 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
6154 lua_error(L);
6159 static int _wrap_SBAttachInfo_SetResumeCount(lua_State* L) {
6166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetResumeCount",1,"lldb::SBAttachInfo *");
6167 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetResumeCount",2,"uint32_t");
6169 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6173 arg2 = (uint32_t)lua_tointeger(L, 2);
6180 lua_error(L);
6185 static int _wrap_SBAttachInfo_GetProcessPluginName(lua_State* L) {
6192 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetProcessPluginName",1,"lldb::SBAttachInfo *");
6194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6199 lua_pushstring(L,(const char *)result); SWIG_arg++;
6204 lua_error(L);
6209 static int _wrap_SBAttachInfo_SetProcessPluginName(lua_State* L) {
6216 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessPluginName",1,"lldb::SBAttachInfo *");
6217 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessPluginName",2,"char const *");
6219 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6223 arg2 = (char *)lua_tostring(L, 2);
6230 lua_error(L);
6235 static int _wrap_SBAttachInfo_GetUserID(lua_State* L) {
6242 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetUserID",1,"lldb::SBAttachInfo *");
6244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6249 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
6254 lua_error(L);
6259 static int _wrap_SBAttachInfo_GetGroupID(lua_State* L) {
6266 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetGroupID",1,"lldb::SBAttachInfo *");
6268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6273 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
6278 lua_error(L);
6283 static int _wrap_SBAttachInfo_UserIDIsValid(lua_State* L) {
6290 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::UserIDIsValid",1,"lldb::SBAttachInfo *");
6292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6297 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
6302 lua_error(L);
6307 static int _wrap_SBAttachInfo_GroupIDIsValid(lua_State* L) {
6314 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GroupIDIsValid",1,"lldb::SBAttachInfo *");
6316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6321 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
6326 lua_error(L);
6331 static int _wrap_SBAttachInfo_SetUserID(lua_State* L) {
6338 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetUserID",1,"lldb::SBAttachInfo *");
6339 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetUserID",2,"uint32_t");
6341 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6345 arg2 = (uint32_t)lua_tointeger(L, 2);
6352 lua_error(L);
6357 static int _wrap_SBAttachInfo_SetGroupID(lua_State* L) {
6364 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetGroupID",1,"lldb::SBAttachInfo *");
6365 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetGroupID",2,"uint32_t");
6367 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6371 arg2 = (uint32_t)lua_tointeger(L, 2);
6378 lua_error(L);
6383 static int _wrap_SBAttachInfo_GetEffectiveUserID(lua_State* L) {
6390 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetEffectiveUserID",1,"lldb::SBAttachInfo *");
6392 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6397 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
6402 lua_error(L);
6407 static int _wrap_SBAttachInfo_GetEffectiveGroupID(lua_State* L) {
6414 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetEffectiveGroupID",1,"lldb::SBAttachInfo *");
6416 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6421 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
6426 lua_error(L);
6431 static int _wrap_SBAttachInfo_EffectiveUserIDIsValid(lua_State* L) {
6438 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::EffectiveUserIDIsValid",1,"lldb::SBAttachInfo *");
6440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6445 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
6450 lua_error(L);
6455 static int _wrap_SBAttachInfo_EffectiveGroupIDIsValid(lua_State* L) {
6462 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::EffectiveGroupIDIsValid",1,"lldb::SBAttachInfo *");
6464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6469 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
6474 lua_error(L);
6479 static int _wrap_SBAttachInfo_SetEffectiveUserID(lua_State* L) {
6486 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveUserID",1,"lldb::SBAttachInfo *");
6487 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveUserID",2,"uint32_t");
6489 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6493 arg2 = (uint32_t)lua_tointeger(L, 2);
6500 lua_error(L);
6505 static int _wrap_SBAttachInfo_SetEffectiveGroupID(lua_State* L) {
6512 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveGroupID",1,"lldb::SBAttachInfo *");
6513 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveGroupID",2,"uint32_t");
6515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6519 arg2 = (uint32_t)lua_tointeger(L, 2);
6526 lua_error(L);
6531 static int _wrap_SBAttachInfo_GetParentProcessID(lua_State* L) {
6538 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetParentProcessID",1,"lldb::SBAttachInfo *");
6540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6545 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
6550 lua_error(L);
6555 static int _wrap_SBAttachInfo_SetParentProcessID(lua_State* L) {
6562 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetParentProcessID",1,"lldb::SBAttachInfo *");
6563 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetParentProcessID",2,"lldb::pid_t");
6565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6569 arg2 = (lldb::pid_t)lua_tointeger(L, 2);
6576 lua_error(L);
6581 static int _wrap_SBAttachInfo_ParentProcessIDIsValid(lua_State* L) {
6588 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::ParentProcessIDIsValid",1,"lldb::SBAttachInfo *");
6590 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6595 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
6600 lua_error(L);
6605 static int _wrap_SBAttachInfo_GetListener(lua_State* L) {
6612 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetListener",1,"lldb::SBAttachInfo *");
6614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6621 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
6627 lua_error(L);
6632 static int _wrap_SBAttachInfo_SetListener(lua_State* L) {
6639 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetListener",1,"lldb::SBAttachInfo *");
6640 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetListener",2,"lldb::SBListener &");
6642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6647 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
6657 lua_error(L);
6662 static int _wrap_SBAttachInfo_GetShadowListener(lua_State* L) {
6669 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetShadowListener",1,"lldb::SBAttachInfo *");
6671 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6678 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
6684 lua_error(L);
6689 static int _wrap_SBAttachInfo_SetShadowListener(lua_State* L) {
6696 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetShadowListener",1,"lldb::SBAttachInfo *");
6697 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetShadowListener",2,"lldb::SBListener &");
6699 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6704 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
6714 lua_error(L);
6719 static int _wrap_SBAttachInfo_GetScriptedProcessClassName(lua_State* L) {
6726 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetScriptedProcessClassName",1,"lldb::SBAttachInfo const *");
6728 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6733 lua_pushstring(L,(const char *)result); SWIG_arg++;
6738 lua_error(L);
6743 static int _wrap_SBAttachInfo_SetScriptedProcessClassName(lua_State* L) {
6750 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessClassName",1,"lldb::SBAttachInfo *");
6751 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessClassName",2,"char const *");
6753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6757 arg2 = (char *)lua_tostring(L, 2);
6764 lua_error(L);
6769 static int _wrap_SBAttachInfo_GetScriptedProcessDictionary(lua_State* L) {
6776 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetScriptedProcessDictionary",1,"lldb::SBAttachInfo const *");
6778 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6785 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
6791 lua_error(L);
6796 static int _wrap_SBAttachInfo_SetScriptedProcessDictionary(lua_State* L) {
6804 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessDictionary",1,"lldb::SBAttachInfo *");
6805 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessDictionary",2,"lldb::SBStructuredData");
6807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){
6812 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBStructuredData,0))){
6823 lua_error(L);
6832 static int _proxy__wrap_new_SBAttachInfo(lua_State *L) {
6833 assert(lua_istable(L,1));
6834 lua_pushcfunction(L,_wrap_new_SBAttachInfo);
6835 assert(!lua_isnil(L,-1));
6836 lua_replace(L,1); /* replace our table with real constructor */
6837 lua_call(L,lua_gettop(L)-1,1);
6909 static int _wrap_new_SBBlock__SWIG_0(lua_State* L) {
6916 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
6921 lua_error(L);
6926 static int _wrap_new_SBBlock__SWIG_1(lua_State* L) {
6933 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBlock::SBBlock",1,"lldb::SBBlock const &");
6935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
6940 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
6945 lua_error(L);
6950 static int _wrap_new_SBBlock(lua_State* L) {
6956 argc = lua_gettop(L);
6958 return _wrap_new_SBBlock__SWIG_0(L);
6964 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBlock, SWIG_POINTER_NO_NULL)) {
6971 return _wrap_new_SBBlock__SWIG_1(L);
6975 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBlock'\n"
6979 lua_error(L);return 0;
6983 static int _wrap_SBBlock_IsInlined(lua_State* L) {
6990 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::IsInlined",1,"lldb::SBBlock const *");
6992 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
6997 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
7002 lua_error(L);
7007 static int _wrap_SBBlock_IsValid(lua_State* L) {
7014 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::IsValid",1,"lldb::SBBlock const *");
7016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7021 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
7026 lua_error(L);
7031 static int _wrap_SBBlock_GetInlinedName(lua_State* L) {
7038 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedName",1,"lldb::SBBlock const *");
7040 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7045 lua_pushstring(L,(const char *)result); SWIG_arg++;
7050 lua_error(L);
7055 static int _wrap_SBBlock_GetInlinedCallSiteFile(lua_State* L) {
7062 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedCallSiteFile",1,"lldb::SBBlock const *");
7064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7071 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
7077 lua_error(L);
7082 static int _wrap_SBBlock_GetInlinedCallSiteLine(lua_State* L) {
7089 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedCallSiteLine",1,"lldb::SBBlock const *");
7091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7096 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
7101 lua_error(L);
7106 static int _wrap_SBBlock_GetInlinedCallSiteColumn(lua_State* L) {
7113 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedCallSiteColumn",1,"lldb::SBBlock const *");
7115 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7120 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
7125 lua_error(L);
7130 static int _wrap_SBBlock_GetParent(lua_State* L) {
7137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetParent",1,"lldb::SBBlock *");
7139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
7152 lua_error(L);
7157 static int _wrap_SBBlock_GetSibling(lua_State* L) {
7164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetSibling",1,"lldb::SBBlock *");
7166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7173 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
7179 lua_error(L);
7184 static int _wrap_SBBlock_GetFirstChild(lua_State* L) {
7191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetFirstChild",1,"lldb::SBBlock *");
7193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7200 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
7206 lua_error(L);
7211 static int _wrap_SBBlock_GetNumRanges(lua_State* L) {
7218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetNumRanges",1,"lldb::SBBlock *");
7220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7225 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
7230 lua_error(L);
7235 static int _wrap_SBBlock_GetRangeStartAddress(lua_State* L) {
7243 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRangeStartAddress",1,"lldb::SBBlock *");
7244 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBlock::GetRangeStartAddress",2,"uint32_t");
7246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7250 arg2 = (uint32_t)lua_tointeger(L, 2);
7254 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
7260 lua_error(L);
7265 static int _wrap_SBBlock_GetRangeEndAddress(lua_State* L) {
7273 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRangeEndAddress",1,"lldb::SBBlock *");
7274 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBlock::GetRangeEndAddress",2,"uint32_t");
7276 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7280 arg2 = (uint32_t)lua_tointeger(L, 2);
7284 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
7290 lua_error(L);
7295 static int _wrap_SBBlock_GetRanges(lua_State* L) {
7302 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRanges",1,"lldb::SBBlock *");
7304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7311 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++;
7317 lua_error(L);
7322 static int _wrap_SBBlock_GetRangeIndexForBlockAddress(lua_State* L) {
7331 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRangeIndexForBlockAddress",1,"lldb::SBBlock *");
7332 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetRangeIndexForBlockAddress",2,"lldb::SBAddress");
7334 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7339 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
7345 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
7350 lua_error(L);
7355 static int _wrap_SBBlock_GetVariables__SWIG_0(lua_State* L) {
7367 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetVariables",1,"lldb::SBBlock *");
7368 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetVariables",2,"lldb::SBFrame &");
7369 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBlock::GetVariables",3,"bool");
7370 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBBlock::GetVariables",4,"bool");
7371 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBBlock::GetVariables",5,"bool");
7372 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBBlock::GetVariables",6,"lldb::DynamicValueType");
7374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7379 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
7383 arg3 = (lua_toboolean(L, 3)!=0);
7384 arg4 = (lua_toboolean(L, 4)!=0);
7385 arg5 = (lua_toboolean(L, 5)!=0);
7386 arg6 = (lldb::DynamicValueType)lua_tointeger(L, 6);
7390 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
7396 lua_error(L);
7401 static int _wrap_SBBlock_GetVariables__SWIG_1(lua_State* L) {
7412 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetVariables",1,"lldb::SBBlock *");
7413 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetVariables",2,"lldb::SBTarget &");
7414 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBlock::GetVariables",3,"bool");
7415 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBBlock::GetVariables",4,"bool");
7416 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBBlock::GetVariables",5,"bool");
7418 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7423 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
7427 arg3 = (lua_toboolean(L, 3)!=0);
7428 arg4 = (lua_toboolean(L, 4)!=0);
7429 arg5 = (lua_toboolean(L, 5)!=0);
7433 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
7439 lua_error(L);
7444 static int _wrap_SBBlock_GetVariables(lua_State* L) {
7450 argc = lua_gettop(L);
7455 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBlock, 0)) {
7464 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
7472 _v = lua_isboolean(L,argv[2]);
7476 _v = lua_isboolean(L,argv[3]);
7480 _v = lua_isboolean(L,argv[4]);
7483 return _wrap_SBBlock_GetVariables__SWIG_1(L);
7494 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBlock, 0)) {
7503 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, SWIG_POINTER_NO_NULL)) {
7511 _v = lua_isboolean(L,argv[2]);
7515 _v = lua_isboolean(L,argv[3]);
7519 _v = lua_isboolean(L,argv[4]);
7523 _v = lua_isnumber(L,argv[5]);
7526 return _wrap_SBBlock_GetVariables__SWIG_0(L);
7535 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBlock_GetVariables'\n"
7539 lua_error(L);return 0;
7543 static int _wrap_SBBlock_GetContainingInlinedBlock(lua_State* L) {
7550 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetContainingInlinedBlock",1,"lldb::SBBlock *");
7552 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7559 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
7565 lua_error(L);
7570 static int _wrap_SBBlock_GetDescription(lua_State* L) {
7578 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetDescription",1,"lldb::SBBlock *");
7579 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetDescription",2,"lldb::SBStream &");
7581 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
7591 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
7596 lua_error(L);
7601 static int _wrap_SBBlock___tostring(lua_State* L) {
7608 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::__repr__",1,"lldb::SBBlock *");
7610 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){
7615 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
7620 lua_error(L);
7629 static int _proxy__wrap_new_SBBlock(lua_State *L) {
7630 assert(lua_istable(L,1));
7631 lua_pushcfunction(L,_wrap_new_SBBlock);
7632 assert(!lua_isnil(L,-1));
7633 lua_replace(L,1); /* replace our table with real constructor */
7634 lua_call(L,lua_gettop(L)-1,1);
7691 static int _wrap_new_SBBreakpoint__SWIG_0(lua_State* L) {
7698 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
7703 lua_error(L);
7708 static int _wrap_new_SBBreakpoint__SWIG_1(lua_State* L) {
7715 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SBBreakpoint",1,"lldb::SBBreakpoint const &");
7717 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7722 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
7727 lua_error(L);
7732 static int _wrap_new_SBBreakpoint(lua_State* L) {
7738 argc = lua_gettop(L);
7740 return _wrap_new_SBBreakpoint__SWIG_0(L);
7746 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpoint, SWIG_POINTER_NO_NULL)) {
7753 return _wrap_new_SBBreakpoint__SWIG_1(L);
7757 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBreakpoint'\n"
7761 lua_error(L);return 0;
7765 static int _wrap_SBBreakpoint___eq(lua_State* L) {
7773 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::operator ==",1,"lldb::SBBreakpoint *");
7774 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::operator ==",2,"lldb::SBBreakpoint const &");
7776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7786 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
7791 lua_error(L);
7796 static int _wrap_SBBreakpoint_GetID(lua_State* L) {
7803 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetID",1,"lldb::SBBreakpoint const *");
7805 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7810 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
7815 lua_error(L);
7820 static int _wrap_SBBreakpoint_IsValid(lua_State* L) {
7827 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsValid",1,"lldb::SBBreakpoint const *");
7829 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7834 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
7839 lua_error(L);
7844 static int _wrap_SBBreakpoint_ClearAllBreakpointSites(lua_State* L) {
7850 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::ClearAllBreakpointSites",1,"lldb::SBBreakpoint *");
7852 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7862 lua_error(L);
7867 static int _wrap_SBBreakpoint_GetTarget(lua_State* L) {
7874 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetTarget",1,"lldb::SBBreakpoint const *");
7876 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7883 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
7889 lua_error(L);
7894 static int _wrap_SBBreakpoint_FindLocationByAddress(lua_State* L) {
7902 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByAddress",1,"lldb::SBBreakpoint *");
7903 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByAddress",2,"lldb::addr_t");
7905 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7909 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
7913 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++;
7919 lua_error(L);
7924 static int _wrap_SBBreakpoint_FindLocationIDByAddress(lua_State* L) {
7932 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationIDByAddress",1,"lldb::SBBreakpoint *");
7933 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationIDByAddress",2,"lldb::addr_t");
7935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7939 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
7941 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
7946 lua_error(L);
7951 static int _wrap_SBBreakpoint_FindLocationByID(lua_State* L) {
7959 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByID",1,"lldb::SBBreakpoint *");
7960 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByID",2,"lldb::break_id_t");
7962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7966 arg2 = (lldb::break_id_t)lua_tointeger(L, 2);
7970 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++;
7976 lua_error(L);
7981 static int _wrap_SBBreakpoint_GetLocationAtIndex(lua_State* L) {
7989 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetLocationAtIndex",1,"lldb::SBBreakpoint *");
7990 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetLocationAtIndex",2,"uint32_t");
7992 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
7996 arg2 = (uint32_t)lua_tointeger(L, 2);
8000 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++;
8006 lua_error(L);
8011 static int _wrap_SBBreakpoint_SetEnabled(lua_State* L) {
8018 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetEnabled",1,"lldb::SBBreakpoint *");
8019 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetEnabled",2,"bool");
8021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8025 arg2 = (lua_toboolean(L, 2)!=0);
8032 lua_error(L);
8037 static int _wrap_SBBreakpoint_IsEnabled(lua_State* L) {
8044 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsEnabled",1,"lldb::SBBreakpoint *");
8046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8051 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8056 lua_error(L);
8061 static int _wrap_SBBreakpoint_SetOneShot(lua_State* L) {
8068 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetOneShot",1,"lldb::SBBreakpoint *");
8069 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetOneShot",2,"bool");
8071 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8075 arg2 = (lua_toboolean(L, 2)!=0);
8082 lua_error(L);
8087 static int _wrap_SBBreakpoint_IsOneShot(lua_State* L) {
8094 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsOneShot",1,"lldb::SBBreakpoint const *");
8096 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8101 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8106 lua_error(L);
8111 static int _wrap_SBBreakpoint_IsInternal(lua_State* L) {
8118 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsInternal",1,"lldb::SBBreakpoint *");
8120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8125 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8130 lua_error(L);
8135 static int _wrap_SBBreakpoint_GetHitCount(lua_State* L) {
8142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetHitCount",1,"lldb::SBBreakpoint const *");
8144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8149 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
8154 lua_error(L);
8159 static int _wrap_SBBreakpoint_SetIgnoreCount(lua_State* L) {
8166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetIgnoreCount",1,"lldb::SBBreakpoint *");
8167 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetIgnoreCount",2,"uint32_t");
8169 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8173 arg2 = (uint32_t)lua_tointeger(L, 2);
8180 lua_error(L);
8185 static int _wrap_SBBreakpoint_GetIgnoreCount(lua_State* L) {
8192 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetIgnoreCount",1,"lldb::SBBreakpoint const *");
8194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8199 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
8204 lua_error(L);
8209 static int _wrap_SBBreakpoint_SetCondition(lua_State* L) {
8216 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetCondition",1,"lldb::SBBreakpoint *");
8217 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetCondition",2,"char const *");
8219 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8223 arg2 = (char *)lua_tostring(L, 2);
8230 lua_error(L);
8235 static int _wrap_SBBreakpoint_GetCondition(lua_State* L) {
8242 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetCondition",1,"lldb::SBBreakpoint *");
8244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8249 lua_pushstring(L,(const char *)result); SWIG_arg++;
8254 lua_error(L);
8259 static int _wrap_SBBreakpoint_SetAutoContinue(lua_State* L) {
8266 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetAutoContinue",1,"lldb::SBBreakpoint *");
8267 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetAutoContinue",2,"bool");
8269 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8273 arg2 = (lua_toboolean(L, 2)!=0);
8280 lua_error(L);
8285 static int _wrap_SBBreakpoint_GetAutoContinue(lua_State* L) {
8292 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetAutoContinue",1,"lldb::SBBreakpoint *");
8294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8299 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8304 lua_error(L);
8309 static int _wrap_SBBreakpoint_SetThreadID(lua_State* L) {
8316 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadID",1,"lldb::SBBreakpoint *");
8317 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadID",2,"lldb::tid_t");
8319 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8323 arg2 = (lldb::tid_t)lua_tointeger(L, 2);
8330 lua_error(L);
8335 static int _wrap_SBBreakpoint_GetThreadID(lua_State* L) {
8342 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetThreadID",1,"lldb::SBBreakpoint *");
8344 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8349 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
8354 lua_error(L);
8359 static int _wrap_SBBreakpoint_SetThreadIndex(lua_State* L) {
8366 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadIndex",1,"lldb::SBBreakpoint *");
8367 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadIndex",2,"uint32_t");
8369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8373 arg2 = (uint32_t)lua_tointeger(L, 2);
8380 lua_error(L);
8385 static int _wrap_SBBreakpoint_GetThreadIndex(lua_State* L) {
8392 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetThreadIndex",1,"lldb::SBBreakpoint const *");
8394 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8399 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
8404 lua_error(L);
8409 static int _wrap_SBBreakpoint_SetThreadName(lua_State* L) {
8416 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadName",1,"lldb::SBBreakpoint *");
8417 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadName",2,"char const *");
8419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8423 arg2 = (char *)lua_tostring(L, 2);
8430 lua_error(L);
8435 static int _wrap_SBBreakpoint_GetThreadName(lua_State* L) {
8442 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetThreadName",1,"lldb::SBBreakpoint const *");
8444 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8449 lua_pushstring(L,(const char *)result); SWIG_arg++;
8454 lua_error(L);
8459 static int _wrap_SBBreakpoint_SetQueueName(lua_State* L) {
8466 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetQueueName",1,"lldb::SBBreakpoint *");
8467 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetQueueName",2,"char const *");
8469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8473 arg2 = (char *)lua_tostring(L, 2);
8480 lua_error(L);
8485 static int _wrap_SBBreakpoint_GetQueueName(lua_State* L) {
8492 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetQueueName",1,"lldb::SBBreakpoint const *");
8494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8499 lua_pushstring(L,(const char *)result); SWIG_arg++;
8504 lua_error(L);
8509 static int _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0(lua_State* L) {
8516 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",1,"lldb::SBBreakpoint *");
8517 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",2,"char const *");
8519 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8523 arg2 = (char *)lua_tostring(L, 2);
8530 lua_error(L);
8535 static int _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1(lua_State* L) {
8544 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",1,"lldb::SBBreakpoint *");
8545 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",2,"char const *");
8546 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",3,"lldb::SBStructuredData &");
8548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8552 arg2 = (char *)lua_tostring(L, 2);
8554 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
8561 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
8567 lua_error(L);
8572 static int _wrap_SBBreakpoint_SetScriptCallbackFunction(lua_State* L) {
8578 argc = lua_gettop(L);
8583 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpoint, 0)) {
8591 _v = SWIG_lua_isnilstring(L,argv[1]);
8594 return _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0(L);
8602 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpoint, 0)) {
8610 _v = SWIG_lua_isnilstring(L,argv[1]);
8615 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
8622 return _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1(L);
8628 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpoint_SetScriptCallbackFunction'\n"
8632 lua_error(L);return 0;
8636 static int _wrap_SBBreakpoint_SetCommandLineCommands(lua_State* L) {
8643 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetCommandLineCommands",1,"lldb::SBBreakpoint *");
8644 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetCommandLineCommands",2,"lldb::SBStringList &");
8646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8651 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
8661 lua_error(L);
8666 static int _wrap_SBBreakpoint_GetCommandLineCommands(lua_State* L) {
8674 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetCommandLineCommands",1,"lldb::SBBreakpoint *");
8675 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetCommandLineCommands",2,"lldb::SBStringList &");
8677 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8682 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
8687 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8692 lua_error(L);
8697 static int _wrap_SBBreakpoint_SetScriptCallbackBody(lua_State* L) {
8705 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackBody",1,"lldb::SBBreakpoint *");
8706 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackBody",2,"char const *");
8708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8712 arg2 = (char *)lua_tostring(L, 2);
8716 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
8722 lua_error(L);
8727 static int _wrap_SBBreakpoint_AddName(lua_State* L) {
8735 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::AddName",1,"lldb::SBBreakpoint *");
8736 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::AddName",2,"char const *");
8738 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8742 arg2 = (char *)lua_tostring(L, 2);
8744 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8749 lua_error(L);
8754 static int _wrap_SBBreakpoint_AddNameWithErrorHandling(lua_State* L) {
8762 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::AddNameWithErrorHandling",1,"lldb::SBBreakpoint *");
8763 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::AddNameWithErrorHandling",2,"char const *");
8765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8769 arg2 = (char *)lua_tostring(L, 2);
8773 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
8779 lua_error(L);
8784 static int _wrap_SBBreakpoint_RemoveName(lua_State* L) {
8791 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::RemoveName",1,"lldb::SBBreakpoint *");
8792 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::RemoveName",2,"char const *");
8794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8798 arg2 = (char *)lua_tostring(L, 2);
8805 lua_error(L);
8810 static int _wrap_SBBreakpoint_MatchesName(lua_State* L) {
8818 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::MatchesName",1,"lldb::SBBreakpoint *");
8819 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::MatchesName",2,"char const *");
8821 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8825 arg2 = (char *)lua_tostring(L, 2);
8827 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8832 lua_error(L);
8837 static int _wrap_SBBreakpoint_GetNames(lua_State* L) {
8844 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNames",1,"lldb::SBBreakpoint *");
8845 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetNames",2,"lldb::SBStringList &");
8847 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8852 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
8862 lua_error(L);
8867 static int _wrap_SBBreakpoint_GetNumResolvedLocations(lua_State* L) {
8874 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNumResolvedLocations",1,"lldb::SBBreakpoint const *");
8876 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8881 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
8886 lua_error(L);
8891 static int _wrap_SBBreakpoint_GetNumLocations(lua_State* L) {
8898 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNumLocations",1,"lldb::SBBreakpoint const *");
8900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8905 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
8910 lua_error(L);
8915 static int _wrap_SBBreakpoint_GetDescription__SWIG_0(lua_State* L) {
8923 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",1,"lldb::SBBreakpoint *");
8924 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",2,"lldb::SBStream &");
8926 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
8936 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8941 lua_error(L);
8946 static int _wrap_SBBreakpoint_GetDescription__SWIG_1(lua_State* L) {
8955 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",1,"lldb::SBBreakpoint *");
8956 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",2,"lldb::SBStream &");
8957 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",3,"bool");
8959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
8964 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
8968 arg3 = (lua_toboolean(L, 3)!=0);
8970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
8975 lua_error(L);
8980 static int _wrap_SBBreakpoint_GetDescription(lua_State* L) {
8986 argc = lua_gettop(L);
8991 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpoint, 0)) {
9000 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
9007 return _wrap_SBBreakpoint_GetDescription__SWIG_0(L);
9015 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpoint, 0)) {
9024 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
9032 _v = lua_isboolean(L,argv[2]);
9035 return _wrap_SBBreakpoint_GetDescription__SWIG_1(L);
9041 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpoint_GetDescription'\n"
9045 lua_error(L);return 0;
9049 static int _wrap_SBBreakpoint_EventIsBreakpointEvent(lua_State* L) {
9056 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::EventIsBreakpointEvent",1,"lldb::SBEvent const &");
9058 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
9063 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
9068 lua_error(L);
9073 static int _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent(lua_State* L) {
9080 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointEventTypeFromEvent",1,"lldb::SBEvent const &");
9082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
9087 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9092 lua_error(L);
9097 static int _wrap_SBBreakpoint_GetBreakpointFromEvent(lua_State* L) {
9104 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointFromEvent",1,"lldb::SBEvent const &");
9106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
9113 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
9119 lua_error(L);
9124 static int _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent(lua_State* L) {
9132 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointLocationAtIndexFromEvent",1,"lldb::SBEvent const &");
9133 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointLocationAtIndexFromEvent",2,"uint32_t");
9135 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
9139 arg2 = (uint32_t)lua_tointeger(L, 2);
9143 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++;
9149 lua_error(L);
9154 static int _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent(lua_State* L) {
9161 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNumBreakpointLocationsFromEvent",1,"lldb::SBEvent const &");
9163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
9168 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9173 lua_error(L);
9178 static int _wrap_SBBreakpoint_IsHardware(lua_State* L) {
9185 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsHardware",1,"lldb::SBBreakpoint const *");
9187 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
9192 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
9197 lua_error(L);
9202 static int _wrap_SBBreakpoint_AddLocation(lua_State* L) {
9210 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::AddLocation",1,"lldb::SBBreakpoint *");
9211 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::AddLocation",2,"lldb::SBAddress &");
9213 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
9218 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
9225 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
9231 lua_error(L);
9236 static int _wrap_SBBreakpoint_SerializeToStructuredData(lua_State* L) {
9243 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SerializeToStructuredData",1,"lldb::SBBreakpoint *");
9245 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
9252 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
9258 lua_error(L);
9263 static int _wrap_SBBreakpoint___tostring(lua_State* L) {
9270 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::__repr__",1,"lldb::SBBreakpoint *");
9272 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
9277 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
9282 lua_error(L);
9291 static int _proxy__wrap_new_SBBreakpoint(lua_State *L) {
9292 assert(lua_istable(L,1));
9293 lua_pushcfunction(L,_wrap_new_SBBreakpoint);
9294 assert(!lua_isnil(L,-1));
9295 lua_replace(L,1); /* replace our table with real constructor */
9296 lua_call(L,lua_gettop(L)-1,1);
9386 static int _wrap_new_SBBreakpointList(lua_State* L) {
9393 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::SBBreakpointList",1,"lldb::SBTarget &");
9395 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
9400 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointList,1); SWIG_arg++;
9405 lua_error(L);
9410 static int _wrap_SBBreakpointList_GetSize(lua_State* L) {
9417 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::GetSize",1,"lldb::SBBreakpointList const *");
9419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9424 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9429 lua_error(L);
9434 static int _wrap_SBBreakpointList_GetBreakpointAtIndex(lua_State* L) {
9442 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::GetBreakpointAtIndex",1,"lldb::SBBreakpointList *");
9443 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::GetBreakpointAtIndex",2,"size_t");
9445 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9449 arg2 = (size_t)lua_tointeger(L, 2);
9453 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
9459 lua_error(L);
9464 static int _wrap_SBBreakpointList_FindBreakpointByID(lua_State* L) {
9472 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::FindBreakpointByID",1,"lldb::SBBreakpointList *");
9473 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::FindBreakpointByID",2,"lldb::break_id_t");
9475 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9479 arg2 = (lldb::break_id_t)lua_tointeger(L, 2);
9483 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
9489 lua_error(L);
9494 static int _wrap_SBBreakpointList_Append(lua_State* L) {
9501 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::Append",1,"lldb::SBBreakpointList *");
9502 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::Append",2,"lldb::SBBreakpoint const &");
9504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpoint,0))){
9519 lua_error(L);
9524 static int _wrap_SBBreakpointList_AppendIfUnique(lua_State* L) {
9532 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::AppendIfUnique",1,"lldb::SBBreakpointList *");
9533 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::AppendIfUnique",2,"lldb::SBBreakpoint const &");
9535 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpoint,0))){
9545 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
9550 lua_error(L);
9555 static int _wrap_SBBreakpointList_AppendByID(lua_State* L) {
9562 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::AppendByID",1,"lldb::SBBreakpointList *");
9563 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::AppendByID",2,"lldb::break_id_t");
9565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9569 arg2 = (lldb::break_id_t)lua_tointeger(L, 2);
9576 lua_error(L);
9581 static int _wrap_SBBreakpointList_Clear(lua_State* L) {
9587 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::Clear",1,"lldb::SBBreakpointList *");
9589 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){
9599 lua_error(L);
9608 static int _proxy__wrap_new_SBBreakpointList(lua_State *L) {
9609 assert(lua_istable(L,1));
9610 lua_pushcfunction(L,_wrap_new_SBBreakpointList);
9611 assert(!lua_isnil(L,-1));
9612 lua_replace(L,1); /* replace our table with real constructor */
9613 lua_call(L,lua_gettop(L)-1,1);
9658 static int _wrap_new_SBBreakpointLocation__SWIG_0(lua_State* L) {
9665 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++;
9670 lua_error(L);
9675 static int _wrap_new_SBBreakpointLocation__SWIG_1(lua_State* L) {
9682 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SBBreakpointLocation",1,"lldb::SBBreakpointLocation const &");
9684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9689 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++;
9694 lua_error(L);
9699 static int _wrap_new_SBBreakpointLocation(lua_State* L) {
9705 argc = lua_gettop(L);
9707 return _wrap_new_SBBreakpointLocation__SWIG_0(L);
9713 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointLocation, SWIG_POINTER_NO_NULL)) {
9720 return _wrap_new_SBBreakpointLocation__SWIG_1(L);
9724 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBreakpointLocation'\n"
9728 lua_error(L);return 0;
9732 static int _wrap_SBBreakpointLocation_GetID(lua_State* L) {
9739 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetID",1,"lldb::SBBreakpointLocation *");
9741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9746 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9751 lua_error(L);
9756 static int _wrap_SBBreakpointLocation_IsValid(lua_State* L) {
9763 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::IsValid",1,"lldb::SBBreakpointLocation const *");
9765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9770 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
9775 lua_error(L);
9780 static int _wrap_SBBreakpointLocation_GetAddress(lua_State* L) {
9787 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetAddress",1,"lldb::SBBreakpointLocation *");
9789 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9796 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
9802 lua_error(L);
9807 static int _wrap_SBBreakpointLocation_GetLoadAddress(lua_State* L) {
9814 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetLoadAddress",1,"lldb::SBBreakpointLocation *");
9816 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9821 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9826 lua_error(L);
9831 static int _wrap_SBBreakpointLocation_SetEnabled(lua_State* L) {
9838 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetEnabled",1,"lldb::SBBreakpointLocation *");
9839 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetEnabled",2,"bool");
9841 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9845 arg2 = (lua_toboolean(L, 2)!=0);
9852 lua_error(L);
9857 static int _wrap_SBBreakpointLocation_IsEnabled(lua_State* L) {
9864 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::IsEnabled",1,"lldb::SBBreakpointLocation *");
9866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9871 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
9876 lua_error(L);
9881 static int _wrap_SBBreakpointLocation_GetHitCount(lua_State* L) {
9888 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetHitCount",1,"lldb::SBBreakpointLocation *");
9890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9895 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9900 lua_error(L);
9905 static int _wrap_SBBreakpointLocation_GetIgnoreCount(lua_State* L) {
9912 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetIgnoreCount",1,"lldb::SBBreakpointLocation *");
9914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9919 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
9924 lua_error(L);
9929 static int _wrap_SBBreakpointLocation_SetIgnoreCount(lua_State* L) {
9936 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetIgnoreCount",1,"lldb::SBBreakpointLocation *");
9937 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetIgnoreCount",2,"uint32_t");
9939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9943 arg2 = (uint32_t)lua_tointeger(L, 2);
9950 lua_error(L);
9955 static int _wrap_SBBreakpointLocation_SetCondition(lua_State* L) {
9962 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCondition",1,"lldb::SBBreakpointLocation *");
9963 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCondition",2,"char const *");
9965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9969 arg2 = (char *)lua_tostring(L, 2);
9976 lua_error(L);
9981 static int _wrap_SBBreakpointLocation_GetCondition(lua_State* L) {
9988 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetCondition",1,"lldb::SBBreakpointLocation *");
9990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
9995 lua_pushstring(L,(const char *)result); SWIG_arg++;
10000 lua_error(L);
10005 static int _wrap_SBBreakpointLocation_SetAutoContinue(lua_State* L) {
10012 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetAutoContinue",1,"lldb::SBBreakpointLocation *");
10013 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetAutoContinue",2,"bool");
10015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10019 arg2 = (lua_toboolean(L, 2)!=0);
10026 lua_error(L);
10031 static int _wrap_SBBreakpointLocation_GetAutoContinue(lua_State* L) {
10038 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetAutoContinue",1,"lldb::SBBreakpointLocation *");
10040 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10045 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10050 lua_error(L);
10055 static int _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0(lua_State* L) {
10062 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",1,"lldb::SBBreakpointLocation *");
10063 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",2,"char const *");
10065 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10069 arg2 = (char *)lua_tostring(L, 2);
10076 lua_error(L);
10081 static int _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1(lua_State* L) {
10090 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",1,"lldb::SBBreakpointLocation *");
10091 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",2,"char const *");
10092 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",3,"lldb::SBStructuredData &");
10094 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10098 arg2 = (char *)lua_tostring(L, 2);
10100 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
10107 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
10113 lua_error(L);
10118 static int _wrap_SBBreakpointLocation_SetScriptCallbackFunction(lua_State* L) {
10124 argc = lua_gettop(L);
10129 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointLocation, 0)) {
10137 _v = SWIG_lua_isnilstring(L,argv[1]);
10140 return _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0(L);
10148 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointLocation, 0)) {
10156 _v = SWIG_lua_isnilstring(L,argv[1]);
10161 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
10168 return _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1(L);
10174 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpointLocation_SetScriptCallbackFunction'\n"
10178 lua_error(L);return 0;
10182 static int _wrap_SBBreakpointLocation_SetScriptCallbackBody(lua_State* L) {
10190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackBody",1,"lldb::SBBreakpointLocation *");
10191 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackBody",2,"char const *");
10193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10197 arg2 = (char *)lua_tostring(L, 2);
10201 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
10207 lua_error(L);
10212 static int _wrap_SBBreakpointLocation_SetCommandLineCommands(lua_State* L) {
10219 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCommandLineCommands",1,"lldb::SBBreakpointLocation *");
10220 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCommandLineCommands",2,"lldb::SBStringList &");
10222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
10237 lua_error(L);
10242 static int _wrap_SBBreakpointLocation_GetCommandLineCommands(lua_State* L) {
10250 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetCommandLineCommands",1,"lldb::SBBreakpointLocation *");
10251 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetCommandLineCommands",2,"lldb::SBStringList &");
10253 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10258 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
10263 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10268 lua_error(L);
10273 static int _wrap_SBBreakpointLocation_SetThreadID(lua_State* L) {
10280 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadID",1,"lldb::SBBreakpointLocation *");
10281 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadID",2,"lldb::tid_t");
10283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10287 arg2 = (lldb::tid_t)lua_tointeger(L, 2);
10294 lua_error(L);
10299 static int _wrap_SBBreakpointLocation_GetThreadID(lua_State* L) {
10306 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetThreadID",1,"lldb::SBBreakpointLocation *");
10308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10313 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
10318 lua_error(L);
10323 static int _wrap_SBBreakpointLocation_SetThreadIndex(lua_State* L) {
10330 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadIndex",1,"lldb::SBBreakpointLocation *");
10331 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadIndex",2,"uint32_t");
10333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10337 arg2 = (uint32_t)lua_tointeger(L, 2);
10344 lua_error(L);
10349 static int _wrap_SBBreakpointLocation_GetThreadIndex(lua_State* L) {
10356 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetThreadIndex",1,"lldb::SBBreakpointLocation const *");
10358 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10363 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
10368 lua_error(L);
10373 static int _wrap_SBBreakpointLocation_SetThreadName(lua_State* L) {
10380 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadName",1,"lldb::SBBreakpointLocation *");
10381 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadName",2,"char const *");
10383 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10387 arg2 = (char *)lua_tostring(L, 2);
10394 lua_error(L);
10399 static int _wrap_SBBreakpointLocation_GetThreadName(lua_State* L) {
10406 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetThreadName",1,"lldb::SBBreakpointLocation const *");
10408 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10413 lua_pushstring(L,(const char *)result); SWIG_arg++;
10418 lua_error(L);
10423 static int _wrap_SBBreakpointLocation_SetQueueName(lua_State* L) {
10430 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetQueueName",1,"lldb::SBBreakpointLocation *");
10431 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetQueueName",2,"char const *");
10433 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10437 arg2 = (char *)lua_tostring(L, 2);
10444 lua_error(L);
10449 static int _wrap_SBBreakpointLocation_GetQueueName(lua_State* L) {
10456 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetQueueName",1,"lldb::SBBreakpointLocation const *");
10458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10463 lua_pushstring(L,(const char *)result); SWIG_arg++;
10468 lua_error(L);
10473 static int _wrap_SBBreakpointLocation_IsResolved(lua_State* L) {
10480 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::IsResolved",1,"lldb::SBBreakpointLocation *");
10482 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10487 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10492 lua_error(L);
10497 static int _wrap_SBBreakpointLocation_GetDescription(lua_State* L) {
10506 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetDescription",1,"lldb::SBBreakpointLocation *");
10507 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetDescription",2,"lldb::SBStream &");
10508 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetDescription",3,"lldb::DescriptionLevel");
10510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
10519 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
10521 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10526 lua_error(L);
10531 static int _wrap_SBBreakpointLocation_GetBreakpoint(lua_State* L) {
10538 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetBreakpoint",1,"lldb::SBBreakpointLocation *");
10540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10547 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
10553 lua_error(L);
10558 static int _wrap_SBBreakpointLocation___tostring(lua_State* L) {
10565 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::__repr__",1,"lldb::SBBreakpointLocation *");
10567 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){
10572 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
10577 lua_error(L);
10586 static int _proxy__wrap_new_SBBreakpointLocation(lua_State *L) {
10587 assert(lua_istable(L,1));
10588 lua_pushcfunction(L,_wrap_new_SBBreakpointLocation);
10589 assert(!lua_isnil(L,-1));
10590 lua_replace(L,1); /* replace our table with real constructor */
10591 lua_call(L,lua_gettop(L)-1,1);
10659 static int _wrap_new_SBBreakpointName__SWIG_0(lua_State* L) {
10666 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++;
10671 lua_error(L);
10676 static int _wrap_new_SBBreakpointName__SWIG_1(lua_State* L) {
10684 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",1,"lldb::SBTarget &");
10685 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",2,"char const *");
10687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
10691 arg2 = (char *)lua_tostring(L, 2);
10693 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++;
10698 lua_error(L);
10703 static int _wrap_new_SBBreakpointName__SWIG_2(lua_State* L) {
10711 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",1,"lldb::SBBreakpoint &");
10712 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",2,"char const *");
10714 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){
10718 arg2 = (char *)lua_tostring(L, 2);
10720 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++;
10725 lua_error(L);
10730 static int _wrap_new_SBBreakpointName__SWIG_3(lua_State* L) {
10737 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",1,"lldb::SBBreakpointName const &");
10739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10744 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++;
10749 lua_error(L);
10754 static int _wrap_new_SBBreakpointName(lua_State* L) {
10760 argc = lua_gettop(L);
10762 return _wrap_new_SBBreakpointName__SWIG_0(L);
10768 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointName, SWIG_POINTER_NO_NULL)) {
10775 return _wrap_new_SBBreakpointName__SWIG_3(L);
10782 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpoint, SWIG_POINTER_NO_NULL)) {
10790 _v = SWIG_lua_isnilstring(L,argv[1]);
10793 return _wrap_new_SBBreakpointName__SWIG_2(L);
10801 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
10809 _v = SWIG_lua_isnilstring(L,argv[1]);
10812 return _wrap_new_SBBreakpointName__SWIG_1(L);
10817 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBreakpointName'\n"
10823 lua_error(L);return 0;
10827 static int _wrap_SBBreakpointName___eq(lua_State* L) {
10835 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::operator ==",1,"lldb::SBBreakpointName *");
10836 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::operator ==",2,"lldb::SBBreakpointName const &");
10838 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10843 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10848 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10853 lua_error(L);
10858 static int _wrap_SBBreakpointName_IsValid(lua_State* L) {
10865 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::IsValid",1,"lldb::SBBreakpointName const *");
10867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10872 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10877 lua_error(L);
10882 static int _wrap_SBBreakpointName_GetName(lua_State* L) {
10889 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetName",1,"lldb::SBBreakpointName const *");
10891 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10896 lua_pushstring(L,(const char *)result); SWIG_arg++;
10901 lua_error(L);
10906 static int _wrap_SBBreakpointName_SetEnabled(lua_State* L) {
10913 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetEnabled",1,"lldb::SBBreakpointName *");
10914 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetEnabled",2,"bool");
10916 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10920 arg2 = (lua_toboolean(L, 2)!=0);
10927 lua_error(L);
10932 static int _wrap_SBBreakpointName_IsEnabled(lua_State* L) {
10939 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::IsEnabled",1,"lldb::SBBreakpointName *");
10941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
10951 lua_error(L);
10956 static int _wrap_SBBreakpointName_SetOneShot(lua_State* L) {
10963 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetOneShot",1,"lldb::SBBreakpointName *");
10964 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetOneShot",2,"bool");
10966 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10970 arg2 = (lua_toboolean(L, 2)!=0);
10977 lua_error(L);
10982 static int _wrap_SBBreakpointName_IsOneShot(lua_State* L) {
10989 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::IsOneShot",1,"lldb::SBBreakpointName const *");
10991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
10996 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11001 lua_error(L);
11006 static int _wrap_SBBreakpointName_SetIgnoreCount(lua_State* L) {
11013 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetIgnoreCount",1,"lldb::SBBreakpointName *");
11014 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetIgnoreCount",2,"uint32_t");
11016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11020 arg2 = (uint32_t)lua_tointeger(L, 2);
11027 lua_error(L);
11032 static int _wrap_SBBreakpointName_GetIgnoreCount(lua_State* L) {
11039 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetIgnoreCount",1,"lldb::SBBreakpointName const *");
11041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11046 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
11051 lua_error(L);
11056 static int _wrap_SBBreakpointName_SetCondition(lua_State* L) {
11063 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetCondition",1,"lldb::SBBreakpointName *");
11064 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetCondition",2,"char const *");
11066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11070 arg2 = (char *)lua_tostring(L, 2);
11077 lua_error(L);
11082 static int _wrap_SBBreakpointName_GetCondition(lua_State* L) {
11089 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetCondition",1,"lldb::SBBreakpointName *");
11091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11096 lua_pushstring(L,(const char *)result); SWIG_arg++;
11101 lua_error(L);
11106 static int _wrap_SBBreakpointName_SetAutoContinue(lua_State* L) {
11113 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAutoContinue",1,"lldb::SBBreakpointName *");
11114 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAutoContinue",2,"bool");
11116 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11120 arg2 = (lua_toboolean(L, 2)!=0);
11127 lua_error(L);
11132 static int _wrap_SBBreakpointName_GetAutoContinue(lua_State* L) {
11139 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAutoContinue",1,"lldb::SBBreakpointName *");
11141 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11146 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11151 lua_error(L);
11156 static int _wrap_SBBreakpointName_SetThreadID(lua_State* L) {
11163 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadID",1,"lldb::SBBreakpointName *");
11164 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadID",2,"lldb::tid_t");
11166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11170 arg2 = (lldb::tid_t)lua_tointeger(L, 2);
11177 lua_error(L);
11182 static int _wrap_SBBreakpointName_GetThreadID(lua_State* L) {
11189 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetThreadID",1,"lldb::SBBreakpointName *");
11191 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11196 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
11201 lua_error(L);
11206 static int _wrap_SBBreakpointName_SetThreadIndex(lua_State* L) {
11213 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadIndex",1,"lldb::SBBreakpointName *");
11214 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadIndex",2,"uint32_t");
11216 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11220 arg2 = (uint32_t)lua_tointeger(L, 2);
11227 lua_error(L);
11232 static int _wrap_SBBreakpointName_GetThreadIndex(lua_State* L) {
11239 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetThreadIndex",1,"lldb::SBBreakpointName const *");
11241 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11246 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
11251 lua_error(L);
11256 static int _wrap_SBBreakpointName_SetThreadName(lua_State* L) {
11263 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadName",1,"lldb::SBBreakpointName *");
11264 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadName",2,"char const *");
11266 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11270 arg2 = (char *)lua_tostring(L, 2);
11277 lua_error(L);
11282 static int _wrap_SBBreakpointName_GetThreadName(lua_State* L) {
11289 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetThreadName",1,"lldb::SBBreakpointName const *");
11291 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11296 lua_pushstring(L,(const char *)result); SWIG_arg++;
11301 lua_error(L);
11306 static int _wrap_SBBreakpointName_SetQueueName(lua_State* L) {
11313 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetQueueName",1,"lldb::SBBreakpointName *");
11314 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetQueueName",2,"char const *");
11316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11320 arg2 = (char *)lua_tostring(L, 2);
11327 lua_error(L);
11332 static int _wrap_SBBreakpointName_GetQueueName(lua_State* L) {
11339 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetQueueName",1,"lldb::SBBreakpointName const *");
11341 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11346 lua_pushstring(L,(const char *)result); SWIG_arg++;
11351 lua_error(L);
11356 static int _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0(lua_State* L) {
11363 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",1,"lldb::SBBreakpointName *");
11364 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",2,"char const *");
11366 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11370 arg2 = (char *)lua_tostring(L, 2);
11377 lua_error(L);
11382 static int _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1(lua_State* L) {
11391 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",1,"lldb::SBBreakpointName *");
11392 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",2,"char const *");
11393 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",3,"lldb::SBStructuredData &");
11395 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11399 arg2 = (char *)lua_tostring(L, 2);
11401 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
11408 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
11414 lua_error(L);
11419 static int _wrap_SBBreakpointName_SetScriptCallbackFunction(lua_State* L) {
11425 argc = lua_gettop(L);
11430 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointName, 0)) {
11438 _v = SWIG_lua_isnilstring(L,argv[1]);
11441 return _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0(L);
11449 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointName, 0)) {
11457 _v = SWIG_lua_isnilstring(L,argv[1]);
11462 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
11469 return _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1(L);
11475 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpointName_SetScriptCallbackFunction'\n"
11479 lua_error(L);return 0;
11483 static int _wrap_SBBreakpointName_SetCommandLineCommands(lua_State* L) {
11490 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetCommandLineCommands",1,"lldb::SBBreakpointName *");
11491 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetCommandLineCommands",2,"lldb::SBStringList &");
11493 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11498 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
11508 lua_error(L);
11513 static int _wrap_SBBreakpointName_GetCommandLineCommands(lua_State* L) {
11521 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetCommandLineCommands",1,"lldb::SBBreakpointName *");
11522 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::GetCommandLineCommands",2,"lldb::SBStringList &");
11524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11529 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
11534 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11539 lua_error(L);
11544 static int _wrap_SBBreakpointName_SetScriptCallbackBody(lua_State* L) {
11552 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackBody",1,"lldb::SBBreakpointName *");
11553 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackBody",2,"char const *");
11555 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11559 arg2 = (char *)lua_tostring(L, 2);
11563 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
11569 lua_error(L);
11574 static int _wrap_SBBreakpointName_GetHelpString(lua_State* L) {
11581 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetHelpString",1,"lldb::SBBreakpointName const *");
11583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11588 lua_pushstring(L,(const char *)result); SWIG_arg++;
11593 lua_error(L);
11598 static int _wrap_SBBreakpointName_SetHelpString(lua_State* L) {
11605 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetHelpString",1,"lldb::SBBreakpointName *");
11606 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetHelpString",2,"char const *");
11608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11612 arg2 = (char *)lua_tostring(L, 2);
11619 lua_error(L);
11624 static int _wrap_SBBreakpointName_GetAllowList(lua_State* L) {
11631 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAllowList",1,"lldb::SBBreakpointName const *");
11633 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11638 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11643 lua_error(L);
11648 static int _wrap_SBBreakpointName_SetAllowList(lua_State* L) {
11655 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowList",1,"lldb::SBBreakpointName *");
11656 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowList",2,"bool");
11658 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11662 arg2 = (lua_toboolean(L, 2)!=0);
11669 lua_error(L);
11674 static int _wrap_SBBreakpointName_GetAllowDelete(lua_State* L) {
11681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAllowDelete",1,"lldb::SBBreakpointName *");
11683 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11688 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11693 lua_error(L);
11698 static int _wrap_SBBreakpointName_SetAllowDelete(lua_State* L) {
11705 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDelete",1,"lldb::SBBreakpointName *");
11706 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDelete",2,"bool");
11708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11712 arg2 = (lua_toboolean(L, 2)!=0);
11719 lua_error(L);
11724 static int _wrap_SBBreakpointName_GetAllowDisable(lua_State* L) {
11731 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAllowDisable",1,"lldb::SBBreakpointName *");
11733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11738 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11743 lua_error(L);
11748 static int _wrap_SBBreakpointName_SetAllowDisable(lua_State* L) {
11755 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDisable",1,"lldb::SBBreakpointName *");
11756 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDisable",2,"bool");
11758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11762 arg2 = (lua_toboolean(L, 2)!=0);
11769 lua_error(L);
11774 static int _wrap_SBBreakpointName_GetDescription(lua_State* L) {
11782 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetDescription",1,"lldb::SBBreakpointName *");
11783 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::GetDescription",2,"lldb::SBStream &");
11785 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
11795 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
11800 lua_error(L);
11805 static int _wrap_SBBreakpointName___tostring(lua_State* L) {
11812 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::__repr__",1,"lldb::SBBreakpointName *");
11814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){
11819 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
11824 lua_error(L);
11833 static int _proxy__wrap_new_SBBreakpointName(lua_State *L) {
11834 assert(lua_istable(L,1));
11835 lua_pushcfunction(L,_wrap_new_SBBreakpointName);
11836 assert(!lua_isnil(L,-1));
11837 lua_replace(L,1); /* replace our table with real constructor */
11838 lua_call(L,lua_gettop(L)-1,1);
11913 static int _wrap_new_SBBroadcaster__SWIG_0(lua_State* L) {
11920 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
11925 lua_error(L);
11930 static int _wrap_new_SBBroadcaster__SWIG_1(lua_State* L) {
11937 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::SBBroadcaster",1,"char const *");
11938 arg1 = (char *)lua_tostring(L, 1);
11940 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
11945 lua_error(L);
11950 static int _wrap_new_SBBroadcaster__SWIG_2(lua_State* L) {
11957 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::SBBroadcaster",1,"lldb::SBBroadcaster const &");
11959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
11964 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
11969 lua_error(L);
11974 static int _wrap_new_SBBroadcaster(lua_State* L) {
11980 argc = lua_gettop(L);
11982 return _wrap_new_SBBroadcaster__SWIG_0(L);
11988 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, SWIG_POINTER_NO_NULL)) {
11995 return _wrap_new_SBBroadcaster__SWIG_2(L);
12001 _v = SWIG_lua_isnilstring(L,argv[0]);
12004 return _wrap_new_SBBroadcaster__SWIG_1(L);
12008 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBroadcaster'\n"
12013 lua_error(L);return 0;
12017 static int _wrap_SBBroadcaster_IsValid(lua_State* L) {
12024 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::IsValid",1,"lldb::SBBroadcaster const *");
12026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12031 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12036 lua_error(L);
12041 static int _wrap_SBBroadcaster_Clear(lua_State* L) {
12047 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::Clear",1,"lldb::SBBroadcaster *");
12049 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12059 lua_error(L);
12064 static int _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0(lua_State* L) {
12072 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",1,"lldb::SBBroadcaster *");
12073 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",2,"uint32_t");
12074 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",3,"bool");
12076 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12080 arg2 = (uint32_t)lua_tointeger(L, 2);
12081 arg3 = (lua_toboolean(L, 3)!=0);
12088 lua_error(L);
12093 static int _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1(lua_State* L) {
12100 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",1,"lldb::SBBroadcaster *");
12101 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",2,"uint32_t");
12103 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12107 arg2 = (uint32_t)lua_tointeger(L, 2);
12114 lua_error(L);
12119 static int _wrap_SBBroadcaster_BroadcastEventByType(lua_State* L) {
12125 argc = lua_gettop(L);
12130 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, 0)) {
12138 _v = lua_isnumber(L,argv[1]);
12141 return _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1(L);
12149 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, 0)) {
12157 _v = lua_isnumber(L,argv[1]);
12161 _v = lua_isboolean(L,argv[2]);
12164 return _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0(L);
12170 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBroadcaster_BroadcastEventByType'\n"
12174 lua_error(L);return 0;
12178 static int _wrap_SBBroadcaster_BroadcastEvent__SWIG_0(lua_State* L) {
12186 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",1,"lldb::SBBroadcaster *");
12187 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",2,"lldb::SBEvent const &");
12188 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",3,"bool");
12190 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12195 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
12199 arg3 = (lua_toboolean(L, 3)!=0);
12206 lua_error(L);
12211 static int _wrap_SBBroadcaster_BroadcastEvent__SWIG_1(lua_State* L) {
12218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",1,"lldb::SBBroadcaster *");
12219 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",2,"lldb::SBEvent const &");
12221 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12226 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
12236 lua_error(L);
12241 static int _wrap_SBBroadcaster_BroadcastEvent(lua_State* L) {
12247 argc = lua_gettop(L);
12252 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, 0)) {
12261 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
12268 return _wrap_SBBroadcaster_BroadcastEvent__SWIG_1(L);
12276 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, 0)) {
12285 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
12293 _v = lua_isboolean(L,argv[2]);
12296 return _wrap_SBBroadcaster_BroadcastEvent__SWIG_0(L);
12302 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBroadcaster_BroadcastEvent'\n"
12306 lua_error(L);return 0;
12310 static int _wrap_SBBroadcaster_AddInitialEventsToListener(lua_State* L) {
12318 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::AddInitialEventsToListener",1,"lldb::SBBroadcaster *");
12319 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::AddInitialEventsToListener",2,"lldb::SBListener const &");
12320 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::AddInitialEventsToListener",3,"uint32_t");
12322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
12331 arg3 = (uint32_t)lua_tointeger(L, 3);
12338 lua_error(L);
12343 static int _wrap_SBBroadcaster_AddListener(lua_State* L) {
12352 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::AddListener",1,"lldb::SBBroadcaster *");
12353 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::AddListener",2,"lldb::SBListener const &");
12354 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::AddListener",3,"uint32_t");
12356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
12365 arg3 = (uint32_t)lua_tointeger(L, 3);
12367 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
12372 lua_error(L);
12377 static int _wrap_SBBroadcaster_GetName(lua_State* L) {
12384 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::GetName",1,"lldb::SBBroadcaster const *");
12386 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12391 lua_pushstring(L,(const char *)result); SWIG_arg++;
12396 lua_error(L);
12401 static int _wrap_SBBroadcaster_EventTypeHasListeners(lua_State* L) {
12409 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::EventTypeHasListeners",1,"lldb::SBBroadcaster *");
12410 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::EventTypeHasListeners",2,"uint32_t");
12412 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12416 arg2 = (uint32_t)lua_tointeger(L, 2);
12418 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12423 lua_error(L);
12428 static int _wrap_SBBroadcaster_RemoveListener__SWIG_0(lua_State* L) {
12437 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",1,"lldb::SBBroadcaster *");
12438 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",2,"lldb::SBListener const &");
12439 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",3,"uint32_t");
12441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12446 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
12450 arg3 = (uint32_t)lua_tointeger(L, 3);
12452 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12457 lua_error(L);
12462 static int _wrap_SBBroadcaster_RemoveListener__SWIG_1(lua_State* L) {
12470 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",1,"lldb::SBBroadcaster *");
12471 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",2,"lldb::SBListener const &");
12473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
12483 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12488 lua_error(L);
12493 static int _wrap_SBBroadcaster_RemoveListener(lua_State* L) {
12499 argc = lua_gettop(L);
12504 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, 0)) {
12513 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBListener, SWIG_POINTER_NO_NULL)) {
12520 return _wrap_SBBroadcaster_RemoveListener__SWIG_1(L);
12528 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBBroadcaster, 0)) {
12537 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBListener, SWIG_POINTER_NO_NULL)) {
12545 _v = lua_isnumber(L,argv[2]);
12548 return _wrap_SBBroadcaster_RemoveListener__SWIG_0(L);
12554 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBroadcaster_RemoveListener'\n"
12558 lua_error(L);return 0;
12562 static int _wrap_SBBroadcaster___eq(lua_State* L) {
12570 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::operator ==",1,"lldb::SBBroadcaster const *");
12571 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::operator ==",2,"lldb::SBBroadcaster const &");
12573 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12578 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12583 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12588 lua_error(L);
12593 static int _wrap_SBBroadcaster___lt(lua_State* L) {
12601 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::operator <",1,"lldb::SBBroadcaster const *");
12602 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::operator <",2,"lldb::SBBroadcaster const &");
12604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
12614 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12619 lua_error(L);
12628 static int _proxy__wrap_new_SBBroadcaster(lua_State *L) {
12629 assert(lua_istable(L,1));
12630 lua_pushcfunction(L,_wrap_new_SBBroadcaster);
12631 assert(!lua_isnil(L,-1));
12632 lua_replace(L,1); /* replace our table with real constructor */
12633 lua_call(L,lua_gettop(L)-1,1);
12684 static int _wrap_new_SBCommandInterpreter__SWIG_0(lua_State* L) {
12691 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreter,1); SWIG_arg++;
12696 lua_error(L);
12701 static int _wrap_new_SBCommandInterpreter__SWIG_1(lua_State* L) {
12708 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SBCommandInterpreter",1,"lldb::SBCommandInterpreter const &");
12710 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12715 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreter,1); SWIG_arg++;
12720 lua_error(L);
12725 static int _wrap_new_SBCommandInterpreter(lua_State* L) {
12731 argc = lua_gettop(L);
12733 return _wrap_new_SBCommandInterpreter__SWIG_0(L);
12739 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, SWIG_POINTER_NO_NULL)) {
12746 return _wrap_new_SBCommandInterpreter__SWIG_1(L);
12750 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommandInterpreter'\n"
12754 lua_error(L);return 0;
12758 static int _wrap_SBCommandInterpreter_GetArgumentTypeAsCString(lua_State* L) {
12765 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetArgumentTypeAsCString",1,"lldb::CommandArgumentType const");
12766 arg1 = (lldb::CommandArgumentType const)lua_tointeger(L, 1);
12768 lua_pushstring(L,(const char *)result); SWIG_arg++;
12773 lua_error(L);
12778 static int _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString(lua_State* L) {
12785 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetArgumentDescriptionAsCString",1,"lldb::CommandArgumentType const");
12786 arg1 = (lldb::CommandArgumentType const)lua_tointeger(L, 1);
12788 lua_pushstring(L,(const char *)result); SWIG_arg++;
12793 lua_error(L);
12798 static int _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent(lua_State* L) {
12805 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::EventIsCommandInterpreterEvent",1,"lldb::SBEvent const &");
12807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
12812 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12817 lua_error(L);
12822 static int _wrap_SBCommandInterpreter_IsValid(lua_State* L) {
12829 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::IsValid",1,"lldb::SBCommandInterpreter const *");
12831 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12836 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12841 lua_error(L);
12846 static int _wrap_SBCommandInterpreter_CommandExists(lua_State* L) {
12854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::CommandExists",1,"lldb::SBCommandInterpreter *");
12855 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::CommandExists",2,"char const *");
12857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12861 arg2 = (char *)lua_tostring(L, 2);
12863 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12868 lua_error(L);
12873 static int _wrap_SBCommandInterpreter_UserCommandExists(lua_State* L) {
12881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::UserCommandExists",1,"lldb::SBCommandInterpreter *");
12882 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::UserCommandExists",2,"char const *");
12884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12888 arg2 = (char *)lua_tostring(L, 2);
12890 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12895 lua_error(L);
12900 static int _wrap_SBCommandInterpreter_AliasExists(lua_State* L) {
12908 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::AliasExists",1,"lldb::SBCommandInterpreter *");
12909 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::AliasExists",2,"char const *");
12911 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12915 arg2 = (char *)lua_tostring(L, 2);
12917 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12922 lua_error(L);
12927 static int _wrap_SBCommandInterpreter_GetBroadcaster(lua_State* L) {
12934 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetBroadcaster",1,"lldb::SBCommandInterpreter *");
12936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
12949 lua_error(L);
12954 static int _wrap_SBCommandInterpreter_GetBroadcasterClass(lua_State* L) {
12961 lua_pushstring(L,(const char *)result); SWIG_arg++;
12966 lua_error(L);
12971 static int _wrap_SBCommandInterpreter_HasCommands(lua_State* L) {
12978 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasCommands",1,"lldb::SBCommandInterpreter *");
12980 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
12985 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
12990 lua_error(L);
12995 static int _wrap_SBCommandInterpreter_HasAliases(lua_State* L) {
13002 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasAliases",1,"lldb::SBCommandInterpreter *");
13004 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13009 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13014 lua_error(L);
13019 static int _wrap_SBCommandInterpreter_HasAliasOptions(lua_State* L) {
13026 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasAliasOptions",1,"lldb::SBCommandInterpreter *");
13028 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13033 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13038 lua_error(L);
13043 static int _wrap_SBCommandInterpreter_IsInteractive(lua_State* L) {
13050 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::IsInteractive",1,"lldb::SBCommandInterpreter *");
13052 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13057 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13062 lua_error(L);
13067 static int _wrap_SBCommandInterpreter_GetProcess(lua_State* L) {
13074 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetProcess",1,"lldb::SBCommandInterpreter *");
13076 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13083 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
13089 lua_error(L);
13094 static int _wrap_SBCommandInterpreter_GetDebugger(lua_State* L) {
13101 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetDebugger",1,"lldb::SBCommandInterpreter *");
13103 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13110 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
13116 lua_error(L);
13121 static int _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0(lua_State* L) {
13128 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory",1,"lldb::SBCommandInterpreter *");
13129 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory",2,"lldb::SBCommandReturnObject &");
13131 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13136 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13146 lua_error(L);
13151 static int _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1(lua_State* L) {
13159 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory",1,"lldb::SBCommandInterpreter *");
13160 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory",2,"lldb::SBCommandReturnObject &");
13161 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory",3,"bool");
13163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13172 arg3 = (lua_toboolean(L, 3)!=0);
13179 lua_error(L);
13184 static int _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory(lua_State* L) {
13190 argc = lua_gettop(L);
13195 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, 0)) {
13204 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
13211 return _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0(L);
13219 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, 0)) {
13228 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
13236 _v = lua_isboolean(L,argv[2]);
13239 return _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1(L);
13245 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandInterpreter_SourceInitFileInHomeDirectory'\n"
13249 lua_error(L);return 0;
13253 static int _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory(lua_State* L) {
13260 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInCurrentWorkingDirectory",1,"lldb::SBCommandInterpreter *");
13261 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInCurrentWorkingDirectory",2,"lldb::SBCommandReturnObject &");
13263 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13278 lua_error(L);
13283 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_0(lua_State* L) {
13293 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBCommandInterpreter *");
13294 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char const *");
13295 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBCommandReturnObject &");
13296 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",4,"bool");
13298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13302 arg2 = (char *)lua_tostring(L, 2);
13304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13308 arg4 = (lua_toboolean(L, 4)!=0);
13310 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
13315 lua_error(L);
13320 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_1(lua_State* L) {
13329 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBCommandInterpreter *");
13330 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char const *");
13331 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBCommandReturnObject &");
13333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13337 arg2 = (char *)lua_tostring(L, 2);
13339 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13344 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
13349 lua_error(L);
13354 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_2(lua_State* L) {
13365 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBCommandInterpreter *");
13366 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char const *");
13367 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBExecutionContext &");
13368 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",4,"lldb::SBCommandReturnObject &");
13369 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",5,"bool");
13371 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13375 arg2 = (char *)lua_tostring(L, 2);
13377 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExecutionContext,0))){
13382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13386 arg5 = (lua_toboolean(L, 5)!=0);
13388 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
13393 lua_error(L);
13398 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_3(lua_State* L) {
13408 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBCommandInterpreter *");
13409 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char const *");
13410 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBExecutionContext &");
13411 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",4,"lldb::SBCommandReturnObject &");
13413 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13417 arg2 = (char *)lua_tostring(L, 2);
13419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExecutionContext,0))){
13424 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13429 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
13434 lua_error(L);
13439 static int _wrap_SBCommandInterpreter_HandleCommand(lua_State* L) {
13445 argc = lua_gettop(L);
13450 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, 0)) {
13458 _v = SWIG_lua_isnilstring(L,argv[1]);
13463 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
13470 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_1(L);
13479 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, 0)) {
13487 _v = SWIG_lua_isnilstring(L,argv[1]);
13492 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
13500 _v = lua_isboolean(L,argv[3]);
13503 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_0(L);
13513 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, 0)) {
13521 _v = SWIG_lua_isnilstring(L,argv[1]);
13526 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBExecutionContext, SWIG_POINTER_NO_NULL)) {
13535 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
13542 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_3(L);
13552 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreter, 0)) {
13560 _v = SWIG_lua_isnilstring(L,argv[1]);
13565 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBExecutionContext, SWIG_POINTER_NO_NULL)) {
13574 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
13582 _v = lua_isboolean(L,argv[4]);
13585 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_2(L);
13593 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandInterpreter_HandleCommand'\n"
13599 lua_error(L);return 0;
13603 static int _wrap_SBCommandInterpreter_HandleCommandsFromFile(lua_State* L) {
13614 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",1,"lldb::SBCommandInterpreter *");
13615 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",2,"lldb::SBFileSpec &");
13616 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",3,"lldb::SBExecutionContext &");
13617 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",4,"lldb::SBCommandInterpreterRunOptions &");
13618 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",5,"lldb::SBCommandReturnObject");
13620 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13625 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
13630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExecutionContext,0))){
13635 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
13640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&argp5,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
13651 lua_error(L);
13656 static int _wrap_SBCommandInterpreter_HandleCompletion(lua_State* L) {
13668 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",1,"lldb::SBCommandInterpreter *");
13669 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",2,"char const *");
13670 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",3,"uint32_t");
13671 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",4,"int");
13672 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",5,"int");
13673 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",6,"lldb::SBStringList &");
13675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13679 arg2 = (char *)lua_tostring(L, 2);
13680 arg3 = (uint32_t)lua_tointeger(L, 3);
13681 arg4 = (int)lua_tointeger(L, 4);
13682 arg5 = (int)lua_tointeger(L, 5);
13684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBStringList,0))){
13689 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
13694 lua_error(L);
13699 static int _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions(lua_State* L) {
13712 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",1,"lldb::SBCommandInterpreter *");
13713 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",2,"char const *");
13714 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",3,"uint32_t");
13715 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",4,"int");
13716 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",5,"int");
13717 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",6,"lldb::SBStringList &");
13718 if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptions",7,"lldb::SBStringList &");
13720 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13724 arg2 = (char *)lua_tostring(L, 2);
13725 arg3 = (uint32_t)lua_tointeger(L, 3);
13726 arg4 = (int)lua_tointeger(L, 4);
13727 arg5 = (int)lua_tointeger(L, 5);
13729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBStringList,0))){
13734 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBStringList,0))){
13739 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
13744 lua_error(L);
13749 static int _wrap_SBCommandInterpreter_WasInterrupted(lua_State* L) {
13756 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::WasInterrupted",1,"lldb::SBCommandInterpreter const *");
13758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13763 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13768 lua_error(L);
13773 static int _wrap_SBCommandInterpreter_InterruptCommand(lua_State* L) {
13780 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::InterruptCommand",1,"lldb::SBCommandInterpreter *");
13782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13787 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13792 lua_error(L);
13797 static int _wrap_SBCommandInterpreter_SetCommandOverrideCallback(lua_State* L) {
13807 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",1,"lldb::SBCommandInterpreter *");
13808 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",2,"char const *");
13809 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",3,"lldb::CommandOverrideCallback");
13810 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",4,"void *");
13812 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13816 arg2 = (char *)lua_tostring(L, 2);
13818 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_f_p_void_p_p_q_const__char__bool,0))){
13822 arg4=(void *)SWIG_MustGetPtr(L,4,0,0,4,"SBCommandInterpreter_SetCommandOverrideCallback");
13824 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13829 lua_error(L);
13834 static int _wrap_SBCommandInterpreter_IsActive(lua_State* L) {
13841 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::IsActive",1,"lldb::SBCommandInterpreter *");
13843 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13848 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13853 lua_error(L);
13858 static int _wrap_SBCommandInterpreter_GetIOHandlerControlSequence(lua_State* L) {
13866 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetIOHandlerControlSequence",1,"lldb::SBCommandInterpreter *");
13867 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetIOHandlerControlSequence",2,"char");
13869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13873 arg2 = (lua_tostring(L, 2))[0];
13875 lua_pushstring(L,(const char *)result); SWIG_arg++;
13880 lua_error(L);
13885 static int _wrap_SBCommandInterpreter_GetPromptOnQuit(lua_State* L) {
13892 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetPromptOnQuit",1,"lldb::SBCommandInterpreter *");
13894 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13899 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13904 lua_error(L);
13909 static int _wrap_SBCommandInterpreter_SetPromptOnQuit(lua_State* L) {
13916 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetPromptOnQuit",1,"lldb::SBCommandInterpreter *");
13917 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetPromptOnQuit",2,"bool");
13919 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13923 arg2 = (lua_toboolean(L, 2)!=0);
13930 lua_error(L);
13935 static int _wrap_SBCommandInterpreter_AllowExitCodeOnQuit(lua_State* L) {
13942 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::AllowExitCodeOnQuit",1,"lldb::SBCommandInterpreter *");
13943 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::AllowExitCodeOnQuit",2,"bool");
13945 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13949 arg2 = (lua_toboolean(L, 2)!=0);
13956 lua_error(L);
13961 static int _wrap_SBCommandInterpreter_HasCustomQuitExitCode(lua_State* L) {
13968 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasCustomQuitExitCode",1,"lldb::SBCommandInterpreter *");
13970 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13975 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
13980 lua_error(L);
13985 static int _wrap_SBCommandInterpreter_GetQuitStatus(lua_State* L) {
13992 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetQuitStatus",1,"lldb::SBCommandInterpreter *");
13994 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
13999 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
14004 lua_error(L);
14009 static int _wrap_SBCommandInterpreter_ResolveCommand(lua_State* L) {
14017 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::ResolveCommand",1,"lldb::SBCommandInterpreter *");
14018 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::ResolveCommand",2,"char const *");
14019 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::ResolveCommand",3,"lldb::SBCommandReturnObject &");
14021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
14025 arg2 = (char *)lua_tostring(L, 2);
14027 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
14037 lua_error(L);
14042 static int _wrap_SBCommandInterpreter_GetStatistics(lua_State* L) {
14049 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetStatistics",1,"lldb::SBCommandInterpreter *");
14051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
14058 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
14064 lua_error(L);
14069 static int _wrap_SBCommandInterpreter_GetTranscript(lua_State* L) {
14076 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetTranscript",1,"lldb::SBCommandInterpreter *");
14078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){
14085 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
14091 lua_error(L);
14100 static int _proxy__wrap_new_SBCommandInterpreter(lua_State *L) {
14101 assert(lua_istable(L,1));
14102 lua_pushcfunction(L,_wrap_new_SBCommandInterpreter);
14103 assert(!lua_isnil(L,-1));
14104 lua_replace(L,1); /* replace our table with real constructor */
14105 lua_call(L,lua_gettop(L)-1,1);
14182 static int _wrap_new_SBCommandInterpreterRunOptions__SWIG_0(lua_State* L) {
14189 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,1); SWIG_arg++;
14194 lua_error(L);
14199 static int _wrap_new_SBCommandInterpreterRunOptions__SWIG_1(lua_State* L) {
14206 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SBCommandInterpreterRunOptions",1,"lldb::SBCommandInterpreterRunOptions const &");
14208 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14213 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,1); SWIG_arg++;
14218 lua_error(L);
14223 static int _wrap_new_SBCommandInterpreterRunOptions(lua_State* L) {
14229 argc = lua_gettop(L);
14231 return _wrap_new_SBCommandInterpreterRunOptions__SWIG_0(L);
14237 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions, SWIG_POINTER_NO_NULL)) {
14244 return _wrap_new_SBCommandInterpreterRunOptions__SWIG_1(L);
14248 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommandInterpreterRunOptions'\n"
14252 lua_error(L);return 0;
14256 static int _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue(lua_State* L) {
14263 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetStopOnContinue",1,"lldb::SBCommandInterpreterRunOptions const *");
14265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14270 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14275 lua_error(L);
14280 static int _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue(lua_State* L) {
14287 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnContinue",1,"lldb::SBCommandInterpreterRunOptions *");
14288 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnContinue",2,"bool");
14290 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14294 arg2 = (lua_toboolean(L, 2)!=0);
14301 lua_error(L);
14306 static int _wrap_SBCommandInterpreterRunOptions_GetStopOnError(lua_State* L) {
14313 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetStopOnError",1,"lldb::SBCommandInterpreterRunOptions const *");
14315 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14320 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14325 lua_error(L);
14330 static int _wrap_SBCommandInterpreterRunOptions_SetStopOnError(lua_State* L) {
14337 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnError",1,"lldb::SBCommandInterpreterRunOptions *");
14338 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnError",2,"bool");
14340 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14344 arg2 = (lua_toboolean(L, 2)!=0);
14351 lua_error(L);
14356 static int _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash(lua_State* L) {
14363 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetStopOnCrash",1,"lldb::SBCommandInterpreterRunOptions const *");
14365 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14370 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14375 lua_error(L);
14380 static int _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash(lua_State* L) {
14387 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnCrash",1,"lldb::SBCommandInterpreterRunOptions *");
14388 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnCrash",2,"bool");
14390 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14394 arg2 = (lua_toboolean(L, 2)!=0);
14401 lua_error(L);
14406 static int _wrap_SBCommandInterpreterRunOptions_GetEchoCommands(lua_State* L) {
14413 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetEchoCommands",1,"lldb::SBCommandInterpreterRunOptions const *");
14415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14420 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14425 lua_error(L);
14430 static int _wrap_SBCommandInterpreterRunOptions_SetEchoCommands(lua_State* L) {
14437 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommands",1,"lldb::SBCommandInterpreterRunOptions *");
14438 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommands",2,"bool");
14440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14444 arg2 = (lua_toboolean(L, 2)!=0);
14451 lua_error(L);
14456 static int _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands(lua_State* L) {
14463 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetEchoCommentCommands",1,"lldb::SBCommandInterpreterRunOptions const *");
14465 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14470 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14475 lua_error(L);
14480 static int _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands(lua_State* L) {
14487 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommentCommands",1,"lldb::SBCommandInterpreterRunOptions *");
14488 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommentCommands",2,"bool");
14490 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14494 arg2 = (lua_toboolean(L, 2)!=0);
14501 lua_error(L);
14506 static int _wrap_SBCommandInterpreterRunOptions_GetPrintResults(lua_State* L) {
14513 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetPrintResults",1,"lldb::SBCommandInterpreterRunOptions const *");
14515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14520 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14525 lua_error(L);
14530 static int _wrap_SBCommandInterpreterRunOptions_SetPrintResults(lua_State* L) {
14537 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintResults",1,"lldb::SBCommandInterpreterRunOptions *");
14538 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintResults",2,"bool");
14540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14544 arg2 = (lua_toboolean(L, 2)!=0);
14551 lua_error(L);
14556 static int _wrap_SBCommandInterpreterRunOptions_GetPrintErrors(lua_State* L) {
14563 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetPrintErrors",1,"lldb::SBCommandInterpreterRunOptions const *");
14565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14570 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14575 lua_error(L);
14580 static int _wrap_SBCommandInterpreterRunOptions_SetPrintErrors(lua_State* L) {
14587 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintErrors",1,"lldb::SBCommandInterpreterRunOptions *");
14588 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintErrors",2,"bool");
14590 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14594 arg2 = (lua_toboolean(L, 2)!=0);
14601 lua_error(L);
14606 static int _wrap_SBCommandInterpreterRunOptions_GetAddToHistory(lua_State* L) {
14613 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetAddToHistory",1,"lldb::SBCommandInterpreterRunOptions const *");
14615 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14620 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14625 lua_error(L);
14630 static int _wrap_SBCommandInterpreterRunOptions_SetAddToHistory(lua_State* L) {
14637 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAddToHistory",1,"lldb::SBCommandInterpreterRunOptions *");
14638 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAddToHistory",2,"bool");
14640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14644 arg2 = (lua_toboolean(L, 2)!=0);
14651 lua_error(L);
14656 static int _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents(lua_State* L) {
14663 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetAutoHandleEvents",1,"lldb::SBCommandInterpreterRunOptions const *");
14665 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14670 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14675 lua_error(L);
14680 static int _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents(lua_State* L) {
14687 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAutoHandleEvents",1,"lldb::SBCommandInterpreterRunOptions *");
14688 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAutoHandleEvents",2,"bool");
14690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14694 arg2 = (lua_toboolean(L, 2)!=0);
14701 lua_error(L);
14706 static int _wrap_SBCommandInterpreterRunOptions_GetSpawnThread(lua_State* L) {
14713 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetSpawnThread",1,"lldb::SBCommandInterpreterRunOptions const *");
14715 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14720 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14725 lua_error(L);
14730 static int _wrap_SBCommandInterpreterRunOptions_SetSpawnThread(lua_State* L) {
14737 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetSpawnThread",1,"lldb::SBCommandInterpreterRunOptions *");
14738 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetSpawnThread",2,"bool");
14740 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14744 arg2 = (lua_toboolean(L, 2)!=0);
14751 lua_error(L);
14756 static int _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats(lua_State* L) {
14763 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetAllowRepeats",1,"lldb::SBCommandInterpreterRunOptions const *");
14765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14770 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14775 lua_error(L);
14780 static int _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats(lua_State* L) {
14787 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAllowRepeats",1,"lldb::SBCommandInterpreterRunOptions *");
14788 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAllowRepeats",2,"bool");
14790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
14794 arg2 = (lua_toboolean(L, 2)!=0);
14801 lua_error(L);
14810 static int _proxy__wrap_new_SBCommandInterpreterRunOptions(lua_State *L) {
14811 assert(lua_istable(L,1));
14812 lua_pushcfunction(L,_wrap_new_SBCommandInterpreterRunOptions);
14813 assert(!lua_isnil(L,-1));
14814 lua_replace(L,1); /* replace our table with real constructor */
14815 lua_call(L,lua_gettop(L)-1,1);
14875 static int _wrap_new_SBCommandReturnObject__SWIG_0(lua_State* L) {
14882 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandReturnObject,1); SWIG_arg++;
14887 lua_error(L);
14892 static int _wrap_new_SBCommandReturnObject__SWIG_1(lua_State* L) {
14899 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SBCommandReturnObject",1,"lldb::SBCommandReturnObject const &");
14901 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
14906 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandReturnObject,1); SWIG_arg++;
14911 lua_error(L);
14916 static int _wrap_new_SBCommandReturnObject(lua_State* L) {
14922 argc = lua_gettop(L);
14924 return _wrap_new_SBCommandReturnObject__SWIG_0(L);
14930 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, SWIG_POINTER_NO_NULL)) {
14937 return _wrap_new_SBCommandReturnObject__SWIG_1(L);
14941 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommandReturnObject'\n"
14945 lua_error(L);return 0;
14949 static int _wrap_SBCommandReturnObject_IsValid(lua_State* L) {
14956 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::IsValid",1,"lldb::SBCommandReturnObject const *");
14958 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
14963 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
14968 lua_error(L);
14973 static int _wrap_SBCommandReturnObject_GetOutput__SWIG_0(lua_State* L) {
14980 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutput",1,"lldb::SBCommandReturnObject *");
14982 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
14987 lua_pushstring(L,(const char *)result); SWIG_arg++;
14992 lua_error(L);
14997 static int _wrap_SBCommandReturnObject_GetError__SWIG_0(lua_State* L) {
15004 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetError",1,"lldb::SBCommandReturnObject *");
15006 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15011 lua_pushstring(L,(const char *)result); SWIG_arg++;
15016 lua_error(L);
15021 static int _wrap_SBCommandReturnObject_PutOutput__SWIG_0(lua_State* L) {
15030 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutOutput",1,"lldb::SBCommandReturnObject *");
15031 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutOutput",2,"lldb::SBFile");
15033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
15044 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15049 lua_error(L);
15054 static int _wrap_SBCommandReturnObject_PutOutput__SWIG_1(lua_State* L) {
15062 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutOutput",1,"lldb::SBCommandReturnObject *");
15064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15069 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
15073 return luaL_error(L, "Invalid file");
15077 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15082 lua_error(L);
15087 static int _wrap_SBCommandReturnObject_PutOutput(lua_State* L) {
15093 argc = lua_gettop(L);
15098 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15107 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
15114 return _wrap_SBCommandReturnObject_PutOutput__SWIG_0(L);
15122 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15130 _v = (lua_isuserdata(L, argv[1])) &&
15131 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
15134 return _wrap_SBCommandReturnObject_PutOutput__SWIG_1(L);
15139 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_PutOutput'\n"
15143 lua_error(L);return 0;
15147 static int _wrap_SBCommandReturnObject_GetOutputSize(lua_State* L) {
15154 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutputSize",1,"lldb::SBCommandReturnObject *");
15156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15161 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15166 lua_error(L);
15171 static int _wrap_SBCommandReturnObject_GetErrorSize(lua_State* L) {
15178 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetErrorSize",1,"lldb::SBCommandReturnObject *");
15180 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15185 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15190 lua_error(L);
15195 static int _wrap_SBCommandReturnObject_PutError__SWIG_0(lua_State* L) {
15204 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutError",1,"lldb::SBCommandReturnObject *");
15205 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutError",2,"lldb::SBFile");
15207 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
15218 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15223 lua_error(L);
15228 static int _wrap_SBCommandReturnObject_PutError__SWIG_1(lua_State* L) {
15236 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutError",1,"lldb::SBCommandReturnObject *");
15238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15243 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
15247 return luaL_error(L, "Invalid file");
15251 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15256 lua_error(L);
15261 static int _wrap_SBCommandReturnObject_PutError(lua_State* L) {
15267 argc = lua_gettop(L);
15272 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15281 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
15288 return _wrap_SBCommandReturnObject_PutError__SWIG_0(L);
15296 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15304 _v = (lua_isuserdata(L, argv[1])) &&
15305 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
15308 return _wrap_SBCommandReturnObject_PutError__SWIG_1(L);
15313 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_PutError'\n"
15317 lua_error(L);return 0;
15321 static int _wrap_SBCommandReturnObject_Clear(lua_State* L) {
15327 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::Clear",1,"lldb::SBCommandReturnObject *");
15329 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15339 lua_error(L);
15344 static int _wrap_SBCommandReturnObject_GetStatus(lua_State* L) {
15351 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetStatus",1,"lldb::SBCommandReturnObject *");
15353 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15358 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
15363 lua_error(L);
15368 static int _wrap_SBCommandReturnObject_SetStatus(lua_State* L) {
15375 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetStatus",1,"lldb::SBCommandReturnObject *");
15376 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetStatus",2,"lldb::ReturnStatus");
15378 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15382 arg2 = (lldb::ReturnStatus)lua_tointeger(L, 2);
15389 lua_error(L);
15394 static int _wrap_SBCommandReturnObject_Succeeded(lua_State* L) {
15401 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::Succeeded",1,"lldb::SBCommandReturnObject *");
15403 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15408 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
15413 lua_error(L);
15418 static int _wrap_SBCommandReturnObject_HasResult(lua_State* L) {
15425 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::HasResult",1,"lldb::SBCommandReturnObject *");
15427 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15432 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
15437 lua_error(L);
15442 static int _wrap_SBCommandReturnObject_AppendMessage(lua_State* L) {
15449 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendMessage",1,"lldb::SBCommandReturnObject *");
15450 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendMessage",2,"char const *");
15452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15456 arg2 = (char *)lua_tostring(L, 2);
15463 lua_error(L);
15468 static int _wrap_SBCommandReturnObject_AppendWarning(lua_State* L) {
15475 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendWarning",1,"lldb::SBCommandReturnObject *");
15476 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendWarning",2,"char const *");
15478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15482 arg2 = (char *)lua_tostring(L, 2);
15489 lua_error(L);
15494 static int _wrap_SBCommandReturnObject_GetDescription(lua_State* L) {
15502 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetDescription",1,"lldb::SBCommandReturnObject *");
15503 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetDescription",2,"lldb::SBStream &");
15505 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
15515 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
15520 lua_error(L);
15525 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0(lua_State* L) {
15533 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",1,"lldb::SBCommandReturnObject *");
15534 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",2,"lldb::SBFile");
15536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15541 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
15552 lua_error(L);
15557 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0(lua_State* L) {
15565 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",1,"lldb::SBCommandReturnObject *");
15566 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",2,"lldb::SBFile");
15568 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15573 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
15584 lua_error(L);
15589 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1(lua_State* L) {
15596 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",1,"lldb::SBCommandReturnObject *");
15598 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15603 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
15607 return luaL_error(L, "Invalid file");
15616 lua_error(L);
15621 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1(lua_State* L) {
15628 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",1,"lldb::SBCommandReturnObject *");
15630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15635 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
15639 return luaL_error(L, "Invalid file");
15648 lua_error(L);
15653 static int _wrap_SBCommandReturnObject_PutCString__SWIG_0(lua_State* L) {
15661 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutCString",1,"lldb::SBCommandReturnObject *");
15663 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15668 if (lua_isnil(L, 2)) {
15672 arg2 = (char *)luaL_checklstring(L, 2, (size_t *)&arg3);
15681 lua_error(L);
15686 static int _wrap_SBCommandReturnObject_PutCString__SWIG_1(lua_State* L) {
15693 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutCString",1,"lldb::SBCommandReturnObject *");
15694 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutCString",2,"char const *");
15696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15700 arg2 = (char *)lua_tostring(L, 2);
15707 lua_error(L);
15712 static int _wrap_SBCommandReturnObject_PutCString(lua_State* L) {
15718 argc = lua_gettop(L);
15723 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15731 _v = SWIG_lua_isnilstring(L,argv[1]);
15735 return _wrap_SBCommandReturnObject_PutCString__SWIG_0(L);
15738 _v = lua_isnumber(L,argv[2]);
15741 return _wrap_SBCommandReturnObject_PutCString__SWIG_0(L);
15750 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15758 _v = SWIG_lua_isnilstring(L,argv[1]);
15761 return _wrap_SBCommandReturnObject_PutCString__SWIG_1(L);
15766 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_PutCString'\n"
15770 lua_error(L);return 0;
15774 static int _wrap_SBCommandReturnObject_GetOutput__SWIG_1(lua_State* L) {
15782 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutput",1,"lldb::SBCommandReturnObject *");
15783 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutput",2,"bool");
15785 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15789 arg2 = (lua_toboolean(L, 2)!=0);
15791 lua_pushstring(L,(const char *)result); SWIG_arg++;
15796 lua_error(L);
15801 static int _wrap_SBCommandReturnObject_GetOutput(lua_State* L) {
15807 argc = lua_gettop(L);
15812 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15819 return _wrap_SBCommandReturnObject_GetOutput__SWIG_0(L);
15826 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15834 _v = lua_isboolean(L,argv[1]);
15837 return _wrap_SBCommandReturnObject_GetOutput__SWIG_1(L);
15842 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_GetOutput'\n"
15846 lua_error(L);return 0;
15850 static int _wrap_SBCommandReturnObject_GetError__SWIG_1(lua_State* L) {
15858 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetError",1,"lldb::SBCommandReturnObject *");
15859 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetError",2,"bool");
15861 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15865 arg2 = (lua_toboolean(L, 2)!=0);
15867 lua_pushstring(L,(const char *)result); SWIG_arg++;
15872 lua_error(L);
15877 static int _wrap_SBCommandReturnObject_GetError(lua_State* L) {
15883 argc = lua_gettop(L);
15888 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15895 return _wrap_SBCommandReturnObject_GetError__SWIG_0(L);
15902 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
15910 _v = lua_isboolean(L,argv[1]);
15913 return _wrap_SBCommandReturnObject_GetError__SWIG_1(L);
15918 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_GetError'\n"
15922 lua_error(L);return 0;
15926 static int _wrap_SBCommandReturnObject_SetError__SWIG_0(lua_State* L) {
15934 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",1,"lldb::SBCommandReturnObject *");
15935 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",2,"lldb::SBError &");
15936 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",3,"char const *");
15938 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15943 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
15947 arg3 = (char *)lua_tostring(L, 3);
15954 lua_error(L);
15959 static int _wrap_SBCommandReturnObject_SetError__SWIG_1(lua_State* L) {
15966 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",1,"lldb::SBCommandReturnObject *");
15967 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",2,"lldb::SBError &");
15969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
15974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
15984 lua_error(L);
15989 static int _wrap_SBCommandReturnObject_SetError__SWIG_2(lua_State* L) {
15996 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",1,"lldb::SBCommandReturnObject *");
15997 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",2,"char const *");
15999 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
16003 arg2 = (char *)lua_tostring(L, 2);
16010 lua_error(L);
16015 static int _wrap_SBCommandReturnObject_SetError(lua_State* L) {
16021 argc = lua_gettop(L);
16026 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16035 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
16042 return _wrap_SBCommandReturnObject_SetError__SWIG_1(L);
16050 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16058 _v = SWIG_lua_isnilstring(L,argv[1]);
16061 return _wrap_SBCommandReturnObject_SetError__SWIG_2(L);
16069 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16078 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
16086 _v = SWIG_lua_isnilstring(L,argv[2]);
16089 return _wrap_SBCommandReturnObject_SetError__SWIG_0(L);
16095 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_SetError'\n"
16100 lua_error(L);return 0;
16104 static int _wrap_SBCommandReturnObject___tostring(lua_State* L) {
16111 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::__repr__",1,"lldb::SBCommandReturnObject *");
16113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
16118 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
16123 lua_error(L);
16128 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2(lua_State* L) {
16136 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",1,"lldb::SBCommandReturnObject *");
16137 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",3,"bool");
16139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
16144 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
16148 return luaL_error(L, "Invalid file");
16151 arg3 = (lua_toboolean(L, 3)!=0);
16158 lua_error(L);
16163 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile(lua_State* L) {
16169 argc = lua_gettop(L);
16174 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16183 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
16190 return _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0(L);
16198 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16206 _v = (lua_isuserdata(L, argv[1])) &&
16207 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
16210 return _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1(L);
16218 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16226 _v = (lua_isuserdata(L, argv[1])) &&
16227 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
16231 _v = lua_isboolean(L,argv[2]);
16234 return _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2(L);
16240 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_SetImmediateOutputFile'\n"
16245 lua_error(L);return 0;
16249 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2(lua_State* L) {
16257 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",1,"lldb::SBCommandReturnObject *");
16258 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",3,"bool");
16260 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
16265 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
16269 return luaL_error(L, "Invalid file");
16272 arg3 = (lua_toboolean(L, 3)!=0);
16279 lua_error(L);
16284 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile(lua_State* L) {
16290 argc = lua_gettop(L);
16295 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16304 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
16311 return _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0(L);
16319 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16327 _v = (lua_isuserdata(L, argv[1])) &&
16328 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
16331 return _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1(L);
16339 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCommandReturnObject, 0)) {
16347 _v = (lua_isuserdata(L, argv[1])) &&
16348 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
16352 _v = lua_isboolean(L,argv[2]);
16355 return _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2(L);
16361 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_SetImmediateErrorFile'\n"
16366 lua_error(L);return 0;
16370 static int _wrap_SBCommandReturnObject_Print(lua_State* L) {
16377 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::Print",1,"lldb::SBCommandReturnObject *");
16378 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::Print",2,"char const *");
16380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
16384 arg2 = (char *)lua_tostring(L, 2);
16391 lua_error(L);
16400 static int _proxy__wrap_new_SBCommandReturnObject(lua_State *L) {
16401 assert(lua_istable(L,1));
16402 lua_pushcfunction(L,_wrap_new_SBCommandReturnObject);
16403 assert(!lua_isnil(L,-1));
16404 lua_replace(L,1); /* replace our table with real constructor */
16405 lua_call(L,lua_gettop(L)-1,1);
16465 static int _wrap_new_SBCommunication__SWIG_0(lua_State* L) {
16472 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommunication,1); SWIG_arg++;
16477 lua_error(L);
16482 static int _wrap_new_SBCommunication__SWIG_1(lua_State* L) {
16489 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBCommunication::SBCommunication",1,"char const *");
16490 arg1 = (char *)lua_tostring(L, 1);
16492 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommunication,1); SWIG_arg++;
16497 lua_error(L);
16502 static int _wrap_new_SBCommunication(lua_State* L) {
16508 argc = lua_gettop(L);
16510 return _wrap_new_SBCommunication__SWIG_0(L);
16515 _v = SWIG_lua_isnilstring(L,argv[0]);
16518 return _wrap_new_SBCommunication__SWIG_1(L);
16522 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommunication'\n"
16526 lua_error(L);return 0;
16530 static int _wrap_SBCommunication_IsValid(lua_State* L) {
16537 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::IsValid",1,"lldb::SBCommunication const *");
16539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16544 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16549 lua_error(L);
16554 static int _wrap_SBCommunication_GetBroadcaster(lua_State* L) {
16561 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::GetBroadcaster",1,"lldb::SBCommunication *");
16563 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16570 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
16576 lua_error(L);
16581 static int _wrap_SBCommunication_GetBroadcasterClass(lua_State* L) {
16588 lua_pushstring(L,(const char *)result); SWIG_arg++;
16593 lua_error(L);
16598 static int _wrap_SBCommunication_AdoptFileDesriptor(lua_State* L) {
16607 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::AdoptFileDesriptor",1,"lldb::SBCommunication *");
16608 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCommunication::AdoptFileDesriptor",2,"int");
16609 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommunication::AdoptFileDesriptor",3,"bool");
16611 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16615 arg2 = (int)lua_tointeger(L, 2);
16616 arg3 = (lua_toboolean(L, 3)!=0);
16618 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
16623 lua_error(L);
16628 static int _wrap_SBCommunication_Connect(lua_State* L) {
16636 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Connect",1,"lldb::SBCommunication *");
16637 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommunication::Connect",2,"char const *");
16639 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16643 arg2 = (char *)lua_tostring(L, 2);
16645 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
16650 lua_error(L);
16655 static int _wrap_SBCommunication_Disconnect(lua_State* L) {
16662 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Disconnect",1,"lldb::SBCommunication *");
16664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16669 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
16674 lua_error(L);
16679 static int _wrap_SBCommunication_IsConnected(lua_State* L) {
16686 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::IsConnected",1,"lldb::SBCommunication const *");
16688 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16693 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16698 lua_error(L);
16703 static int _wrap_SBCommunication_GetCloseOnEOF(lua_State* L) {
16710 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::GetCloseOnEOF",1,"lldb::SBCommunication *");
16712 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16717 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16722 lua_error(L);
16727 static int _wrap_SBCommunication_SetCloseOnEOF(lua_State* L) {
16734 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::SetCloseOnEOF",1,"lldb::SBCommunication *");
16735 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommunication::SetCloseOnEOF",2,"bool");
16737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16741 arg2 = (lua_toboolean(L, 2)!=0);
16748 lua_error(L);
16753 static int _wrap_SBCommunication_Read(lua_State* L) {
16764 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Read",1,"lldb::SBCommunication *");
16765 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBCommunication::Read",2,"void *");
16766 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommunication::Read",3,"size_t");
16767 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBCommunication::Read",4,"uint32_t");
16768 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBCommunication::Read",5,"lldb::ConnectionStatus &");
16770 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16774 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBCommunication_Read");
16775 arg3 = (size_t)lua_tointeger(L, 3);
16776 arg4 = (uint32_t)lua_tointeger(L, 4);
16778 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__ConnectionStatus,0))){
16783 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
16788 lua_error(L);
16793 static int _wrap_SBCommunication_Write(lua_State* L) {
16803 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Write",1,"lldb::SBCommunication *");
16804 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBCommunication::Write",2,"void const *");
16805 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommunication::Write",3,"size_t");
16806 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommunication::Write",4,"lldb::ConnectionStatus &");
16808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16812 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBCommunication_Write");
16813 arg3 = (size_t)lua_tointeger(L, 3);
16815 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__ConnectionStatus,0))){
16820 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
16825 lua_error(L);
16830 static int _wrap_SBCommunication_ReadThreadStart(lua_State* L) {
16837 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::ReadThreadStart",1,"lldb::SBCommunication *");
16839 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16844 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16849 lua_error(L);
16854 static int _wrap_SBCommunication_ReadThreadStop(lua_State* L) {
16861 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::ReadThreadStop",1,"lldb::SBCommunication *");
16863 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16868 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16873 lua_error(L);
16878 static int _wrap_SBCommunication_ReadThreadIsRunning(lua_State* L) {
16885 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::ReadThreadIsRunning",1,"lldb::SBCommunication *");
16887 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16892 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16897 lua_error(L);
16902 static int _wrap_SBCommunication_SetReadThreadBytesReceivedCallback(lua_State* L) {
16911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::SetReadThreadBytesReceivedCallback",1,"lldb::SBCommunication *");
16912 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBCommunication::SetReadThreadBytesReceivedCallback",2,"lldb::SBCommunication::ReadThreadBytesReceived");
16913 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBCommunication::SetReadThreadBytesReceivedCallback",3,"void *");
16915 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){
16920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_p_void_p_q_const__void_size_t__void,0))){
16924 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBCommunication_SetReadThreadBytesReceivedCallback");
16926 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
16931 lua_error(L);
16940 static int _proxy__wrap_new_SBCommunication(lua_State *L) {
16941 assert(lua_istable(L,1));
16942 lua_pushcfunction(L,_wrap_new_SBCommunication);
16943 assert(!lua_isnil(L,-1));
16944 lua_replace(L,1); /* replace our table with real constructor */
16945 lua_call(L,lua_gettop(L)-1,1);
17004 static int _wrap_new_SBCompileUnit__SWIG_0(lua_State* L) {
17011 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++;
17016 lua_error(L);
17021 static int _wrap_new_SBCompileUnit__SWIG_1(lua_State* L) {
17028 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::SBCompileUnit",1,"lldb::SBCompileUnit const &");
17030 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17035 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++;
17040 lua_error(L);
17045 static int _wrap_new_SBCompileUnit(lua_State* L) {
17051 argc = lua_gettop(L);
17053 return _wrap_new_SBCompileUnit__SWIG_0(L);
17059 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, SWIG_POINTER_NO_NULL)) {
17066 return _wrap_new_SBCompileUnit__SWIG_1(L);
17070 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCompileUnit'\n"
17074 lua_error(L);return 0;
17078 static int _wrap_SBCompileUnit_IsValid(lua_State* L) {
17085 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::IsValid",1,"lldb::SBCompileUnit const *");
17087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17092 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
17097 lua_error(L);
17102 static int _wrap_SBCompileUnit_GetFileSpec(lua_State* L) {
17109 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetFileSpec",1,"lldb::SBCompileUnit const *");
17111 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17118 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
17124 lua_error(L);
17129 static int _wrap_SBCompileUnit_GetNumLineEntries(lua_State* L) {
17136 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetNumLineEntries",1,"lldb::SBCompileUnit const *");
17138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17143 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17148 lua_error(L);
17153 static int _wrap_SBCompileUnit_GetLineEntryAtIndex(lua_State* L) {
17161 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetLineEntryAtIndex",1,"lldb::SBCompileUnit const *");
17162 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetLineEntryAtIndex",2,"uint32_t");
17164 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17168 arg2 = (uint32_t)lua_tointeger(L, 2);
17172 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++;
17178 lua_error(L);
17183 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0(lua_State* L) {
17192 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompileUnit const *");
17193 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"lldb::SBLineEntry &");
17194 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",3,"bool");
17196 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17201 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLineEntry,0))){
17205 arg3 = (lua_toboolean(L, 3)!=0);
17207 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17212 lua_error(L);
17217 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1(lua_State* L) {
17225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompileUnit const *");
17226 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"lldb::SBLineEntry &");
17228 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17233 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLineEntry,0))){
17238 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17243 lua_error(L);
17248 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2(lua_State* L) {
17258 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompileUnit const *");
17259 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"uint32_t");
17260 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",3,"uint32_t");
17261 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",4,"lldb::SBFileSpec *");
17263 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17267 arg2 = (uint32_t)lua_tointeger(L, 2);
17268 arg3 = (uint32_t)lua_tointeger(L, 3);
17270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpec,0))){
17275 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17280 lua_error(L);
17285 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3(lua_State* L) {
17296 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompileUnit const *");
17297 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"uint32_t");
17298 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",3,"uint32_t");
17299 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",4,"lldb::SBFileSpec *");
17300 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",5,"bool");
17302 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17306 arg2 = (uint32_t)lua_tointeger(L, 2);
17307 arg3 = (uint32_t)lua_tointeger(L, 3);
17309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpec,0))){
17313 arg5 = (lua_toboolean(L, 5)!=0);
17315 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17320 lua_error(L);
17325 static int _wrap_SBCompileUnit_FindLineEntryIndex(lua_State* L) {
17331 argc = lua_gettop(L);
17336 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, 0)) {
17345 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBLineEntry, SWIG_POINTER_NO_NULL)) {
17352 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1(L);
17360 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, 0)) {
17369 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBLineEntry, SWIG_POINTER_NO_NULL)) {
17377 _v = lua_isboolean(L,argv[2]);
17380 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0(L);
17389 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, 0)) {
17397 _v = lua_isnumber(L,argv[1]);
17401 _v = lua_isnumber(L,argv[2]);
17406 if (SWIG_isptrtype(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, 0)) {
17413 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2(L);
17423 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, 0)) {
17431 _v = lua_isnumber(L,argv[1]);
17435 _v = lua_isnumber(L,argv[2]);
17440 if (SWIG_isptrtype(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, 0)) {
17448 _v = lua_isboolean(L,argv[4]);
17451 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3(L);
17459 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCompileUnit_FindLineEntryIndex'\n"
17465 lua_error(L);return 0;
17469 static int _wrap_SBCompileUnit_GetSupportFileAtIndex(lua_State* L) {
17477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetSupportFileAtIndex",1,"lldb::SBCompileUnit const *");
17478 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetSupportFileAtIndex",2,"uint32_t");
17480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17484 arg2 = (uint32_t)lua_tointeger(L, 2);
17488 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
17494 lua_error(L);
17499 static int _wrap_SBCompileUnit_GetNumSupportFiles(lua_State* L) {
17506 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetNumSupportFiles",1,"lldb::SBCompileUnit const *");
17508 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17513 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17518 lua_error(L);
17523 static int _wrap_SBCompileUnit_FindSupportFileIndex(lua_State* L) {
17533 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",1,"lldb::SBCompileUnit *");
17534 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",2,"uint32_t");
17535 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",3,"lldb::SBFileSpec const &");
17536 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",4,"bool");
17538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17542 arg2 = (uint32_t)lua_tointeger(L, 2);
17544 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
17548 arg4 = (lua_toboolean(L, 4)!=0);
17550 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17555 lua_error(L);
17560 static int _wrap_SBCompileUnit_GetTypes__SWIG_0(lua_State* L) {
17568 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetTypes",1,"lldb::SBCompileUnit *");
17569 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetTypes",2,"uint32_t");
17571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17575 arg2 = (uint32_t)lua_tointeger(L, 2);
17579 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
17585 lua_error(L);
17590 static int _wrap_SBCompileUnit_GetTypes__SWIG_1(lua_State* L) {
17597 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetTypes",1,"lldb::SBCompileUnit *");
17599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17606 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
17612 lua_error(L);
17617 static int _wrap_SBCompileUnit_GetTypes(lua_State* L) {
17623 argc = lua_gettop(L);
17628 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, 0)) {
17635 return _wrap_SBCompileUnit_GetTypes__SWIG_1(L);
17642 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBCompileUnit, 0)) {
17650 _v = lua_isnumber(L,argv[1]);
17653 return _wrap_SBCompileUnit_GetTypes__SWIG_0(L);
17658 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCompileUnit_GetTypes'\n"
17662 lua_error(L);return 0;
17666 static int _wrap_SBCompileUnit_GetLanguage(lua_State* L) {
17673 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetLanguage",1,"lldb::SBCompileUnit *");
17675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17680 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
17685 lua_error(L);
17690 static int _wrap_SBCompileUnit___eq(lua_State* L) {
17698 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::operator ==",1,"lldb::SBCompileUnit const *");
17699 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::operator ==",2,"lldb::SBCompileUnit const &");
17701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17706 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17711 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
17716 lua_error(L);
17721 static int _wrap_SBCompileUnit_GetDescription(lua_State* L) {
17729 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetDescription",1,"lldb::SBCompileUnit *");
17730 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetDescription",2,"lldb::SBStream &");
17732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
17742 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
17747 lua_error(L);
17752 static int _wrap_SBCompileUnit___tostring(lua_State* L) {
17759 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::__repr__",1,"lldb::SBCompileUnit *");
17761 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){
17766 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
17771 lua_error(L);
17780 static int _proxy__wrap_new_SBCompileUnit(lua_State *L) {
17781 assert(lua_istable(L,1));
17782 lua_pushcfunction(L,_wrap_new_SBCompileUnit);
17783 assert(!lua_isnil(L,-1));
17784 lua_replace(L,1); /* replace our table with real constructor */
17785 lua_call(L,lua_gettop(L)-1,1);
17838 static int _wrap_new_SBSaveCoreOptions__SWIG_0(lua_State* L) {
17845 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSaveCoreOptions,1); SWIG_arg++;
17850 lua_error(L);
17855 static int _wrap_new_SBSaveCoreOptions__SWIG_1(lua_State* L) {
17862 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SBSaveCoreOptions",1,"lldb::SBSaveCoreOptions const &");
17864 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
17869 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSaveCoreOptions,1); SWIG_arg++;
17874 lua_error(L);
17879 static int _wrap_new_SBSaveCoreOptions(lua_State* L) {
17885 argc = lua_gettop(L);
17887 return _wrap_new_SBSaveCoreOptions__SWIG_0(L);
17893 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSaveCoreOptions, SWIG_POINTER_NO_NULL)) {
17900 return _wrap_new_SBSaveCoreOptions__SWIG_1(L);
17904 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSaveCoreOptions'\n"
17908 lua_error(L);return 0;
17912 static int _wrap_SBSaveCoreOptions_SetPluginName(lua_State* L) {
17920 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetPluginName",1,"lldb::SBSaveCoreOptions *");
17921 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetPluginName",2,"char const *");
17923 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
17927 arg2 = (char *)lua_tostring(L, 2);
17931 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
17937 lua_error(L);
17942 static int _wrap_SBSaveCoreOptions_GetPluginName(lua_State* L) {
17949 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::GetPluginName",1,"lldb::SBSaveCoreOptions const *");
17951 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
17956 lua_pushstring(L,(const char *)result); SWIG_arg++;
17961 lua_error(L);
17966 static int _wrap_SBSaveCoreOptions_SetStyle(lua_State* L) {
17973 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetStyle",1,"lldb::SBSaveCoreOptions *");
17974 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetStyle",2,"lldb::SaveCoreStyle");
17976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
17980 arg2 = (lldb::SaveCoreStyle)lua_tointeger(L, 2);
17987 lua_error(L);
17992 static int _wrap_SBSaveCoreOptions_GetStyle(lua_State* L) {
17999 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::GetStyle",1,"lldb::SBSaveCoreOptions const *");
18001 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
18006 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18011 lua_error(L);
18016 static int _wrap_SBSaveCoreOptions_SetOutputFile(lua_State* L) {
18024 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetOutputFile",1,"lldb::SBSaveCoreOptions *");
18025 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetOutputFile",2,"lldb::SBFileSpec");
18027 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
18032 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){
18043 lua_error(L);
18048 static int _wrap_SBSaveCoreOptions_GetOutputFile(lua_State* L) {
18055 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::GetOutputFile",1,"lldb::SBSaveCoreOptions const *");
18057 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
18064 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
18070 lua_error(L);
18075 static int _wrap_SBSaveCoreOptions_Clear(lua_State* L) {
18081 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::Clear",1,"lldb::SBSaveCoreOptions *");
18083 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
18093 lua_error(L);
18102 static int _proxy__wrap_new_SBSaveCoreOptions(lua_State *L) {
18103 assert(lua_istable(L,1));
18104 lua_pushcfunction(L,_wrap_new_SBSaveCoreOptions);
18105 assert(!lua_isnil(L,-1));
18106 lua_replace(L,1); /* replace our table with real constructor */
18107 lua_call(L,lua_gettop(L)-1,1);
18152 static int _wrap_new_SBData__SWIG_0(lua_State* L) {
18159 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
18164 lua_error(L);
18169 static int _wrap_new_SBData__SWIG_1(lua_State* L) {
18176 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBData::SBData",1,"lldb::SBData const &");
18178 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18183 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
18188 lua_error(L);
18193 static int _wrap_new_SBData(lua_State* L) {
18199 argc = lua_gettop(L);
18201 return _wrap_new_SBData__SWIG_0(L);
18207 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBData, SWIG_POINTER_NO_NULL)) {
18214 return _wrap_new_SBData__SWIG_1(L);
18218 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBData'\n"
18222 lua_error(L);return 0;
18226 static int _wrap_SBData_GetAddressByteSize(lua_State* L) {
18233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetAddressByteSize",1,"lldb::SBData *");
18235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18240 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18245 lua_error(L);
18250 static int _wrap_SBData_SetAddressByteSize(lua_State* L) {
18257 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetAddressByteSize",1,"lldb::SBData *");
18258 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::SetAddressByteSize",2,"uint8_t");
18260 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18264 arg2 = (uint8_t)lua_tointeger(L, 2);
18271 lua_error(L);
18276 static int _wrap_SBData_Clear(lua_State* L) {
18282 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::Clear",1,"lldb::SBData *");
18284 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18294 lua_error(L);
18299 static int _wrap_SBData_IsValid(lua_State* L) {
18306 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::IsValid",1,"lldb::SBData *");
18308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18313 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
18318 lua_error(L);
18323 static int _wrap_SBData_GetByteSize(lua_State* L) {
18330 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetByteSize",1,"lldb::SBData *");
18332 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18337 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18342 lua_error(L);
18347 static int _wrap_SBData_GetByteOrder(lua_State* L) {
18354 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetByteOrder",1,"lldb::SBData *");
18356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18361 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18366 lua_error(L);
18371 static int _wrap_SBData_SetByteOrder(lua_State* L) {
18378 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetByteOrder",1,"lldb::SBData *");
18379 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::SetByteOrder",2,"lldb::ByteOrder");
18381 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18385 arg2 = (lldb::ByteOrder)lua_tointeger(L, 2);
18392 lua_error(L);
18397 static int _wrap_SBData_GetFloat(lua_State* L) {
18406 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetFloat",1,"lldb::SBData *");
18407 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetFloat",2,"lldb::SBError &");
18408 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetFloat",3,"lldb::offset_t");
18410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18419 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18421 lua_pushnumber(L, (lua_Number) result); SWIG_arg++;
18426 lua_error(L);
18431 static int _wrap_SBData_GetDouble(lua_State* L) {
18440 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetDouble",1,"lldb::SBData *");
18441 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetDouble",2,"lldb::SBError &");
18442 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetDouble",3,"lldb::offset_t");
18444 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18449 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18453 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18455 lua_pushnumber(L, (lua_Number) result); SWIG_arg++;
18460 lua_error(L);
18465 static int _wrap_SBData_GetLongDouble(lua_State* L) {
18474 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetLongDouble",1,"lldb::SBData *");
18475 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetLongDouble",2,"lldb::SBError &");
18476 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetLongDouble",3,"lldb::offset_t");
18478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18487 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18491 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_long_double,1); SWIG_arg++;
18497 lua_error(L);
18502 static int _wrap_SBData_GetAddress(lua_State* L) {
18511 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetAddress",1,"lldb::SBData *");
18512 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetAddress",2,"lldb::SBError &");
18513 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetAddress",3,"lldb::offset_t");
18515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18524 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18526 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18531 lua_error(L);
18536 static int _wrap_SBData_GetUnsignedInt8(lua_State* L) {
18545 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt8",1,"lldb::SBData *");
18546 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt8",2,"lldb::SBError &");
18547 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt8",3,"lldb::offset_t");
18549 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18554 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18558 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18560 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18565 lua_error(L);
18570 static int _wrap_SBData_GetUnsignedInt16(lua_State* L) {
18579 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt16",1,"lldb::SBData *");
18580 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt16",2,"lldb::SBError &");
18581 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt16",3,"lldb::offset_t");
18583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18588 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18592 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18594 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18599 lua_error(L);
18604 static int _wrap_SBData_GetUnsignedInt32(lua_State* L) {
18613 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt32",1,"lldb::SBData *");
18614 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt32",2,"lldb::SBError &");
18615 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt32",3,"lldb::offset_t");
18617 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18626 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18628 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18633 lua_error(L);
18638 static int _wrap_SBData_GetUnsignedInt64(lua_State* L) {
18647 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt64",1,"lldb::SBData *");
18648 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt64",2,"lldb::SBError &");
18649 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt64",3,"lldb::offset_t");
18651 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18656 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18660 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18662 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18667 lua_error(L);
18672 static int _wrap_SBData_GetSignedInt8(lua_State* L) {
18681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt8",1,"lldb::SBData *");
18682 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt8",2,"lldb::SBError &");
18683 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt8",3,"lldb::offset_t");
18685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18694 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18696 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18701 lua_error(L);
18706 static int _wrap_SBData_GetSignedInt16(lua_State* L) {
18715 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt16",1,"lldb::SBData *");
18716 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt16",2,"lldb::SBError &");
18717 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt16",3,"lldb::offset_t");
18719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18728 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18730 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18735 lua_error(L);
18740 static int _wrap_SBData_GetSignedInt32(lua_State* L) {
18749 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt32",1,"lldb::SBData *");
18750 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt32",2,"lldb::SBError &");
18751 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt32",3,"lldb::offset_t");
18753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18762 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18764 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18769 lua_error(L);
18774 static int _wrap_SBData_GetSignedInt64(lua_State* L) {
18783 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt64",1,"lldb::SBData *");
18784 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt64",2,"lldb::SBError &");
18785 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt64",3,"lldb::offset_t");
18787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18796 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18798 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18803 lua_error(L);
18808 static int _wrap_SBData_GetString(lua_State* L) {
18817 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetString",1,"lldb::SBData *");
18818 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetString",2,"lldb::SBError &");
18819 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetString",3,"lldb::offset_t");
18821 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18826 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18830 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18832 lua_pushstring(L,(const char *)result); SWIG_arg++;
18837 lua_error(L);
18842 static int _wrap_SBData_ReadRawData(lua_State* L) {
18853 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::ReadRawData",1,"lldb::SBData *");
18854 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::ReadRawData",2,"lldb::SBError &");
18855 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::ReadRawData",3,"lldb::offset_t");
18857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18862 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
18866 arg3 = (lldb::offset_t)lua_tointeger(L, 3);
18868 arg5 = luaL_checkinteger(L, 4);
18870 return luaL_error(L, "Positive integer expected");
18875 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
18877 lua_pop(L, 1); // Blow away the previous result
18879 lua_pushliteral(L, "");
18881 lua_pushlstring(L, (const char *)arg4, result);
18890 lua_error(L);
18895 static int _wrap_SBData_GetDescription__SWIG_0(lua_State* L) {
18904 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetDescription",1,"lldb::SBData *");
18905 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetDescription",2,"lldb::SBStream &");
18906 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetDescription",3,"lldb::addr_t");
18908 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
18917 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
18919 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
18924 lua_error(L);
18929 static int _wrap_SBData_GetDescription__SWIG_1(lua_State* L) {
18937 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetDescription",1,"lldb::SBData *");
18938 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetDescription",2,"lldb::SBStream &");
18940 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
18945 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
18950 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
18955 lua_error(L);
18960 static int _wrap_SBData_GetDescription(lua_State* L) {
18966 argc = lua_gettop(L);
18971 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBData, 0)) {
18980 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
18987 return _wrap_SBData_GetDescription__SWIG_1(L);
18995 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBData, 0)) {
19004 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
19012 _v = lua_isnumber(L,argv[2]);
19015 return _wrap_SBData_GetDescription__SWIG_0(L);
19021 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBData_GetDescription'\n"
19025 lua_error(L);return 0;
19029 static int _wrap_SBData_SetData(lua_State* L) {
19040 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetData",1,"lldb::SBData *");
19041 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::SetData",2,"lldb::SBError &");
19042 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBData::SetData",4,"lldb::ByteOrder");
19043 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBData::SetData",5,"uint8_t");
19045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19050 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
19055 arg3 = (void *)luaL_checklstring(L, 3, &arg4);
19057 arg5 = (lldb::ByteOrder)lua_tointeger(L, 4);
19058 arg6 = (uint8_t)lua_tointeger(L, 5);
19065 lua_error(L);
19070 static int _wrap_SBData_SetDataWithOwnership(lua_State* L) {
19081 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",1,"lldb::SBData *");
19082 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",2,"lldb::SBError &");
19083 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",4,"lldb::ByteOrder");
19084 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",5,"uint8_t");
19086 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
19096 arg3 = (void *)luaL_checklstring(L, 3, &arg4);
19098 arg5 = (lldb::ByteOrder)lua_tointeger(L, 4);
19099 arg6 = (uint8_t)lua_tointeger(L, 5);
19106 lua_error(L);
19111 static int _wrap_SBData_Append(lua_State* L) {
19119 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::Append",1,"lldb::SBData *");
19120 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::Append",2,"lldb::SBData const &");
19122 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19127 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBData,0))){
19132 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19137 lua_error(L);
19142 static int _wrap_SBData_CreateDataFromCString(lua_State* L) {
19151 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromCString",1,"lldb::ByteOrder");
19152 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromCString",2,"uint32_t");
19153 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBData::CreateDataFromCString",3,"char const *");
19154 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1);
19155 arg2 = (uint32_t)lua_tointeger(L, 2);
19156 arg3 = (char *)lua_tostring(L, 3);
19160 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
19166 lua_error(L);
19171 static int _wrap_SBData_CreateDataFromUInt64Array(lua_State* L) {
19181 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt64Array",1,"lldb::ByteOrder");
19182 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt64Array",2,"uint32_t");
19183 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1);
19184 arg2 = (uint32_t)lua_tointeger(L, 2);
19186 if (lua_istable(L, 3)) {
19188 arg4 = lua_rawlen(L, 3);
19192 lua_rawgeti(L, 3, i);
19193 if (!lua_isnumber(L, -1)) {
19195 lua_pop(L, 1);
19196 return luaL_error(L, "List should only contain numbers");
19198 arg3[j++] = (uint64_t) lua_tonumber(L, -1);
19199 lua_pop(L, 1);
19201 } else if (lua_isnil(L, 3)) {
19207 return luaL_error(L, "A list of numbers expected.");
19213 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
19225 lua_error(L);
19230 static int _wrap_SBData_CreateDataFromUInt32Array(lua_State* L) {
19240 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt32Array",1,"lldb::ByteOrder");
19241 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt32Array",2,"uint32_t");
19242 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1);
19243 arg2 = (uint32_t)lua_tointeger(L, 2);
19245 if (lua_istable(L, 3)) {
19247 arg4 = lua_rawlen(L, 3);
19251 lua_rawgeti(L, 3, i);
19252 if (!lua_isnumber(L, -1)) {
19254 lua_pop(L, 1);
19255 return luaL_error(L, "List should only contain numbers");
19257 arg3[j++] = (uint32_t) lua_tonumber(L, -1);
19258 lua_pop(L, 1);
19260 } else if (lua_isnil(L, 3)) {
19266 return luaL_error(L, "A list of numbers expected.");
19272 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
19284 lua_error(L);
19289 static int _wrap_SBData_CreateDataFromSInt64Array(lua_State* L) {
19299 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt64Array",1,"lldb::ByteOrder");
19300 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt64Array",2,"uint32_t");
19301 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1);
19302 arg2 = (uint32_t)lua_tointeger(L, 2);
19304 if (lua_istable(L, 3)) {
19306 arg4 = lua_rawlen(L, 3);
19310 lua_rawgeti(L, 3, i);
19311 if (!lua_isnumber(L, -1)) {
19313 lua_pop(L, 1);
19314 return luaL_error(L, "List should only contain numbers");
19316 arg3[j++] = (int64_t) lua_tonumber(L, -1);
19317 lua_pop(L, 1);
19319 } else if (lua_isnil(L, 3)) {
19325 return luaL_error(L, "A list of numbers expected.");
19331 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
19343 lua_error(L);
19348 static int _wrap_SBData_CreateDataFromSInt32Array(lua_State* L) {
19358 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt32Array",1,"lldb::ByteOrder");
19359 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt32Array",2,"uint32_t");
19360 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1);
19361 arg2 = (uint32_t)lua_tointeger(L, 2);
19363 if (lua_istable(L, 3)) {
19365 arg4 = lua_rawlen(L, 3);
19369 lua_rawgeti(L, 3, i);
19370 if (!lua_isnumber(L, -1)) {
19372 lua_pop(L, 1);
19373 return luaL_error(L, "List should only contain numbers");
19375 arg3[j++] = (int32_t) lua_tonumber(L, -1);
19376 lua_pop(L, 1);
19378 } else if (lua_isnil(L, 3)) {
19384 return luaL_error(L, "A list of numbers expected.");
19390 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
19402 lua_error(L);
19407 static int _wrap_SBData_CreateDataFromDoubleArray(lua_State* L) {
19417 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromDoubleArray",1,"lldb::ByteOrder");
19418 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromDoubleArray",2,"uint32_t");
19419 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1);
19420 arg2 = (uint32_t)lua_tointeger(L, 2);
19422 if (lua_istable(L, 3)) {
19424 arg4 = lua_rawlen(L, 3);
19428 lua_rawgeti(L, 3, i);
19429 if (!lua_isnumber(L, -1)) {
19431 lua_pop(L, 1);
19432 return luaL_error(L, "List should only contain numbers");
19434 arg3[j++] = (double) lua_tonumber(L, -1);
19435 lua_pop(L, 1);
19437 } else if (lua_isnil(L, 3)) {
19443 return luaL_error(L, "A list of numbers expected.");
19449 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
19461 lua_error(L);
19466 static int _wrap_SBData_SetDataFromCString(lua_State* L) {
19474 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromCString",1,"lldb::SBData *");
19475 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBData::SetDataFromCString",2,"char const *");
19477 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19481 arg2 = (char *)lua_tostring(L, 2);
19483 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19488 lua_error(L);
19493 static int _wrap_SBData_SetDataFromUInt64Array(lua_State* L) {
19502 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromUInt64Array",1,"lldb::SBData *");
19504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19509 if (lua_istable(L, 2)) {
19511 arg3 = lua_rawlen(L, 2);
19515 lua_rawgeti(L, 2, i);
19516 if (!lua_isnumber(L, -1)) {
19518 lua_pop(L, 1);
19519 return luaL_error(L, "List should only contain numbers");
19521 arg2[j++] = (uint64_t) lua_tonumber(L, -1);
19522 lua_pop(L, 1);
19524 } else if (lua_isnil(L, 2)) {
19530 return luaL_error(L, "A list of numbers expected.");
19534 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19545 lua_error(L);
19550 static int _wrap_SBData_SetDataFromUInt32Array(lua_State* L) {
19559 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromUInt32Array",1,"lldb::SBData *");
19561 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19566 if (lua_istable(L, 2)) {
19568 arg3 = lua_rawlen(L, 2);
19572 lua_rawgeti(L, 2, i);
19573 if (!lua_isnumber(L, -1)) {
19575 lua_pop(L, 1);
19576 return luaL_error(L, "List should only contain numbers");
19578 arg2[j++] = (uint32_t) lua_tonumber(L, -1);
19579 lua_pop(L, 1);
19581 } else if (lua_isnil(L, 2)) {
19587 return luaL_error(L, "A list of numbers expected.");
19591 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19602 lua_error(L);
19607 static int _wrap_SBData_SetDataFromSInt64Array(lua_State* L) {
19616 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromSInt64Array",1,"lldb::SBData *");
19618 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19623 if (lua_istable(L, 2)) {
19625 arg3 = lua_rawlen(L, 2);
19629 lua_rawgeti(L, 2, i);
19630 if (!lua_isnumber(L, -1)) {
19632 lua_pop(L, 1);
19633 return luaL_error(L, "List should only contain numbers");
19635 arg2[j++] = (int64_t) lua_tonumber(L, -1);
19636 lua_pop(L, 1);
19638 } else if (lua_isnil(L, 2)) {
19644 return luaL_error(L, "A list of numbers expected.");
19648 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19659 lua_error(L);
19664 static int _wrap_SBData_SetDataFromSInt32Array(lua_State* L) {
19673 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromSInt32Array",1,"lldb::SBData *");
19675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19680 if (lua_istable(L, 2)) {
19682 arg3 = lua_rawlen(L, 2);
19686 lua_rawgeti(L, 2, i);
19687 if (!lua_isnumber(L, -1)) {
19689 lua_pop(L, 1);
19690 return luaL_error(L, "List should only contain numbers");
19692 arg2[j++] = (int32_t) lua_tonumber(L, -1);
19693 lua_pop(L, 1);
19695 } else if (lua_isnil(L, 2)) {
19701 return luaL_error(L, "A list of numbers expected.");
19705 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19716 lua_error(L);
19721 static int _wrap_SBData_SetDataFromDoubleArray(lua_State* L) {
19730 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromDoubleArray",1,"lldb::SBData *");
19732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19737 if (lua_istable(L, 2)) {
19739 arg3 = lua_rawlen(L, 2);
19743 lua_rawgeti(L, 2, i);
19744 if (!lua_isnumber(L, -1)) {
19746 lua_pop(L, 1);
19747 return luaL_error(L, "List should only contain numbers");
19749 arg2[j++] = (double) lua_tonumber(L, -1);
19750 lua_pop(L, 1);
19752 } else if (lua_isnil(L, 2)) {
19758 return luaL_error(L, "A list of numbers expected.");
19762 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19773 lua_error(L);
19778 static int _wrap_SBData___tostring(lua_State* L) {
19785 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::__repr__",1,"lldb::SBData *");
19787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){
19792 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
19797 lua_error(L);
19806 static int _proxy__wrap_new_SBData(lua_State *L) {
19807 assert(lua_istable(L,1));
19808 lua_pushcfunction(L,_wrap_new_SBData);
19809 assert(!lua_isnil(L,-1));
19810 lua_replace(L,1); /* replace our table with real constructor */
19811 lua_call(L,lua_gettop(L)-1,1);
19888 static int _wrap_new_SBDebugger__SWIG_0(lua_State* L) {
19895 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
19900 lua_error(L);
19905 static int _wrap_new_SBDebugger__SWIG_1(lua_State* L) {
19912 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::SBDebugger",1,"lldb::SBDebugger const &");
19914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
19919 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
19924 lua_error(L);
19929 static int _wrap_new_SBDebugger(lua_State* L) {
19935 argc = lua_gettop(L);
19937 return _wrap_new_SBDebugger__SWIG_0(L);
19943 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, SWIG_POINTER_NO_NULL)) {
19950 return _wrap_new_SBDebugger__SWIG_1(L);
19954 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBDebugger'\n"
19958 lua_error(L);return 0;
19962 static int _wrap_SBDebugger_GetBroadcasterClass(lua_State* L) {
19969 lua_pushstring(L,(const char *)result); SWIG_arg++;
19974 lua_error(L);
19979 static int _wrap_SBDebugger_SupportsLanguage(lua_State* L) {
19986 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::SupportsLanguage",1,"lldb::LanguageType");
19987 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
19989 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
19994 lua_error(L);
19999 static int _wrap_SBDebugger_GetBroadcaster(lua_State* L) {
20006 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetBroadcaster",1,"lldb::SBDebugger *");
20008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20015 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
20021 lua_error(L);
20026 static int _wrap_SBDebugger_GetProgressFromEvent(lua_State* L) {
20045 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetProgressFromEvent",1,"lldb::SBEvent const &");
20047 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
20052 lua_pushstring(L,(const char *)result); SWIG_arg++;
20053 lua_pushinteger(L, (lua_Integer) *arg2); SWIG_arg++;
20054 lua_pushinteger(L, (lua_Integer) *arg3); SWIG_arg++;
20055 lua_pushinteger(L, (lua_Integer) *arg4); SWIG_arg++;
20056 lua_pushboolean(L, (int)((*arg5)!=0)); SWIG_arg++;
20061 lua_error(L);
20066 static int _wrap_SBDebugger_GetProgressDataFromEvent(lua_State* L) {
20073 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetProgressDataFromEvent",1,"lldb::SBEvent const &");
20075 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
20082 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
20088 lua_error(L);
20093 static int _wrap_SBDebugger_GetDiagnosticFromEvent(lua_State* L) {
20100 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDiagnosticFromEvent",1,"lldb::SBEvent const &");
20102 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
20109 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
20115 lua_error(L);
20120 static int _wrap_SBDebugger_Initialize(lua_State* L) {
20131 lua_error(L);
20136 static int _wrap_SBDebugger_InitializeWithErrorHandling(lua_State* L) {
20145 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20151 lua_error(L);
20156 static int _wrap_SBDebugger_PrintStackTraceOnError(lua_State* L) {
20167 lua_error(L);
20172 static int _wrap_SBDebugger_PrintDiagnosticsOnError(lua_State* L) {
20183 lua_error(L);
20188 static int _wrap_SBDebugger_Terminate(lua_State* L) {
20199 lua_error(L);
20204 static int _wrap_SBDebugger_Create__SWIG_0(lua_State* L) {
20213 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
20219 lua_error(L);
20224 static int _wrap_SBDebugger_Create__SWIG_1(lua_State* L) {
20231 if(!lua_isboolean(L,1)) SWIG_fail_arg("lldb::SBDebugger::Create",1,"bool");
20232 arg1 = (lua_toboolean(L, 1)!=0);
20236 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
20242 lua_error(L);
20247 static int _wrap_SBDebugger_Create__SWIG_2(lua_State* L) {
20256 if(!lua_isboolean(L,1)) SWIG_fail_arg("lldb::SBDebugger::Create",1,"bool");
20257 arg1 = (lua_toboolean(L, 1)!=0);
20260 arg3 = (void *)L;
20262 luaL_checktype(L, 2, LUA_TFUNCTION);
20263 lua_settop(L, 2);
20265 lua_pushlightuserdata(L, (void *)&LLDBSwigLuaCallLuaLogOutputCallback);
20266 lua_insert(L, 2);
20267 lua_settable(L, LUA_REGISTRYINDEX);
20272 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
20278 lua_error(L);
20283 static int _wrap_SBDebugger_Create(lua_State* L) {
20289 argc = lua_gettop(L);
20291 return _wrap_SBDebugger_Create__SWIG_0(L);
20296 _v = lua_isboolean(L,argv[0]);
20299 return _wrap_SBDebugger_Create__SWIG_1(L);
20305 _v = lua_isboolean(L,argv[0]);
20310 if (SWIG_isptrtype(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_f_p_q_const__char_p_void__void, 0)) {
20318 return _wrap_SBDebugger_Create__SWIG_2(L);
20322 if (SWIG_isptrtype(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, 0, 0)) {
20329 return _wrap_SBDebugger_Create__SWIG_2(L);
20335 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_Create'\n"
20340 lua_error(L);return 0;
20344 static int _wrap_SBDebugger_Destroy(lua_State* L) {
20350 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::Destroy",1,"lldb::SBDebugger &");
20352 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20362 lua_error(L);
20367 static int _wrap_SBDebugger_MemoryPressureDetected(lua_State* L) {
20378 lua_error(L);
20383 static int _wrap_SBDebugger_IsValid(lua_State* L) {
20390 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::IsValid",1,"lldb::SBDebugger const *");
20392 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20397 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
20402 lua_error(L);
20407 static int _wrap_SBDebugger_Clear(lua_State* L) {
20413 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::Clear",1,"lldb::SBDebugger *");
20415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20425 lua_error(L);
20430 static int _wrap_SBDebugger_GetSetting__SWIG_0(lua_State* L) {
20438 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSetting",1,"lldb::SBDebugger *");
20439 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetSetting",2,"char const *");
20441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20445 arg2 = (char *)lua_tostring(L, 2);
20449 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
20455 lua_error(L);
20460 static int _wrap_SBDebugger_GetSetting__SWIG_1(lua_State* L) {
20467 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSetting",1,"lldb::SBDebugger *");
20469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20476 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
20482 lua_error(L);
20487 static int _wrap_SBDebugger_GetSetting(lua_State* L) {
20493 argc = lua_gettop(L);
20498 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
20505 return _wrap_SBDebugger_GetSetting__SWIG_1(L);
20512 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
20520 _v = SWIG_lua_isnilstring(L,argv[1]);
20523 return _wrap_SBDebugger_GetSetting__SWIG_0(L);
20528 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_GetSetting'\n"
20532 lua_error(L);return 0;
20536 static int _wrap_SBDebugger_SetAsync(lua_State* L) {
20543 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetAsync",1,"lldb::SBDebugger *");
20544 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetAsync",2,"bool");
20546 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20550 arg2 = (lua_toboolean(L, 2)!=0);
20557 lua_error(L);
20562 static int _wrap_SBDebugger_GetAsync(lua_State* L) {
20569 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetAsync",1,"lldb::SBDebugger *");
20571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20576 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
20581 lua_error(L);
20586 static int _wrap_SBDebugger_SkipLLDBInitFiles(lua_State* L) {
20593 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SkipLLDBInitFiles",1,"lldb::SBDebugger *");
20594 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SkipLLDBInitFiles",2,"bool");
20596 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20600 arg2 = (lua_toboolean(L, 2)!=0);
20607 lua_error(L);
20612 static int _wrap_SBDebugger_SkipAppInitFiles(lua_State* L) {
20619 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SkipAppInitFiles",1,"lldb::SBDebugger *");
20620 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SkipAppInitFiles",2,"bool");
20622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20626 arg2 = (lua_toboolean(L, 2)!=0);
20633 lua_error(L);
20638 static int _wrap_SBDebugger_SetInputString(lua_State* L) {
20646 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInputString",1,"lldb::SBDebugger *");
20647 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetInputString",2,"char const *");
20649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20653 arg2 = (char *)lua_tostring(L, 2);
20657 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20663 lua_error(L);
20668 static int _wrap_SBDebugger_SetInputFile__SWIG_0(lua_State* L) {
20677 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInputFile",1,"lldb::SBDebugger *");
20678 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetInputFile",2,"lldb::SBFile");
20680 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
20693 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20699 lua_error(L);
20704 static int _wrap_SBDebugger_SetOutputFile__SWIG_0(lua_State* L) {
20713 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetOutputFile",1,"lldb::SBDebugger *");
20714 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetOutputFile",2,"lldb::SBFile");
20716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20721 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
20729 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20735 lua_error(L);
20740 static int _wrap_SBDebugger_SetErrorFile__SWIG_0(lua_State* L) {
20749 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetErrorFile",1,"lldb::SBDebugger *");
20750 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetErrorFile",2,"lldb::SBFile");
20752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
20765 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20771 lua_error(L);
20776 static int _wrap_SBDebugger_SetInputFile__SWIG_1(lua_State* L) {
20784 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInputFile",1,"lldb::SBDebugger *");
20786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20791 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
20795 return luaL_error(L, "Invalid file");
20801 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20807 lua_error(L);
20812 static int _wrap_SBDebugger_SetInputFile(lua_State* L) {
20818 argc = lua_gettop(L);
20823 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
20832 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
20839 return _wrap_SBDebugger_SetInputFile__SWIG_0(L);
20847 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
20855 _v = (lua_isuserdata(L, argv[1])) &&
20856 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
20859 return _wrap_SBDebugger_SetInputFile__SWIG_1(L);
20864 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_SetInputFile'\n"
20868 lua_error(L);return 0;
20872 static int _wrap_SBDebugger_SetOutputFile__SWIG_1(lua_State* L) {
20880 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetOutputFile",1,"lldb::SBDebugger *");
20882 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20887 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
20891 return luaL_error(L, "Invalid file");
20897 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20903 lua_error(L);
20908 static int _wrap_SBDebugger_SetOutputFile(lua_State* L) {
20914 argc = lua_gettop(L);
20919 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
20928 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
20935 return _wrap_SBDebugger_SetOutputFile__SWIG_0(L);
20943 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
20951 _v = (lua_isuserdata(L, argv[1])) &&
20952 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
20955 return _wrap_SBDebugger_SetOutputFile__SWIG_1(L);
20960 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_SetOutputFile'\n"
20964 lua_error(L);return 0;
20968 static int _wrap_SBDebugger_SetErrorFile__SWIG_1(lua_State* L) {
20976 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetErrorFile",1,"lldb::SBDebugger *");
20978 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
20983 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
20987 return luaL_error(L, "Invalid file");
20993 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
20999 lua_error(L);
21004 static int _wrap_SBDebugger_SetErrorFile(lua_State* L) {
21010 argc = lua_gettop(L);
21015 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
21024 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
21031 return _wrap_SBDebugger_SetErrorFile__SWIG_0(L);
21039 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
21047 _v = (lua_isuserdata(L, argv[1])) &&
21048 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
21051 return _wrap_SBDebugger_SetErrorFile__SWIG_1(L);
21056 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_SetErrorFile'\n"
21060 lua_error(L);return 0;
21064 static int _wrap_SBDebugger_GetInputFile(lua_State* L) {
21071 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInputFile",1,"lldb::SBDebugger *");
21073 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21080 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
21086 lua_error(L);
21091 static int _wrap_SBDebugger_GetOutputFile(lua_State* L) {
21098 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetOutputFile",1,"lldb::SBDebugger *");
21100 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21107 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
21113 lua_error(L);
21118 static int _wrap_SBDebugger_GetErrorFile(lua_State* L) {
21125 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetErrorFile",1,"lldb::SBDebugger *");
21127 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21134 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
21140 lua_error(L);
21145 static int _wrap_SBDebugger_SaveInputTerminalState(lua_State* L) {
21151 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SaveInputTerminalState",1,"lldb::SBDebugger *");
21153 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21163 lua_error(L);
21168 static int _wrap_SBDebugger_RestoreInputTerminalState(lua_State* L) {
21174 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RestoreInputTerminalState",1,"lldb::SBDebugger *");
21176 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21186 lua_error(L);
21191 static int _wrap_SBDebugger_GetCommandInterpreter(lua_State* L) {
21198 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCommandInterpreter",1,"lldb::SBDebugger *");
21200 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21207 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCommandInterpreter,1); SWIG_arg++;
21213 lua_error(L);
21218 static int _wrap_SBDebugger_HandleCommand(lua_State* L) {
21225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::HandleCommand",1,"lldb::SBDebugger *");
21226 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::HandleCommand",2,"char const *");
21228 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21232 arg2 = (char *)lua_tostring(L, 2);
21239 lua_error(L);
21244 static int _wrap_SBDebugger_RequestInterrupt(lua_State* L) {
21250 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RequestInterrupt",1,"lldb::SBDebugger *");
21252 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21262 lua_error(L);
21267 static int _wrap_SBDebugger_CancelInterruptRequest(lua_State* L) {
21273 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CancelInterruptRequest",1,"lldb::SBDebugger *");
21275 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21285 lua_error(L);
21290 static int _wrap_SBDebugger_InterruptRequested(lua_State* L) {
21297 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::InterruptRequested",1,"lldb::SBDebugger *");
21299 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21304 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
21309 lua_error(L);
21314 static int _wrap_SBDebugger_GetListener(lua_State* L) {
21321 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetListener",1,"lldb::SBDebugger *");
21323 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21330 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
21336 lua_error(L);
21341 static int _wrap_SBDebugger_HandleProcessEvent__SWIG_0(lua_State* L) {
21353 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",1,"lldb::SBDebugger *");
21354 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",2,"lldb::SBProcess const &");
21355 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",3,"lldb::SBEvent const &");
21356 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",4,"lldb::SBFile");
21357 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",5,"lldb::SBFile");
21359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBProcess,0))){
21369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){
21374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBFile,0))){
21380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&argp5,SWIGTYPE_p_lldb__SBFile,0))){
21391 lua_error(L);
21396 static int _wrap_SBDebugger_HandleProcessEvent__SWIG_1(lua_State* L) {
21406 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",1,"lldb::SBDebugger *");
21407 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",2,"lldb::SBProcess const &");
21408 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",3,"lldb::SBEvent const &");
21410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBProcess,0))){
21420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){
21425 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 4, LUA_FILEHANDLE);
21429 return luaL_error(L, "Invalid file");
21433 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 5, LUA_FILEHANDLE);
21437 return luaL_error(L, "Invalid file");
21446 lua_error(L);
21451 static int _wrap_SBDebugger_HandleProcessEvent(lua_State* L) {
21457 argc = lua_gettop(L);
21462 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
21471 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, SWIG_POINTER_NO_NULL)) {
21480 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
21489 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
21498 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
21505 return _wrap_SBDebugger_HandleProcessEvent__SWIG_0(L);
21516 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
21525 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, SWIG_POINTER_NO_NULL)) {
21534 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
21542 _v = (lua_isuserdata(L, argv[3])) &&
21543 (luaL_testudata(L, argv[3], LUA_FILEHANDLE) != nullptr);
21547 _v = (lua_isuserdata(L, argv[4])) &&
21548 (luaL_testudata(L, argv[4], LUA_FILEHANDLE) != nullptr);
21551 return _wrap_SBDebugger_HandleProcessEvent__SWIG_1(L);
21559 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_HandleProcessEvent'\n"
21563 lua_error(L);return 0;
21567 static int _wrap_SBDebugger_CreateTarget__SWIG_0(lua_State* L) {
21579 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",1,"lldb::SBDebugger *");
21580 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",2,"char const *");
21581 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",3,"char const *");
21582 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",4,"char const *");
21583 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",5,"bool");
21584 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",6,"lldb::SBError &");
21586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21590 arg2 = (char *)lua_tostring(L, 2);
21591 arg3 = (char *)lua_tostring(L, 3);
21592 arg4 = (char *)lua_tostring(L, 4);
21593 arg5 = (lua_toboolean(L, 5)!=0);
21595 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBError,0))){
21602 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21608 lua_error(L);
21613 static int _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple(lua_State* L) {
21622 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndTargetTriple",1,"lldb::SBDebugger *");
21623 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndTargetTriple",2,"char const *");
21624 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndTargetTriple",3,"char const *");
21626 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21630 arg2 = (char *)lua_tostring(L, 2);
21631 arg3 = (char *)lua_tostring(L, 3);
21635 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21641 lua_error(L);
21646 static int _wrap_SBDebugger_CreateTargetWithFileAndArch(lua_State* L) {
21655 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndArch",1,"lldb::SBDebugger *");
21656 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndArch",2,"char const *");
21657 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndArch",3,"char const *");
21659 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21663 arg2 = (char *)lua_tostring(L, 2);
21664 arg3 = (char *)lua_tostring(L, 3);
21668 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21674 lua_error(L);
21679 static int _wrap_SBDebugger_CreateTarget__SWIG_1(lua_State* L) {
21687 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",1,"lldb::SBDebugger *");
21688 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",2,"char const *");
21690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21694 arg2 = (char *)lua_tostring(L, 2);
21698 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21704 lua_error(L);
21709 static int _wrap_SBDebugger_CreateTarget(lua_State* L) {
21715 argc = lua_gettop(L);
21720 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
21728 _v = SWIG_lua_isnilstring(L,argv[1]);
21731 return _wrap_SBDebugger_CreateTarget__SWIG_1(L);
21739 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
21747 _v = SWIG_lua_isnilstring(L,argv[1]);
21751 _v = SWIG_lua_isnilstring(L,argv[2]);
21755 _v = SWIG_lua_isnilstring(L,argv[3]);
21759 _v = lua_isboolean(L,argv[4]);
21764 if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
21771 return _wrap_SBDebugger_CreateTarget__SWIG_0(L);
21780 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_CreateTarget'\n"
21784 lua_error(L);return 0;
21788 static int _wrap_SBDebugger_GetDummyTarget(lua_State* L) {
21795 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDummyTarget",1,"lldb::SBDebugger *");
21797 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21804 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21810 lua_error(L);
21815 static int _wrap_SBDebugger_DeleteTarget(lua_State* L) {
21823 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DeleteTarget",1,"lldb::SBDebugger *");
21824 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::DeleteTarget",2,"lldb::SBTarget &");
21826 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21831 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
21836 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
21841 lua_error(L);
21846 static int _wrap_SBDebugger_GetTargetAtIndex(lua_State* L) {
21854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetTargetAtIndex",1,"lldb::SBDebugger *");
21855 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetTargetAtIndex",2,"uint32_t");
21857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21861 arg2 = (uint32_t)lua_tointeger(L, 2);
21865 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21871 lua_error(L);
21876 static int _wrap_SBDebugger_GetIndexOfTarget(lua_State* L) {
21885 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetIndexOfTarget",1,"lldb::SBDebugger *");
21886 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetIndexOfTarget",2,"lldb::SBTarget");
21888 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
21899 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
21904 lua_error(L);
21909 static int _wrap_SBDebugger_FindTargetWithProcessID(lua_State* L) {
21917 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithProcessID",1,"lldb::SBDebugger *");
21918 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithProcessID",2,"lldb::pid_t");
21920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21924 arg2 = (lldb::pid_t)lua_tointeger(L, 2);
21928 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21934 lua_error(L);
21939 static int _wrap_SBDebugger_FindTargetWithFileAndArch(lua_State* L) {
21948 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithFileAndArch",1,"lldb::SBDebugger *");
21949 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithFileAndArch",2,"char const *");
21950 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithFileAndArch",3,"char const *");
21952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21956 arg2 = (char *)lua_tostring(L, 2);
21957 arg3 = (char *)lua_tostring(L, 3);
21961 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
21967 lua_error(L);
21972 static int _wrap_SBDebugger_GetNumTargets(lua_State* L) {
21979 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumTargets",1,"lldb::SBDebugger *");
21981 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
21986 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
21991 lua_error(L);
21996 static int _wrap_SBDebugger_GetSelectedTarget(lua_State* L) {
22003 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSelectedTarget",1,"lldb::SBDebugger *");
22005 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22012 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
22018 lua_error(L);
22023 static int _wrap_SBDebugger_SetSelectedTarget(lua_State* L) {
22030 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedTarget",1,"lldb::SBDebugger *");
22031 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedTarget",2,"lldb::SBTarget &");
22033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
22048 lua_error(L);
22053 static int _wrap_SBDebugger_GetSelectedPlatform(lua_State* L) {
22060 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSelectedPlatform",1,"lldb::SBDebugger *");
22062 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22069 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
22075 lua_error(L);
22080 static int _wrap_SBDebugger_SetSelectedPlatform(lua_State* L) {
22087 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedPlatform",1,"lldb::SBDebugger *");
22088 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedPlatform",2,"lldb::SBPlatform &");
22090 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22095 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBPlatform,0))){
22105 lua_error(L);
22110 static int _wrap_SBDebugger_GetNumPlatforms(lua_State* L) {
22117 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumPlatforms",1,"lldb::SBDebugger *");
22119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22124 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
22129 lua_error(L);
22134 static int _wrap_SBDebugger_GetPlatformAtIndex(lua_State* L) {
22142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetPlatformAtIndex",1,"lldb::SBDebugger *");
22143 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetPlatformAtIndex",2,"uint32_t");
22145 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22149 arg2 = (uint32_t)lua_tointeger(L, 2);
22153 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
22159 lua_error(L);
22164 static int _wrap_SBDebugger_GetNumAvailablePlatforms(lua_State* L) {
22171 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumAvailablePlatforms",1,"lldb::SBDebugger *");
22173 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22178 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
22183 lua_error(L);
22188 static int _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex(lua_State* L) {
22196 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetAvailablePlatformInfoAtIndex",1,"lldb::SBDebugger *");
22197 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetAvailablePlatformInfoAtIndex",2,"uint32_t");
22199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22203 arg2 = (uint32_t)lua_tointeger(L, 2);
22207 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
22213 lua_error(L);
22218 static int _wrap_SBDebugger_GetSourceManager(lua_State* L) {
22225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSourceManager",1,"lldb::SBDebugger *");
22227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22234 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++;
22240 lua_error(L);
22245 static int _wrap_SBDebugger_SetCurrentPlatform(lua_State* L) {
22253 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatform",1,"lldb::SBDebugger *");
22254 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatform",2,"char const *");
22256 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22260 arg2 = (char *)lua_tostring(L, 2);
22264 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
22270 lua_error(L);
22275 static int _wrap_SBDebugger_SetCurrentPlatformSDKRoot(lua_State* L) {
22283 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatformSDKRoot",1,"lldb::SBDebugger *");
22284 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatformSDKRoot",2,"char const *");
22286 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22290 arg2 = (char *)lua_tostring(L, 2);
22292 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22297 lua_error(L);
22302 static int _wrap_SBDebugger_SetUseExternalEditor(lua_State* L) {
22310 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetUseExternalEditor",1,"lldb::SBDebugger *");
22311 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetUseExternalEditor",2,"bool");
22313 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22317 arg2 = (lua_toboolean(L, 2)!=0);
22319 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22324 lua_error(L);
22329 static int _wrap_SBDebugger_GetUseExternalEditor(lua_State* L) {
22336 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetUseExternalEditor",1,"lldb::SBDebugger *");
22338 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22343 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22348 lua_error(L);
22353 static int _wrap_SBDebugger_SetUseColor(lua_State* L) {
22361 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetUseColor",1,"lldb::SBDebugger *");
22362 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetUseColor",2,"bool");
22364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22368 arg2 = (lua_toboolean(L, 2)!=0);
22370 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22375 lua_error(L);
22380 static int _wrap_SBDebugger_GetUseColor(lua_State* L) {
22387 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetUseColor",1,"lldb::SBDebugger const *");
22389 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22394 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22399 lua_error(L);
22404 static int _wrap_SBDebugger_SetUseSourceCache(lua_State* L) {
22412 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetUseSourceCache",1,"lldb::SBDebugger *");
22413 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetUseSourceCache",2,"bool");
22415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22419 arg2 = (lua_toboolean(L, 2)!=0);
22421 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22426 lua_error(L);
22431 static int _wrap_SBDebugger_GetUseSourceCache(lua_State* L) {
22438 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetUseSourceCache",1,"lldb::SBDebugger const *");
22440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22445 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22450 lua_error(L);
22455 static int _wrap_SBDebugger_GetDefaultArchitecture(lua_State* L) {
22463 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDefaultArchitecture",1,"char *");
22464 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetDefaultArchitecture",2,"size_t");
22465 arg1 = (char *)lua_tostring(L, 1);
22466 arg2 = (size_t)lua_tointeger(L, 2);
22468 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22473 lua_error(L);
22478 static int _wrap_SBDebugger_SetDefaultArchitecture(lua_State* L) {
22485 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetDefaultArchitecture",1,"char const *");
22486 arg1 = (char *)lua_tostring(L, 1);
22488 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22493 lua_error(L);
22498 static int _wrap_SBDebugger_GetScriptingLanguage(lua_State* L) {
22506 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetScriptingLanguage",1,"lldb::SBDebugger *");
22507 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetScriptingLanguage",2,"char const *");
22509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22513 arg2 = (char *)lua_tostring(L, 2);
22515 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
22520 lua_error(L);
22525 static int _wrap_SBDebugger_GetScriptInterpreterInfo(lua_State* L) {
22533 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetScriptInterpreterInfo",1,"lldb::SBDebugger *");
22534 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetScriptInterpreterInfo",2,"lldb::ScriptLanguage");
22536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22540 arg2 = (lldb::ScriptLanguage)lua_tointeger(L, 2);
22544 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
22550 lua_error(L);
22555 static int _wrap_SBDebugger_GetVersionString(lua_State* L) {
22562 lua_pushstring(L,(const char *)result); SWIG_arg++;
22567 lua_error(L);
22572 static int _wrap_SBDebugger_StateAsCString(lua_State* L) {
22579 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::StateAsCString",1,"lldb::StateType");
22580 arg1 = (lldb::StateType)lua_tointeger(L, 1);
22582 lua_pushstring(L,(const char *)result); SWIG_arg++;
22587 lua_error(L);
22592 static int _wrap_SBDebugger_GetBuildConfiguration(lua_State* L) {
22601 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
22607 lua_error(L);
22612 static int _wrap_SBDebugger_StateIsRunningState(lua_State* L) {
22619 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::StateIsRunningState",1,"lldb::StateType");
22620 arg1 = (lldb::StateType)lua_tointeger(L, 1);
22622 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22627 lua_error(L);
22632 static int _wrap_SBDebugger_StateIsStoppedState(lua_State* L) {
22639 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::StateIsStoppedState",1,"lldb::StateType");
22640 arg1 = (lldb::StateType)lua_tointeger(L, 1);
22642 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22647 lua_error(L);
22652 static int _wrap_SBDebugger_EnableLog(lua_State* L) {
22661 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::EnableLog",1,"lldb::SBDebugger *");
22662 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::EnableLog",2,"char const *");
22664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22668 arg2 = (char *)lua_tostring(L, 2);
22670 if (lua_istable(L, 3)) {
22671 size_t size = lua_rawlen(L, 3);
22675 lua_rawgeti(L, 3, i);
22676 if (!lua_isstring(L, -1)) {
22678 lua_pop(L, 1);
22679 return luaL_error(L, "List should only contain strings");
22681 arg3[j++] = (char *)lua_tostring(L, -1);
22682 lua_pop(L, 1);
22685 } else if (lua_isnil(L, 3)) {
22689 return luaL_error(L, "A list of strings expected");
22693 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22704 lua_error(L);
22709 static int _wrap_SBDebugger_SetLoggingCallback(lua_State* L) {
22717 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetLoggingCallback",1,"lldb::SBDebugger *");
22719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22725 arg3 = (void *)L;
22727 luaL_checktype(L, 2, LUA_TFUNCTION);
22728 lua_settop(L, 2);
22730 lua_pushlightuserdata(L, (void *)&LLDBSwigLuaCallLuaLogOutputCallback);
22731 lua_insert(L, 2);
22732 lua_settable(L, LUA_REGISTRYINDEX);
22740 lua_error(L);
22745 static int _wrap_SBDebugger_SetDestroyCallback(lua_State* L) {
22753 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetDestroyCallback",1,"lldb::SBDebugger *");
22754 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetDestroyCallback",2,"lldb::SBDebuggerDestroyCallback");
22755 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBDebugger::SetDestroyCallback",3,"void *");
22757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22762 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_unsigned_long_long_p_void__void,0))){
22766 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBDebugger_SetDestroyCallback");
22773 lua_error(L);
22778 static int _wrap_SBDebugger_AddDestroyCallback(lua_State* L) {
22787 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::AddDestroyCallback",1,"lldb::SBDebugger *");
22788 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBDebugger::AddDestroyCallback",2,"lldb::SBDebuggerDestroyCallback");
22789 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBDebugger::AddDestroyCallback",3,"void *");
22791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22796 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_unsigned_long_long_p_void__void,0))){
22800 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBDebugger_AddDestroyCallback");
22802 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
22807 lua_error(L);
22812 static int _wrap_SBDebugger_RemoveDestroyCallback(lua_State* L) {
22820 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RemoveDestroyCallback",1,"lldb::SBDebugger *");
22821 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::RemoveDestroyCallback",2,"lldb::callback_token_t");
22823 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22827 arg2 = (lldb::callback_token_t)lua_tointeger(L, 2);
22829 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
22834 lua_error(L);
22839 static int _wrap_SBDebugger_DispatchInput(lua_State* L) {
22847 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DispatchInput",1,"lldb::SBDebugger *");
22849 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22854 arg2 = (void *)luaL_checklstring(L, 2, &arg3);
22862 lua_error(L);
22867 static int _wrap_SBDebugger_DispatchInputInterrupt(lua_State* L) {
22873 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DispatchInputInterrupt",1,"lldb::SBDebugger *");
22875 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22885 lua_error(L);
22890 static int _wrap_SBDebugger_DispatchInputEndOfFile(lua_State* L) {
22896 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DispatchInputEndOfFile",1,"lldb::SBDebugger *");
22898 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22908 lua_error(L);
22913 static int _wrap_SBDebugger_GetInstanceName(lua_State* L) {
22920 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInstanceName",1,"lldb::SBDebugger *");
22922 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
22927 lua_pushstring(L,(const char *)result); SWIG_arg++;
22932 lua_error(L);
22937 static int _wrap_SBDebugger_FindDebuggerWithID(lua_State* L) {
22944 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::FindDebuggerWithID",1,"int");
22945 arg1 = (int)lua_tointeger(L, 1);
22949 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
22955 lua_error(L);
22960 static int _wrap_SBDebugger_SetInternalVariable(lua_State* L) {
22969 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInternalVariable",1,"char const *");
22970 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetInternalVariable",2,"char const *");
22971 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::SetInternalVariable",3,"char const *");
22972 arg1 = (char *)lua_tostring(L, 1);
22973 arg2 = (char *)lua_tostring(L, 2);
22974 arg3 = (char *)lua_tostring(L, 3);
22978 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
22984 lua_error(L);
22989 static int _wrap_SBDebugger_GetInternalVariableValue(lua_State* L) {
22997 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInternalVariableValue",1,"char const *");
22998 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetInternalVariableValue",2,"char const *");
22999 arg1 = (char *)lua_tostring(L, 1);
23000 arg2 = (char *)lua_tostring(L, 2);
23004 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++;
23010 lua_error(L);
23015 static int _wrap_SBDebugger_GetDescription(lua_State* L) {
23023 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDescription",1,"lldb::SBDebugger *");
23024 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetDescription",2,"lldb::SBStream &");
23026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23031 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
23036 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
23041 lua_error(L);
23046 static int _wrap_SBDebugger_GetTerminalWidth(lua_State* L) {
23053 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetTerminalWidth",1,"lldb::SBDebugger const *");
23055 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23060 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
23065 lua_error(L);
23070 static int _wrap_SBDebugger_SetTerminalWidth(lua_State* L) {
23077 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetTerminalWidth",1,"lldb::SBDebugger *");
23078 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetTerminalWidth",2,"uint32_t");
23080 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23084 arg2 = (uint32_t)lua_tointeger(L, 2);
23091 lua_error(L);
23096 static int _wrap_SBDebugger_GetID(lua_State* L) {
23103 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetID",1,"lldb::SBDebugger *");
23105 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23110 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
23115 lua_error(L);
23120 static int _wrap_SBDebugger_GetPrompt(lua_State* L) {
23127 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetPrompt",1,"lldb::SBDebugger const *");
23129 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23134 lua_pushstring(L,(const char *)result); SWIG_arg++;
23139 lua_error(L);
23144 static int _wrap_SBDebugger_SetPrompt(lua_State* L) {
23151 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetPrompt",1,"lldb::SBDebugger *");
23152 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetPrompt",2,"char const *");
23154 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23158 arg2 = (char *)lua_tostring(L, 2);
23165 lua_error(L);
23170 static int _wrap_SBDebugger_GetReproducerPath(lua_State* L) {
23177 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetReproducerPath",1,"lldb::SBDebugger const *");
23179 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23184 lua_pushstring(L,(const char *)result); SWIG_arg++;
23189 lua_error(L);
23194 static int _wrap_SBDebugger_GetScriptLanguage(lua_State* L) {
23201 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetScriptLanguage",1,"lldb::SBDebugger const *");
23203 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23208 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
23213 lua_error(L);
23218 static int _wrap_SBDebugger_SetScriptLanguage(lua_State* L) {
23225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetScriptLanguage",1,"lldb::SBDebugger *");
23226 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetScriptLanguage",2,"lldb::ScriptLanguage");
23228 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23232 arg2 = (lldb::ScriptLanguage)lua_tointeger(L, 2);
23239 lua_error(L);
23244 static int _wrap_SBDebugger_GetREPLLanguage(lua_State* L) {
23251 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetREPLLanguage",1,"lldb::SBDebugger const *");
23253 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23258 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
23263 lua_error(L);
23268 static int _wrap_SBDebugger_SetREPLLanguage(lua_State* L) {
23275 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetREPLLanguage",1,"lldb::SBDebugger *");
23276 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetREPLLanguage",2,"lldb::LanguageType");
23278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23282 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
23289 lua_error(L);
23294 static int _wrap_SBDebugger_GetCloseInputOnEOF(lua_State* L) {
23301 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCloseInputOnEOF",1,"lldb::SBDebugger const *");
23303 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23308 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
23313 lua_error(L);
23318 static int _wrap_SBDebugger_SetCloseInputOnEOF(lua_State* L) {
23325 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetCloseInputOnEOF",1,"lldb::SBDebugger *");
23326 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetCloseInputOnEOF",2,"bool");
23328 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23332 arg2 = (lua_toboolean(L, 2)!=0);
23339 lua_error(L);
23344 static int _wrap_SBDebugger_GetCategory__SWIG_0(lua_State* L) {
23352 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",1,"lldb::SBDebugger *");
23353 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",2,"char const *");
23355 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23359 arg2 = (char *)lua_tostring(L, 2);
23363 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
23369 lua_error(L);
23374 static int _wrap_SBDebugger_GetCategory__SWIG_1(lua_State* L) {
23382 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",1,"lldb::SBDebugger *");
23383 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",2,"lldb::LanguageType");
23385 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23389 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
23393 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
23399 lua_error(L);
23404 static int _wrap_SBDebugger_GetCategory(lua_State* L) {
23410 argc = lua_gettop(L);
23415 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
23423 _v = lua_isnumber(L,argv[1]);
23426 return _wrap_SBDebugger_GetCategory__SWIG_1(L);
23434 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, 0)) {
23442 _v = SWIG_lua_isnilstring(L,argv[1]);
23445 return _wrap_SBDebugger_GetCategory__SWIG_0(L);
23450 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_GetCategory'\n"
23454 lua_error(L);return 0;
23458 static int _wrap_SBDebugger_CreateCategory(lua_State* L) {
23466 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateCategory",1,"lldb::SBDebugger *");
23467 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateCategory",2,"char const *");
23469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23473 arg2 = (char *)lua_tostring(L, 2);
23477 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
23483 lua_error(L);
23488 static int _wrap_SBDebugger_DeleteCategory(lua_State* L) {
23496 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DeleteCategory",1,"lldb::SBDebugger *");
23497 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::DeleteCategory",2,"char const *");
23499 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23503 arg2 = (char *)lua_tostring(L, 2);
23505 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
23510 lua_error(L);
23515 static int _wrap_SBDebugger_GetNumCategories(lua_State* L) {
23522 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumCategories",1,"lldb::SBDebugger *");
23524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23529 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
23534 lua_error(L);
23539 static int _wrap_SBDebugger_GetCategoryAtIndex(lua_State* L) {
23547 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCategoryAtIndex",1,"lldb::SBDebugger *");
23548 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetCategoryAtIndex",2,"uint32_t");
23550 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23554 arg2 = (uint32_t)lua_tointeger(L, 2);
23558 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
23564 lua_error(L);
23569 static int _wrap_SBDebugger_GetDefaultCategory(lua_State* L) {
23576 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDefaultCategory",1,"lldb::SBDebugger *");
23578 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23585 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
23591 lua_error(L);
23596 static int _wrap_SBDebugger_GetFormatForType(lua_State* L) {
23605 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetFormatForType",1,"lldb::SBDebugger *");
23606 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetFormatForType",2,"lldb::SBTypeNameSpecifier");
23608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23613 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
23621 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
23627 lua_error(L);
23632 static int _wrap_SBDebugger_GetSummaryForType(lua_State* L) {
23641 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSummaryForType",1,"lldb::SBDebugger *");
23642 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetSummaryForType",2,"lldb::SBTypeNameSpecifier");
23644 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
23657 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
23663 lua_error(L);
23668 static int _wrap_SBDebugger_GetFilterForType(lua_State* L) {
23677 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetFilterForType",1,"lldb::SBDebugger *");
23678 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetFilterForType",2,"lldb::SBTypeNameSpecifier");
23680 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
23693 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
23699 lua_error(L);
23704 static int _wrap_SBDebugger_GetSyntheticForType(lua_State* L) {
23713 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSyntheticForType",1,"lldb::SBDebugger *");
23714 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetSyntheticForType",2,"lldb::SBTypeNameSpecifier");
23716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23721 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
23729 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
23735 lua_error(L);
23740 static int _wrap_SBDebugger_RunCommandInterpreter(lua_State* L) {
23755 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",1,"lldb::SBDebugger *");
23756 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",2,"bool");
23757 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",3,"bool");
23758 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",4,"lldb::SBCommandInterpreterRunOptions &");
23759 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",5,"int &");
23760 if(!lua_isboolean(L,6)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",6,"bool &");
23761 if(!lua_isboolean(L,7)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",7,"bool &");
23763 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23767 arg2 = (lua_toboolean(L, 2)!=0);
23768 arg3 = (lua_toboolean(L, 3)!=0);
23770 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0))){
23774 temp5 = (int)lua_tointeger(L,5);
23776 temp6 = (lua_toboolean(L,6)!=0);
23778 temp7 = (lua_toboolean(L,7)!=0);
23782 lua_pushinteger(L, (lua_Integer) *arg5); SWIG_arg++;
23783 lua_pushboolean(L, (int)((*arg6)!=0)); SWIG_arg++;
23784 lua_pushboolean(L, (int)((*arg7)!=0)); SWIG_arg++;
23789 lua_error(L);
23794 static int _wrap_SBDebugger_RunREPL(lua_State* L) {
23803 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RunREPL",1,"lldb::SBDebugger *");
23804 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::RunREPL",2,"lldb::LanguageType");
23805 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::RunREPL",3,"char const *");
23807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23811 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
23812 arg3 = (char *)lua_tostring(L, 3);
23816 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
23822 lua_error(L);
23827 static int _wrap_SBDebugger_LoadTraceFromFile(lua_State* L) {
23836 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::LoadTraceFromFile",1,"lldb::SBDebugger *");
23837 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::LoadTraceFromFile",2,"lldb::SBError &");
23838 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBDebugger::LoadTraceFromFile",3,"lldb::SBFileSpec const &");
23840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
23850 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
23857 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++;
23863 lua_error(L);
23868 static int _wrap_SBDebugger___tostring(lua_State* L) {
23875 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::__repr__",1,"lldb::SBDebugger *");
23877 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23882 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
23887 lua_error(L);
23892 static int _wrap_SBDebugger_GetInputFileHandle(lua_State* L) {
23899 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInputFileHandle",1,"lldb::SBDebugger *");
23901 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23909 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream));
23912 luaL_setmetatable(L, LUA_FILEHANDLE);
23920 lua_error(L);
23925 static int _wrap_SBDebugger_GetOutputFileHandle(lua_State* L) {
23932 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetOutputFileHandle",1,"lldb::SBDebugger *");
23934 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23942 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream));
23945 luaL_setmetatable(L, LUA_FILEHANDLE);
23953 lua_error(L);
23958 static int _wrap_SBDebugger_GetErrorFileHandle(lua_State* L) {
23965 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetErrorFileHandle",1,"lldb::SBDebugger *");
23967 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
23975 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream));
23978 luaL_setmetatable(L, LUA_FILEHANDLE);
23986 lua_error(L);
23995 static int _proxy__wrap_new_SBDebugger(lua_State *L) {
23996 assert(lua_istable(L,1));
23997 lua_pushcfunction(L,_wrap_new_SBDebugger);
23998 assert(!lua_isnil(L,-1));
23999 lua_replace(L,1); /* replace our table with real constructor */
24000 lua_call(L,lua_gettop(L)-1,1);
24158 static int _wrap_new_SBDeclaration__SWIG_0(lua_State* L) {
24165 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDeclaration,1); SWIG_arg++;
24170 lua_error(L);
24175 static int _wrap_new_SBDeclaration__SWIG_1(lua_State* L) {
24182 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SBDeclaration",1,"lldb::SBDeclaration const &");
24184 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24189 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDeclaration,1); SWIG_arg++;
24194 lua_error(L);
24199 static int _wrap_new_SBDeclaration(lua_State* L) {
24205 argc = lua_gettop(L);
24207 return _wrap_new_SBDeclaration__SWIG_0(L);
24213 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDeclaration, SWIG_POINTER_NO_NULL)) {
24220 return _wrap_new_SBDeclaration__SWIG_1(L);
24224 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBDeclaration'\n"
24228 lua_error(L);return 0;
24232 static int _wrap_SBDeclaration_IsValid(lua_State* L) {
24239 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::IsValid",1,"lldb::SBDeclaration const *");
24241 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24246 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
24251 lua_error(L);
24256 static int _wrap_SBDeclaration_GetFileSpec(lua_State* L) {
24263 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetFileSpec",1,"lldb::SBDeclaration const *");
24265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24272 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
24278 lua_error(L);
24283 static int _wrap_SBDeclaration_GetLine(lua_State* L) {
24290 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetLine",1,"lldb::SBDeclaration const *");
24292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24297 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
24302 lua_error(L);
24307 static int _wrap_SBDeclaration_GetColumn(lua_State* L) {
24314 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetColumn",1,"lldb::SBDeclaration const *");
24316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24321 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
24326 lua_error(L);
24331 static int _wrap_SBDeclaration_SetFileSpec(lua_State* L) {
24339 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SetFileSpec",1,"lldb::SBDeclaration *");
24340 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDeclaration::SetFileSpec",2,"lldb::SBFileSpec");
24342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){
24358 lua_error(L);
24363 static int _wrap_SBDeclaration_SetLine(lua_State* L) {
24370 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SetLine",1,"lldb::SBDeclaration *");
24371 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDeclaration::SetLine",2,"uint32_t");
24373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24377 arg2 = (uint32_t)lua_tointeger(L, 2);
24384 lua_error(L);
24389 static int _wrap_SBDeclaration_SetColumn(lua_State* L) {
24396 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SetColumn",1,"lldb::SBDeclaration *");
24397 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDeclaration::SetColumn",2,"uint32_t");
24399 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24403 arg2 = (uint32_t)lua_tointeger(L, 2);
24410 lua_error(L);
24415 static int _wrap_SBDeclaration___eq(lua_State* L) {
24423 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::operator ==",1,"lldb::SBDeclaration const *");
24424 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDeclaration::operator ==",2,"lldb::SBDeclaration const &");
24426 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24431 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDeclaration,0))){
24436 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
24441 lua_error(L);
24446 static int _wrap_SBDeclaration_GetDescription(lua_State* L) {
24454 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetDescription",1,"lldb::SBDeclaration *");
24455 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDeclaration::GetDescription",2,"lldb::SBStream &");
24457 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
24467 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
24472 lua_error(L);
24477 static int _wrap_SBDeclaration___tostring(lua_State* L) {
24484 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::__repr__",1,"lldb::SBDeclaration *");
24486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){
24491 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
24496 lua_error(L);
24505 static int _proxy__wrap_new_SBDeclaration(lua_State *L) {
24506 assert(lua_istable(L,1));
24507 lua_pushcfunction(L,_wrap_new_SBDeclaration);
24508 assert(!lua_isnil(L,-1));
24509 lua_replace(L,1); /* replace our table with real constructor */
24510 lua_call(L,lua_gettop(L)-1,1);
24560 static int _wrap_new_SBError__SWIG_0(lua_State* L) {
24567 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
24572 lua_error(L);
24577 static int _wrap_new_SBError__SWIG_1(lua_State* L) {
24584 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBError::SBError",1,"lldb::SBError const &");
24586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24591 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
24596 lua_error(L);
24601 static int _wrap_new_SBError__SWIG_2(lua_State* L) {
24608 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBError::SBError",1,"char const *");
24609 arg1 = (char *)lua_tostring(L, 1);
24611 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
24616 lua_error(L);
24621 static int _wrap_new_SBError(lua_State* L) {
24627 argc = lua_gettop(L);
24629 return _wrap_new_SBError__SWIG_0(L);
24635 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
24642 return _wrap_new_SBError__SWIG_1(L);
24648 _v = SWIG_lua_isnilstring(L,argv[0]);
24651 return _wrap_new_SBError__SWIG_2(L);
24655 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBError'\n"
24660 lua_error(L);return 0;
24664 static int _wrap_SBError_GetCString(lua_State* L) {
24671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetCString",1,"lldb::SBError const *");
24673 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24678 lua_pushstring(L,(const char *)result); SWIG_arg++;
24683 lua_error(L);
24688 static int _wrap_SBError_Clear(lua_State* L) {
24694 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::Clear",1,"lldb::SBError *");
24696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24706 lua_error(L);
24711 static int _wrap_SBError_Fail(lua_State* L) {
24718 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::Fail",1,"lldb::SBError const *");
24720 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24725 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
24730 lua_error(L);
24735 static int _wrap_SBError_Success(lua_State* L) {
24742 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::Success",1,"lldb::SBError const *");
24744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24749 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
24754 lua_error(L);
24759 static int _wrap_SBError_GetError(lua_State* L) {
24766 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetError",1,"lldb::SBError const *");
24768 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24773 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
24778 lua_error(L);
24783 static int _wrap_SBError_GetType(lua_State* L) {
24790 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetType",1,"lldb::SBError const *");
24792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24797 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
24802 lua_error(L);
24807 static int _wrap_SBError_SetError(lua_State* L) {
24815 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetError",1,"lldb::SBError *");
24816 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBError::SetError",2,"uint32_t");
24817 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBError::SetError",3,"lldb::ErrorType");
24819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24823 arg2 = (uint32_t)lua_tointeger(L, 2);
24824 arg3 = (lldb::ErrorType)lua_tointeger(L, 3);
24831 lua_error(L);
24836 static int _wrap_SBError_SetErrorToErrno(lua_State* L) {
24842 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorToErrno",1,"lldb::SBError *");
24844 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24854 lua_error(L);
24859 static int _wrap_SBError_SetErrorToGenericError(lua_State* L) {
24865 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorToGenericError",1,"lldb::SBError *");
24867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24877 lua_error(L);
24882 static int _wrap_SBError_SetErrorString(lua_State* L) {
24889 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorString",1,"lldb::SBError *");
24890 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorString",2,"char const *");
24892 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24896 arg2 = (char *)lua_tostring(L, 2);
24903 lua_error(L);
24908 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_0(lua_State* L) {
24919 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError *");
24920 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char const *");
24921 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",3,"char *");
24922 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",4,"char *");
24923 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",5,"char *");
24925 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24929 arg2 = (char *)lua_tostring(L, 2);
24930 arg3 = (char *)lua_tostring(L, 3);
24931 arg4 = (char *)lua_tostring(L, 4);
24932 arg5 = (char *)lua_tostring(L, 5);
24934 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
24939 lua_error(L);
24944 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_1(lua_State* L) {
24954 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError *");
24955 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char const *");
24956 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",3,"char *");
24957 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",4,"char *");
24959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24963 arg2 = (char *)lua_tostring(L, 2);
24964 arg3 = (char *)lua_tostring(L, 3);
24965 arg4 = (char *)lua_tostring(L, 4);
24967 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
24972 lua_error(L);
24977 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_2(lua_State* L) {
24986 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError *");
24987 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char const *");
24988 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",3,"char *");
24990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
24994 arg2 = (char *)lua_tostring(L, 2);
24995 arg3 = (char *)lua_tostring(L, 3);
24997 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
25002 lua_error(L);
25007 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_3(lua_State* L) {
25015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError *");
25016 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char const *");
25018 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
25022 arg2 = (char *)lua_tostring(L, 2);
25024 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
25029 lua_error(L);
25034 static int _wrap_SBError_SetErrorStringWithFormat(lua_State* L) {
25040 argc = lua_gettop(L);
25045 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBError, 0)) {
25053 _v = SWIG_lua_isnilstring(L,argv[1]);
25056 return _wrap_SBError_SetErrorStringWithFormat__SWIG_3(L);
25064 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBError, 0)) {
25072 _v = SWIG_lua_isnilstring(L,argv[1]);
25076 _v = SWIG_lua_isnilstring(L,argv[2]);
25079 return _wrap_SBError_SetErrorStringWithFormat__SWIG_2(L);
25088 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBError, 0)) {
25096 _v = SWIG_lua_isnilstring(L,argv[1]);
25100 _v = SWIG_lua_isnilstring(L,argv[2]);
25104 _v = SWIG_lua_isnilstring(L,argv[3]);
25107 return _wrap_SBError_SetErrorStringWithFormat__SWIG_1(L);
25117 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBError, 0)) {
25125 _v = SWIG_lua_isnilstring(L,argv[1]);
25129 _v = SWIG_lua_isnilstring(L,argv[2]);
25133 _v = SWIG_lua_isnilstring(L,argv[3]);
25137 _v = SWIG_lua_isnilstring(L,argv[4]);
25140 return _wrap_SBError_SetErrorStringWithFormat__SWIG_0(L);
25148 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBError_SetErrorStringWithFormat'\n"
25154 lua_error(L);return 0;
25158 static int _wrap_SBError_IsValid(lua_State* L) {
25165 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::IsValid",1,"lldb::SBError const *");
25167 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
25172 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
25177 lua_error(L);
25182 static int _wrap_SBError_GetDescription(lua_State* L) {
25190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetDescription",1,"lldb::SBError *");
25191 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBError::GetDescription",2,"lldb::SBStream &");
25193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
25198 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
25203 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
25208 lua_error(L);
25213 static int _wrap_SBError___tostring(lua_State* L) {
25220 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::__repr__",1,"lldb::SBError *");
25222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
25227 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
25232 lua_error(L);
25241 static int _proxy__wrap_new_SBError(lua_State *L) {
25242 assert(lua_istable(L,1));
25243 lua_pushcfunction(L,_wrap_new_SBError);
25244 assert(!lua_isnil(L,-1));
25245 lua_replace(L,1); /* replace our table with real constructor */
25246 lua_call(L,lua_gettop(L)-1,1);
25299 static int _wrap_new_SBEnvironment__SWIG_0(lua_State* L) {
25306 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++;
25311 lua_error(L);
25316 static int _wrap_new_SBEnvironment__SWIG_1(lua_State* L) {
25323 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBEnvironment::SBEnvironment",1,"lldb::SBEnvironment const &");
25325 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25330 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++;
25335 lua_error(L);
25340 static int _wrap_new_SBEnvironment(lua_State* L) {
25346 argc = lua_gettop(L);
25348 return _wrap_new_SBEnvironment__SWIG_0(L);
25354 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBEnvironment, SWIG_POINTER_NO_NULL)) {
25361 return _wrap_new_SBEnvironment__SWIG_1(L);
25365 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBEnvironment'\n"
25369 lua_error(L);return 0;
25373 static int _wrap_SBEnvironment_Get(lua_State* L) {
25381 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Get",1,"lldb::SBEnvironment *");
25382 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::Get",2,"char const *");
25384 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25388 arg2 = (char *)lua_tostring(L, 2);
25390 lua_pushstring(L,(const char *)result); SWIG_arg++;
25395 lua_error(L);
25400 static int _wrap_SBEnvironment_GetNumValues(lua_State* L) {
25407 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetNumValues",1,"lldb::SBEnvironment *");
25409 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25414 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
25419 lua_error(L);
25424 static int _wrap_SBEnvironment_GetNameAtIndex(lua_State* L) {
25432 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetNameAtIndex",1,"lldb::SBEnvironment *");
25433 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBEnvironment::GetNameAtIndex",2,"size_t");
25435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25439 arg2 = (size_t)lua_tointeger(L, 2);
25441 lua_pushstring(L,(const char *)result); SWIG_arg++;
25446 lua_error(L);
25451 static int _wrap_SBEnvironment_GetValueAtIndex(lua_State* L) {
25459 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetValueAtIndex",1,"lldb::SBEnvironment *");
25460 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBEnvironment::GetValueAtIndex",2,"size_t");
25462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25466 arg2 = (size_t)lua_tointeger(L, 2);
25468 lua_pushstring(L,(const char *)result); SWIG_arg++;
25473 lua_error(L);
25478 static int _wrap_SBEnvironment_GetEntries(lua_State* L) {
25485 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetEntries",1,"lldb::SBEnvironment *");
25487 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25494 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++;
25500 lua_error(L);
25505 static int _wrap_SBEnvironment_PutEntry(lua_State* L) {
25512 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::PutEntry",1,"lldb::SBEnvironment *");
25513 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::PutEntry",2,"char const *");
25515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25519 arg2 = (char *)lua_tostring(L, 2);
25526 lua_error(L);
25531 static int _wrap_SBEnvironment_SetEntries(lua_State* L) {
25539 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::SetEntries",1,"lldb::SBEnvironment *");
25540 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEnvironment::SetEntries",2,"lldb::SBStringList const &");
25541 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBEnvironment::SetEntries",3,"bool");
25543 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
25552 arg3 = (lua_toboolean(L, 3)!=0);
25559 lua_error(L);
25564 static int _wrap_SBEnvironment_Set(lua_State* L) {
25574 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Set",1,"lldb::SBEnvironment *");
25575 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::Set",2,"char const *");
25576 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBEnvironment::Set",3,"char const *");
25577 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBEnvironment::Set",4,"bool");
25579 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25583 arg2 = (char *)lua_tostring(L, 2);
25584 arg3 = (char *)lua_tostring(L, 3);
25585 arg4 = (lua_toboolean(L, 4)!=0);
25587 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
25592 lua_error(L);
25597 static int _wrap_SBEnvironment_Unset(lua_State* L) {
25605 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Unset",1,"lldb::SBEnvironment *");
25606 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::Unset",2,"char const *");
25608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25612 arg2 = (char *)lua_tostring(L, 2);
25614 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
25619 lua_error(L);
25624 static int _wrap_SBEnvironment_Clear(lua_State* L) {
25630 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Clear",1,"lldb::SBEnvironment *");
25632 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){
25642 lua_error(L);
25651 static int _proxy__wrap_new_SBEnvironment(lua_State *L) {
25652 assert(lua_istable(L,1));
25653 lua_pushcfunction(L,_wrap_new_SBEnvironment);
25654 assert(!lua_isnil(L,-1));
25655 lua_replace(L,1); /* replace our table with real constructor */
25656 lua_call(L,lua_gettop(L)-1,1);
25704 static int _wrap_new_SBEvent__SWIG_0(lua_State* L) {
25711 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++;
25716 lua_error(L);
25721 static int _wrap_new_SBEvent__SWIG_1(lua_State* L) {
25728 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBEvent::SBEvent",1,"lldb::SBEvent const &");
25730 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25735 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++;
25740 lua_error(L);
25745 static int _wrap_new_SBEvent__SWIG_2(lua_State* L) {
25754 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBEvent::SBEvent",1,"uint32_t");
25755 arg1 = (uint32_t)lua_tointeger(L, 1);
25757 arg2 = (char *)luaL_checklstring(L, 2, (size_t *)&arg3);
25760 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++;
25765 lua_error(L);
25770 static int _wrap_new_SBEvent(lua_State* L) {
25776 argc = lua_gettop(L);
25778 return _wrap_new_SBEvent__SWIG_0(L);
25784 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
25791 return _wrap_new_SBEvent__SWIG_1(L);
25797 _v = lua_isnumber(L,argv[0]);
25801 _v = SWIG_lua_isnilstring(L,argv[1]);
25805 return _wrap_new_SBEvent__SWIG_2(L);
25808 _v = lua_isnumber(L,argv[2]);
25811 return _wrap_new_SBEvent__SWIG_2(L);
25817 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBEvent'\n"
25822 lua_error(L);return 0;
25826 static int _wrap_SBEvent_IsValid(lua_State* L) {
25833 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::IsValid",1,"lldb::SBEvent const *");
25835 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25840 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
25845 lua_error(L);
25850 static int _wrap_SBEvent_GetDataFlavor(lua_State* L) {
25857 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetDataFlavor",1,"lldb::SBEvent *");
25859 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25864 lua_pushstring(L,(const char *)result); SWIG_arg++;
25869 lua_error(L);
25874 static int _wrap_SBEvent_GetType(lua_State* L) {
25881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetType",1,"lldb::SBEvent const *");
25883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25888 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
25893 lua_error(L);
25898 static int _wrap_SBEvent_GetBroadcaster(lua_State* L) {
25905 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetBroadcaster",1,"lldb::SBEvent const *");
25907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25914 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
25920 lua_error(L);
25925 static int _wrap_SBEvent_GetBroadcasterClass(lua_State* L) {
25932 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetBroadcasterClass",1,"lldb::SBEvent const *");
25934 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25939 lua_pushstring(L,(const char *)result); SWIG_arg++;
25944 lua_error(L);
25949 static int _wrap_SBEvent_BroadcasterMatchesRef(lua_State* L) {
25957 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::BroadcasterMatchesRef",1,"lldb::SBEvent *");
25958 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEvent::BroadcasterMatchesRef",2,"lldb::SBBroadcaster const &");
25960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
25970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
25975 lua_error(L);
25980 static int _wrap_SBEvent_Clear(lua_State* L) {
25986 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::Clear",1,"lldb::SBEvent *");
25988 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
25998 lua_error(L);
26003 static int _wrap_SBEvent_GetCStringFromEvent(lua_State* L) {
26010 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBEvent::GetCStringFromEvent",1,"lldb::SBEvent const &");
26012 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
26017 lua_pushstring(L,(const char *)result); SWIG_arg++;
26022 lua_error(L);
26027 static int _wrap_SBEvent_GetDescription__SWIG_0(lua_State* L) {
26035 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetDescription",1,"lldb::SBEvent *");
26036 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEvent::GetDescription",2,"lldb::SBStream &");
26038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
26043 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
26048 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
26053 lua_error(L);
26058 static int _wrap_SBEvent_GetDescription__SWIG_1(lua_State* L) {
26066 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetDescription",1,"lldb::SBEvent const *");
26067 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEvent::GetDescription",2,"lldb::SBStream &");
26069 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
26074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
26079 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
26084 lua_error(L);
26089 static int _wrap_SBEvent_GetDescription(lua_State* L) {
26095 argc = lua_gettop(L);
26100 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, 0)) {
26109 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
26116 return _wrap_SBEvent_GetDescription__SWIG_0(L);
26124 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, 0)) {
26133 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
26140 return _wrap_SBEvent_GetDescription__SWIG_1(L);
26145 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBEvent_GetDescription'\n"
26149 lua_error(L);return 0;
26157 static int _proxy__wrap_new_SBEvent(lua_State *L) {
26158 assert(lua_istable(L,1));
26159 lua_pushcfunction(L,_wrap_new_SBEvent);
26160 assert(!lua_isnil(L,-1));
26161 lua_replace(L,1); /* replace our table with real constructor */
26162 lua_call(L,lua_gettop(L)-1,1);
26209 static int _wrap_new_SBExecutionContext__SWIG_0(lua_State* L) {
26216 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++;
26221 lua_error(L);
26226 static int _wrap_new_SBExecutionContext__SWIG_1(lua_State* L) {
26233 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBExecutionContext const &");
26235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){
26240 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++;
26245 lua_error(L);
26250 static int _wrap_new_SBExecutionContext__SWIG_2(lua_State* L) {
26257 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBTarget const &");
26259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
26264 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++;
26269 lua_error(L);
26274 static int _wrap_new_SBExecutionContext__SWIG_3(lua_State* L) {
26281 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBProcess const &");
26283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
26288 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++;
26293 lua_error(L);
26298 static int _wrap_new_SBExecutionContext__SWIG_4(lua_State* L) {
26306 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBThread");
26308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBThread,0))){
26314 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++;
26319 lua_error(L);
26324 static int _wrap_new_SBExecutionContext__SWIG_5(lua_State* L) {
26331 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBFrame const &");
26333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
26338 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++;
26343 lua_error(L);
26348 static int _wrap_new_SBExecutionContext(lua_State* L) {
26354 argc = lua_gettop(L);
26356 return _wrap_new_SBExecutionContext__SWIG_0(L);
26362 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExecutionContext, SWIG_POINTER_NO_NULL)) {
26369 return _wrap_new_SBExecutionContext__SWIG_1(L);
26376 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
26383 return _wrap_new_SBExecutionContext__SWIG_2(L);
26390 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, SWIG_POINTER_NO_NULL)) {
26397 return _wrap_new_SBExecutionContext__SWIG_3(L);
26404 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, SWIG_POINTER_NO_NULL)) {
26411 return _wrap_new_SBExecutionContext__SWIG_4(L);
26418 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, SWIG_POINTER_NO_NULL)) {
26425 return _wrap_new_SBExecutionContext__SWIG_5(L);
26429 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBExecutionContext'\n"
26437 lua_error(L);return 0;
26441 static int _wrap_SBExecutionContext_GetTarget(lua_State* L) {
26448 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetTarget",1,"lldb::SBExecutionContext const *");
26450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){
26457 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
26463 lua_error(L);
26468 static int _wrap_SBExecutionContext_GetProcess(lua_State* L) {
26475 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetProcess",1,"lldb::SBExecutionContext const *");
26477 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){
26484 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
26490 lua_error(L);
26495 static int _wrap_SBExecutionContext_GetThread(lua_State* L) {
26502 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetThread",1,"lldb::SBExecutionContext const *");
26504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){
26511 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
26517 lua_error(L);
26522 static int _wrap_SBExecutionContext_GetFrame(lua_State* L) {
26529 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetFrame",1,"lldb::SBExecutionContext const *");
26531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){
26538 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
26544 lua_error(L);
26553 static int _proxy__wrap_new_SBExecutionContext(lua_State *L) {
26554 assert(lua_istable(L,1));
26555 lua_pushcfunction(L,_wrap_new_SBExecutionContext);
26556 assert(!lua_isnil(L,-1));
26557 lua_replace(L,1); /* replace our table with real constructor */
26558 lua_call(L,lua_gettop(L)-1,1);
26600 static int _wrap_new_SBExpressionOptions__SWIG_0(lua_State* L) {
26607 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExpressionOptions,1); SWIG_arg++;
26612 lua_error(L);
26617 static int _wrap_new_SBExpressionOptions__SWIG_1(lua_State* L) {
26624 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SBExpressionOptions",1,"lldb::SBExpressionOptions const &");
26626 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26631 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExpressionOptions,1); SWIG_arg++;
26636 lua_error(L);
26641 static int _wrap_new_SBExpressionOptions(lua_State* L) {
26647 argc = lua_gettop(L);
26649 return _wrap_new_SBExpressionOptions__SWIG_0(L);
26655 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, SWIG_POINTER_NO_NULL)) {
26662 return _wrap_new_SBExpressionOptions__SWIG_1(L);
26666 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBExpressionOptions'\n"
26670 lua_error(L);return 0;
26674 static int _wrap_SBExpressionOptions_GetCoerceResultToId(lua_State* L) {
26681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetCoerceResultToId",1,"lldb::SBExpressionOptions const *");
26683 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26688 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
26693 lua_error(L);
26698 static int _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0(lua_State* L) {
26705 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetCoerceResultToId",1,"lldb::SBExpressionOptions *");
26706 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetCoerceResultToId",2,"bool");
26708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26712 arg2 = (lua_toboolean(L, 2)!=0);
26719 lua_error(L);
26724 static int _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1(lua_State* L) {
26730 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetCoerceResultToId",1,"lldb::SBExpressionOptions *");
26732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26742 lua_error(L);
26747 static int _wrap_SBExpressionOptions_SetCoerceResultToId(lua_State* L) {
26753 argc = lua_gettop(L);
26758 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
26765 return _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1(L);
26772 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
26780 _v = lua_isboolean(L,argv[1]);
26783 return _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0(L);
26788 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetCoerceResultToId'\n"
26792 lua_error(L);return 0;
26796 static int _wrap_SBExpressionOptions_GetUnwindOnError(lua_State* L) {
26803 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetUnwindOnError",1,"lldb::SBExpressionOptions const *");
26805 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26810 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
26815 lua_error(L);
26820 static int _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0(lua_State* L) {
26827 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetUnwindOnError",1,"lldb::SBExpressionOptions *");
26828 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetUnwindOnError",2,"bool");
26830 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26834 arg2 = (lua_toboolean(L, 2)!=0);
26841 lua_error(L);
26846 static int _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1(lua_State* L) {
26852 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetUnwindOnError",1,"lldb::SBExpressionOptions *");
26854 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26864 lua_error(L);
26869 static int _wrap_SBExpressionOptions_SetUnwindOnError(lua_State* L) {
26875 argc = lua_gettop(L);
26880 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
26887 return _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1(L);
26894 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
26902 _v = lua_isboolean(L,argv[1]);
26905 return _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0(L);
26910 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetUnwindOnError'\n"
26914 lua_error(L);return 0;
26918 static int _wrap_SBExpressionOptions_GetIgnoreBreakpoints(lua_State* L) {
26925 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetIgnoreBreakpoints",1,"lldb::SBExpressionOptions const *");
26927 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26932 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
26937 lua_error(L);
26942 static int _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0(lua_State* L) {
26949 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetIgnoreBreakpoints",1,"lldb::SBExpressionOptions *");
26950 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetIgnoreBreakpoints",2,"bool");
26952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26956 arg2 = (lua_toboolean(L, 2)!=0);
26963 lua_error(L);
26968 static int _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1(lua_State* L) {
26974 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetIgnoreBreakpoints",1,"lldb::SBExpressionOptions *");
26976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
26986 lua_error(L);
26991 static int _wrap_SBExpressionOptions_SetIgnoreBreakpoints(lua_State* L) {
26997 argc = lua_gettop(L);
27002 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27009 return _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1(L);
27016 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27024 _v = lua_isboolean(L,argv[1]);
27027 return _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0(L);
27032 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetIgnoreBreakpoints'\n"
27036 lua_error(L);return 0;
27040 static int _wrap_SBExpressionOptions_GetFetchDynamicValue(lua_State* L) {
27047 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetFetchDynamicValue",1,"lldb::SBExpressionOptions const *");
27049 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27054 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
27059 lua_error(L);
27064 static int _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0(lua_State* L) {
27071 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetFetchDynamicValue",1,"lldb::SBExpressionOptions *");
27072 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetFetchDynamicValue",2,"lldb::DynamicValueType");
27074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27078 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2);
27085 lua_error(L);
27090 static int _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1(lua_State* L) {
27096 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetFetchDynamicValue",1,"lldb::SBExpressionOptions *");
27098 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27108 lua_error(L);
27113 static int _wrap_SBExpressionOptions_SetFetchDynamicValue(lua_State* L) {
27119 argc = lua_gettop(L);
27124 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27131 return _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1(L);
27138 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27146 _v = lua_isnumber(L,argv[1]);
27149 return _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0(L);
27154 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetFetchDynamicValue'\n"
27158 lua_error(L);return 0;
27162 static int _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds(lua_State* L) {
27169 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTimeoutInMicroSeconds",1,"lldb::SBExpressionOptions const *");
27171 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27176 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
27181 lua_error(L);
27186 static int _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0(lua_State* L) {
27193 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTimeoutInMicroSeconds",1,"lldb::SBExpressionOptions *");
27194 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTimeoutInMicroSeconds",2,"uint32_t");
27196 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27200 arg2 = (uint32_t)lua_tointeger(L, 2);
27207 lua_error(L);
27212 static int _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1(lua_State* L) {
27218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTimeoutInMicroSeconds",1,"lldb::SBExpressionOptions *");
27220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27230 lua_error(L);
27235 static int _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds(lua_State* L) {
27241 argc = lua_gettop(L);
27246 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27253 return _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1(L);
27260 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27268 _v = lua_isnumber(L,argv[1]);
27271 return _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0(L);
27276 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTimeoutInMicroSeconds'\n"
27280 lua_error(L);return 0;
27284 static int _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds(lua_State* L) {
27291 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetOneThreadTimeoutInMicroSeconds",1,"lldb::SBExpressionOptions const *");
27293 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27298 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
27303 lua_error(L);
27308 static int _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0(lua_State* L) {
27315 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetOneThreadTimeoutInMicroSeconds",1,"lldb::SBExpressionOptions *");
27316 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetOneThreadTimeoutInMicroSeconds",2,"uint32_t");
27318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27322 arg2 = (uint32_t)lua_tointeger(L, 2);
27329 lua_error(L);
27334 static int _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1(lua_State* L) {
27340 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetOneThreadTimeoutInMicroSeconds",1,"lldb::SBExpressionOptions *");
27342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27352 lua_error(L);
27357 static int _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds(lua_State* L) {
27363 argc = lua_gettop(L);
27368 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27375 return _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1(L);
27382 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27390 _v = lua_isnumber(L,argv[1]);
27393 return _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0(L);
27398 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds'\n"
27402 lua_error(L);return 0;
27406 static int _wrap_SBExpressionOptions_GetTryAllThreads(lua_State* L) {
27413 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTryAllThreads",1,"lldb::SBExpressionOptions const *");
27415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27420 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
27425 lua_error(L);
27430 static int _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0(lua_State* L) {
27437 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTryAllThreads",1,"lldb::SBExpressionOptions *");
27438 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTryAllThreads",2,"bool");
27440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27444 arg2 = (lua_toboolean(L, 2)!=0);
27451 lua_error(L);
27456 static int _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1(lua_State* L) {
27462 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTryAllThreads",1,"lldb::SBExpressionOptions *");
27464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27474 lua_error(L);
27479 static int _wrap_SBExpressionOptions_SetTryAllThreads(lua_State* L) {
27485 argc = lua_gettop(L);
27490 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27497 return _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1(L);
27504 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27512 _v = lua_isboolean(L,argv[1]);
27515 return _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0(L);
27520 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTryAllThreads'\n"
27524 lua_error(L);return 0;
27528 static int _wrap_SBExpressionOptions_GetStopOthers(lua_State* L) {
27535 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetStopOthers",1,"lldb::SBExpressionOptions const *");
27537 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27542 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
27547 lua_error(L);
27552 static int _wrap_SBExpressionOptions_SetStopOthers__SWIG_0(lua_State* L) {
27559 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetStopOthers",1,"lldb::SBExpressionOptions *");
27560 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetStopOthers",2,"bool");
27562 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27566 arg2 = (lua_toboolean(L, 2)!=0);
27573 lua_error(L);
27578 static int _wrap_SBExpressionOptions_SetStopOthers__SWIG_1(lua_State* L) {
27584 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetStopOthers",1,"lldb::SBExpressionOptions *");
27586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27596 lua_error(L);
27601 static int _wrap_SBExpressionOptions_SetStopOthers(lua_State* L) {
27607 argc = lua_gettop(L);
27612 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27619 return _wrap_SBExpressionOptions_SetStopOthers__SWIG_1(L);
27626 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27634 _v = lua_isboolean(L,argv[1]);
27637 return _wrap_SBExpressionOptions_SetStopOthers__SWIG_0(L);
27642 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetStopOthers'\n"
27646 lua_error(L);return 0;
27650 static int _wrap_SBExpressionOptions_GetTrapExceptions(lua_State* L) {
27657 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTrapExceptions",1,"lldb::SBExpressionOptions const *");
27659 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27664 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
27669 lua_error(L);
27674 static int _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0(lua_State* L) {
27681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTrapExceptions",1,"lldb::SBExpressionOptions *");
27682 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTrapExceptions",2,"bool");
27684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27688 arg2 = (lua_toboolean(L, 2)!=0);
27695 lua_error(L);
27700 static int _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1(lua_State* L) {
27706 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTrapExceptions",1,"lldb::SBExpressionOptions *");
27708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27718 lua_error(L);
27723 static int _wrap_SBExpressionOptions_SetTrapExceptions(lua_State* L) {
27729 argc = lua_gettop(L);
27734 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27741 return _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1(L);
27748 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27756 _v = lua_isboolean(L,argv[1]);
27759 return _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0(L);
27764 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTrapExceptions'\n"
27768 lua_error(L);return 0;
27772 static int _wrap_SBExpressionOptions_SetLanguage__SWIG_0(lua_State* L) {
27779 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",1,"lldb::SBExpressionOptions *");
27780 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",2,"lldb::LanguageType");
27782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27786 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
27793 lua_error(L);
27798 static int _wrap_SBExpressionOptions_SetLanguage__SWIG_1(lua_State* L) {
27806 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",1,"lldb::SBExpressionOptions *");
27807 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",2,"lldb::SBSourceLanguageName");
27808 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",3,"uint32_t");
27810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27814 arg2 = (lldb::SBSourceLanguageName)lua_tointeger(L, 2);
27815 arg3 = (uint32_t)lua_tointeger(L, 3);
27822 lua_error(L);
27827 static int _wrap_SBExpressionOptions_SetLanguage(lua_State* L) {
27833 argc = lua_gettop(L);
27838 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27846 _v = lua_isnumber(L,argv[1]);
27849 return _wrap_SBExpressionOptions_SetLanguage__SWIG_0(L);
27857 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27865 _v = lua_isnumber(L,argv[1]);
27869 _v = lua_isnumber(L,argv[2]);
27872 return _wrap_SBExpressionOptions_SetLanguage__SWIG_1(L);
27878 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetLanguage'\n"
27882 lua_error(L);return 0;
27886 static int _wrap_SBExpressionOptions_GetGenerateDebugInfo(lua_State* L) {
27893 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetGenerateDebugInfo",1,"lldb::SBExpressionOptions *");
27895 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27900 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
27905 lua_error(L);
27910 static int _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0(lua_State* L) {
27917 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetGenerateDebugInfo",1,"lldb::SBExpressionOptions *");
27918 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetGenerateDebugInfo",2,"bool");
27920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27924 arg2 = (lua_toboolean(L, 2)!=0);
27931 lua_error(L);
27936 static int _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1(lua_State* L) {
27942 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetGenerateDebugInfo",1,"lldb::SBExpressionOptions *");
27944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
27954 lua_error(L);
27959 static int _wrap_SBExpressionOptions_SetGenerateDebugInfo(lua_State* L) {
27965 argc = lua_gettop(L);
27970 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27977 return _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1(L);
27984 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
27992 _v = lua_isboolean(L,argv[1]);
27995 return _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0(L);
28000 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetGenerateDebugInfo'\n"
28004 lua_error(L);return 0;
28008 static int _wrap_SBExpressionOptions_GetSuppressPersistentResult(lua_State* L) {
28015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetSuppressPersistentResult",1,"lldb::SBExpressionOptions *");
28017 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28022 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
28027 lua_error(L);
28032 static int _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0(lua_State* L) {
28039 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetSuppressPersistentResult",1,"lldb::SBExpressionOptions *");
28040 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetSuppressPersistentResult",2,"bool");
28042 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28046 arg2 = (lua_toboolean(L, 2)!=0);
28053 lua_error(L);
28058 static int _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1(lua_State* L) {
28064 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetSuppressPersistentResult",1,"lldb::SBExpressionOptions *");
28066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28076 lua_error(L);
28081 static int _wrap_SBExpressionOptions_SetSuppressPersistentResult(lua_State* L) {
28087 argc = lua_gettop(L);
28092 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
28099 return _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1(L);
28106 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
28114 _v = lua_isboolean(L,argv[1]);
28117 return _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0(L);
28122 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetSuppressPersistentResult'\n"
28126 lua_error(L);return 0;
28130 static int _wrap_SBExpressionOptions_GetPrefix(lua_State* L) {
28137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetPrefix",1,"lldb::SBExpressionOptions const *");
28139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28144 lua_pushstring(L,(const char *)result); SWIG_arg++;
28149 lua_error(L);
28154 static int _wrap_SBExpressionOptions_SetPrefix(lua_State* L) {
28161 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetPrefix",1,"lldb::SBExpressionOptions *");
28162 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetPrefix",2,"char const *");
28164 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28168 arg2 = (char *)lua_tostring(L, 2);
28175 lua_error(L);
28180 static int _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0(lua_State* L) {
28187 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAutoApplyFixIts",1,"lldb::SBExpressionOptions *");
28188 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAutoApplyFixIts",2,"bool");
28190 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28194 arg2 = (lua_toboolean(L, 2)!=0);
28201 lua_error(L);
28206 static int _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1(lua_State* L) {
28212 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAutoApplyFixIts",1,"lldb::SBExpressionOptions *");
28214 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28224 lua_error(L);
28229 static int _wrap_SBExpressionOptions_SetAutoApplyFixIts(lua_State* L) {
28235 argc = lua_gettop(L);
28240 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
28247 return _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1(L);
28254 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
28262 _v = lua_isboolean(L,argv[1]);
28265 return _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0(L);
28270 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetAutoApplyFixIts'\n"
28274 lua_error(L);return 0;
28278 static int _wrap_SBExpressionOptions_GetAutoApplyFixIts(lua_State* L) {
28285 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetAutoApplyFixIts",1,"lldb::SBExpressionOptions *");
28287 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28292 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
28297 lua_error(L);
28302 static int _wrap_SBExpressionOptions_SetRetriesWithFixIts(lua_State* L) {
28309 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetRetriesWithFixIts",1,"lldb::SBExpressionOptions *");
28310 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetRetriesWithFixIts",2,"uint64_t");
28312 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28316 arg2 = (uint64_t)lua_tointeger(L, 2);
28323 lua_error(L);
28328 static int _wrap_SBExpressionOptions_GetRetriesWithFixIts(lua_State* L) {
28335 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetRetriesWithFixIts",1,"lldb::SBExpressionOptions *");
28337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28342 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
28347 lua_error(L);
28352 static int _wrap_SBExpressionOptions_GetTopLevel(lua_State* L) {
28359 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTopLevel",1,"lldb::SBExpressionOptions *");
28361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28366 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
28371 lua_error(L);
28376 static int _wrap_SBExpressionOptions_SetTopLevel__SWIG_0(lua_State* L) {
28383 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTopLevel",1,"lldb::SBExpressionOptions *");
28384 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTopLevel",2,"bool");
28386 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28390 arg2 = (lua_toboolean(L, 2)!=0);
28397 lua_error(L);
28402 static int _wrap_SBExpressionOptions_SetTopLevel__SWIG_1(lua_State* L) {
28408 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTopLevel",1,"lldb::SBExpressionOptions *");
28410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28420 lua_error(L);
28425 static int _wrap_SBExpressionOptions_SetTopLevel(lua_State* L) {
28431 argc = lua_gettop(L);
28436 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
28443 return _wrap_SBExpressionOptions_SetTopLevel__SWIG_1(L);
28450 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, 0)) {
28458 _v = lua_isboolean(L,argv[1]);
28461 return _wrap_SBExpressionOptions_SetTopLevel__SWIG_0(L);
28466 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTopLevel'\n"
28470 lua_error(L);return 0;
28474 static int _wrap_SBExpressionOptions_GetAllowJIT(lua_State* L) {
28481 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetAllowJIT",1,"lldb::SBExpressionOptions *");
28483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28488 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
28493 lua_error(L);
28498 static int _wrap_SBExpressionOptions_SetAllowJIT(lua_State* L) {
28505 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAllowJIT",1,"lldb::SBExpressionOptions *");
28506 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAllowJIT",2,"bool");
28508 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
28512 arg2 = (lua_toboolean(L, 2)!=0);
28519 lua_error(L);
28528 static int _proxy__wrap_new_SBExpressionOptions(lua_State *L) {
28529 assert(lua_istable(L,1));
28530 lua_pushcfunction(L,_wrap_new_SBExpressionOptions);
28531 assert(!lua_isnil(L,-1));
28532 lua_replace(L,1); /* replace our table with real constructor */
28533 lua_call(L,lua_gettop(L)-1,1);
28604 static int _wrap_new_SBFile__SWIG_0(lua_State* L) {
28611 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
28616 lua_error(L);
28621 static int _wrap_new_SBFile__SWIG_1(lua_State* L) {
28629 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE);
28633 return luaL_error(L, "Invalid file");
28637 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
28642 lua_error(L);
28647 static int _wrap_new_SBFile__SWIG_2(lua_State* L) {
28656 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBFile::SBFile",1,"int");
28657 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFile::SBFile",2,"char const *");
28658 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBFile::SBFile",3,"bool");
28659 arg1 = (int)lua_tointeger(L, 1);
28660 arg2 = (char *)lua_tostring(L, 2);
28661 arg3 = (lua_toboolean(L, 3)!=0);
28663 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
28668 lua_error(L);
28673 static int _wrap_new_SBFile(lua_State* L) {
28679 argc = lua_gettop(L);
28681 return _wrap_new_SBFile__SWIG_0(L);
28686 _v = (lua_isuserdata(L, argv[0])) &&
28687 (luaL_testudata(L, argv[0], LUA_FILEHANDLE) != nullptr);
28690 return _wrap_new_SBFile__SWIG_1(L);
28696 _v = lua_isnumber(L,argv[0]);
28700 _v = SWIG_lua_isnilstring(L,argv[1]);
28704 _v = lua_isboolean(L,argv[2]);
28707 return _wrap_new_SBFile__SWIG_2(L);
28713 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFile'\n"
28718 lua_error(L);return 0;
28722 static int _wrap_SBFile_Read(lua_State* L) {
28732 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Read",1,"lldb::SBFile *");
28733 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBFile::Read",2,"uint8_t *");
28734 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFile::Read",3,"size_t");
28735 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBFile::Read",4,"size_t *");
28737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){
28742 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_unsigned_char,0))){
28746 arg3 = (size_t)lua_tointeger(L, 3);
28748 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_size_t,0))){
28755 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
28761 lua_error(L);
28766 static int _wrap_SBFile_Write(lua_State* L) {
28776 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Write",1,"lldb::SBFile *");
28777 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBFile::Write",2,"uint8_t const *");
28778 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFile::Write",3,"size_t");
28779 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBFile::Write",4,"size_t *");
28781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){
28786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_unsigned_char,0))){
28790 arg3 = (size_t)lua_tointeger(L, 3);
28792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_size_t,0))){
28799 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
28805 lua_error(L);
28810 static int _wrap_SBFile_Flush(lua_State* L) {
28817 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Flush",1,"lldb::SBFile *");
28819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){
28826 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
28832 lua_error(L);
28837 static int _wrap_SBFile_IsValid(lua_State* L) {
28844 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::IsValid",1,"lldb::SBFile const *");
28846 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){
28851 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
28856 lua_error(L);
28861 static int _wrap_SBFile_Close(lua_State* L) {
28868 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Close",1,"lldb::SBFile *");
28870 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){
28877 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
28883 lua_error(L);
28888 static int _wrap_SBFile_GetFile(lua_State* L) {
28895 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::GetFile",1,"lldb::SBFile const *");
28897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){
28905 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream));
28908 luaL_setmetatable(L, LUA_FILEHANDLE);
28916 lua_error(L);
28921 static int _wrap_SBFile_MakeBorrowed(lua_State* L) {
28929 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE);
28933 return luaL_error(L, "Invalid file");
28939 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
28945 lua_error(L);
28950 static int _wrap_SBFile_MakeForcingIOMethods(lua_State* L) {
28958 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE);
28962 return luaL_error(L, "Invalid file");
28968 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
28974 lua_error(L);
28979 static int _wrap_SBFile_MakeBorrowedForcingIOMethods(lua_State* L) {
28987 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE);
28991 return luaL_error(L, "Invalid file");
28997 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++;
29003 lua_error(L);
29012 static int _proxy__wrap_new_SBFile(lua_State *L) {
29013 assert(lua_istable(L,1));
29014 lua_pushcfunction(L,_wrap_new_SBFile);
29015 assert(!lua_isnil(L,-1));
29016 lua_replace(L,1); /* replace our table with real constructor */
29017 lua_call(L,lua_gettop(L)-1,1);
29064 static int _wrap_new_SBFileSpec__SWIG_0(lua_State* L) {
29071 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
29076 lua_error(L);
29081 static int _wrap_new_SBFileSpec__SWIG_1(lua_State* L) {
29088 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",1,"lldb::SBFileSpec const &");
29090 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29095 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
29100 lua_error(L);
29105 static int _wrap_new_SBFileSpec__SWIG_2(lua_State* L) {
29112 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",1,"char const *");
29113 arg1 = (char *)lua_tostring(L, 1);
29115 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
29120 lua_error(L);
29125 static int _wrap_new_SBFileSpec__SWIG_3(lua_State* L) {
29133 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",1,"char const *");
29134 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",2,"bool");
29135 arg1 = (char *)lua_tostring(L, 1);
29136 arg2 = (lua_toboolean(L, 2)!=0);
29138 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
29143 lua_error(L);
29148 static int _wrap_new_SBFileSpec(lua_State* L) {
29154 argc = lua_gettop(L);
29156 return _wrap_new_SBFileSpec__SWIG_0(L);
29162 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
29169 return _wrap_new_SBFileSpec__SWIG_1(L);
29175 _v = SWIG_lua_isnilstring(L,argv[0]);
29178 return _wrap_new_SBFileSpec__SWIG_2(L);
29184 _v = SWIG_lua_isnilstring(L,argv[0]);
29188 _v = lua_isboolean(L,argv[1]);
29191 return _wrap_new_SBFileSpec__SWIG_3(L);
29196 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFileSpec'\n"
29202 lua_error(L);return 0;
29206 static int _wrap_SBFileSpec___eq(lua_State* L) {
29214 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::operator ==",1,"lldb::SBFileSpec const *");
29215 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpec::operator ==",2,"lldb::SBFileSpec const &");
29217 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
29227 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29232 lua_error(L);
29237 static int _wrap_SBFileSpec_IsValid(lua_State* L) {
29244 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::IsValid",1,"lldb::SBFileSpec const *");
29246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29251 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29256 lua_error(L);
29261 static int _wrap_SBFileSpec_Exists(lua_State* L) {
29268 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::Exists",1,"lldb::SBFileSpec const *");
29270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29275 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29280 lua_error(L);
29285 static int _wrap_SBFileSpec_ResolveExecutableLocation(lua_State* L) {
29292 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::ResolveExecutableLocation",1,"lldb::SBFileSpec *");
29294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29299 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29304 lua_error(L);
29309 static int _wrap_SBFileSpec_GetFilename(lua_State* L) {
29316 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetFilename",1,"lldb::SBFileSpec const *");
29318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29323 lua_pushstring(L,(const char *)result); SWIG_arg++;
29328 lua_error(L);
29333 static int _wrap_SBFileSpec_GetDirectory(lua_State* L) {
29340 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetDirectory",1,"lldb::SBFileSpec const *");
29342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29347 lua_pushstring(L,(const char *)result); SWIG_arg++;
29352 lua_error(L);
29357 static int _wrap_SBFileSpec_SetFilename(lua_State* L) {
29364 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SetFilename",1,"lldb::SBFileSpec *");
29365 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::SetFilename",2,"char const *");
29367 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29371 arg2 = (char *)lua_tostring(L, 2);
29378 lua_error(L);
29383 static int _wrap_SBFileSpec_SetDirectory(lua_State* L) {
29390 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SetDirectory",1,"lldb::SBFileSpec *");
29391 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::SetDirectory",2,"char const *");
29393 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29397 arg2 = (char *)lua_tostring(L, 2);
29404 lua_error(L);
29409 static int _wrap_SBFileSpec_GetPath(lua_State* L) {
29418 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetPath",1,"lldb::SBFileSpec const *");
29419 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::GetPath",2,"char *");
29420 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFileSpec::GetPath",3,"size_t");
29422 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29426 arg2 = (char *)lua_tostring(L, 2);
29427 arg3 = (size_t)lua_tointeger(L, 3);
29429 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
29434 lua_error(L);
29439 static int _wrap_SBFileSpec_ResolvePath(lua_State* L) {
29448 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFileSpec::ResolvePath",1,"char const *");
29449 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::ResolvePath",2,"char *");
29450 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFileSpec::ResolvePath",3,"size_t");
29451 arg1 = (char *)lua_tostring(L, 1);
29452 arg2 = (char *)lua_tostring(L, 2);
29453 arg3 = (size_t)lua_tointeger(L, 3);
29455 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
29460 lua_error(L);
29465 static int _wrap_SBFileSpec_GetDescription(lua_State* L) {
29473 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetDescription",1,"lldb::SBFileSpec const *");
29474 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpec::GetDescription",2,"lldb::SBStream &");
29476 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29481 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
29486 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29491 lua_error(L);
29496 static int _wrap_SBFileSpec_AppendPathComponent(lua_State* L) {
29503 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::AppendPathComponent",1,"lldb::SBFileSpec *");
29504 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::AppendPathComponent",2,"char const *");
29506 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29510 arg2 = (char *)lua_tostring(L, 2);
29517 lua_error(L);
29522 static int _wrap_SBFileSpec___tostring(lua_State* L) {
29529 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::__repr__",1,"lldb::SBFileSpec *");
29531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){
29536 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
29541 lua_error(L);
29550 static int _proxy__wrap_new_SBFileSpec(lua_State *L) {
29551 assert(lua_istable(L,1));
29552 lua_pushcfunction(L,_wrap_new_SBFileSpec);
29553 assert(!lua_isnil(L,-1));
29554 lua_replace(L,1); /* replace our table with real constructor */
29555 lua_call(L,lua_gettop(L)-1,1);
29608 static int _wrap_new_SBFileSpecList__SWIG_0(lua_State* L) {
29615 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpecList,1); SWIG_arg++;
29620 lua_error(L);
29625 static int _wrap_new_SBFileSpecList__SWIG_1(lua_State* L) {
29632 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::SBFileSpecList",1,"lldb::SBFileSpecList const &");
29634 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29639 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpecList,1); SWIG_arg++;
29644 lua_error(L);
29649 static int _wrap_new_SBFileSpecList(lua_State* L) {
29655 argc = lua_gettop(L);
29657 return _wrap_new_SBFileSpecList__SWIG_0(L);
29663 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
29670 return _wrap_new_SBFileSpecList__SWIG_1(L);
29674 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFileSpecList'\n"
29678 lua_error(L);return 0;
29682 static int _wrap_SBFileSpecList_GetSize(lua_State* L) {
29689 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::GetSize",1,"lldb::SBFileSpecList const *");
29691 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29696 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
29701 lua_error(L);
29706 static int _wrap_SBFileSpecList_GetDescription(lua_State* L) {
29714 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::GetDescription",1,"lldb::SBFileSpecList const *");
29715 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::GetDescription",2,"lldb::SBStream &");
29717 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
29727 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29732 lua_error(L);
29737 static int _wrap_SBFileSpecList_Append(lua_State* L) {
29744 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::Append",1,"lldb::SBFileSpecList *");
29745 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::Append",2,"lldb::SBFileSpec const &");
29747 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
29762 lua_error(L);
29767 static int _wrap_SBFileSpecList_AppendIfUnique(lua_State* L) {
29775 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::AppendIfUnique",1,"lldb::SBFileSpecList *");
29776 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::AppendIfUnique",2,"lldb::SBFileSpec const &");
29778 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
29788 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
29793 lua_error(L);
29798 static int _wrap_SBFileSpecList_Clear(lua_State* L) {
29804 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::Clear",1,"lldb::SBFileSpecList *");
29806 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29816 lua_error(L);
29821 static int _wrap_SBFileSpecList_FindFileIndex(lua_State* L) {
29831 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",1,"lldb::SBFileSpecList *");
29832 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",2,"uint32_t");
29833 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",3,"lldb::SBFileSpec const &");
29834 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",4,"bool");
29836 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29840 arg2 = (uint32_t)lua_tointeger(L, 2);
29842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
29846 arg4 = (lua_toboolean(L, 4)!=0);
29848 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
29853 lua_error(L);
29858 static int _wrap_SBFileSpecList_GetFileSpecAtIndex(lua_State* L) {
29866 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::GetFileSpecAtIndex",1,"lldb::SBFileSpecList const *");
29867 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::GetFileSpecAtIndex",2,"uint32_t");
29869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29873 arg2 = (uint32_t)lua_tointeger(L, 2);
29877 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
29883 lua_error(L);
29888 static int _wrap_SBFileSpecList___tostring(lua_State* L) {
29895 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::__repr__",1,"lldb::SBFileSpecList *");
29897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){
29902 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
29907 lua_error(L);
29916 static int _proxy__wrap_new_SBFileSpecList(lua_State *L) {
29917 assert(lua_istable(L,1));
29918 lua_pushcfunction(L,_wrap_new_SBFileSpecList);
29919 assert(!lua_isnil(L,-1));
29920 lua_replace(L,1); /* replace our table with real constructor */
29921 lua_call(L,lua_gettop(L)-1,1);
29968 static int _wrap_new_SBFormat__SWIG_0(lua_State* L) {
29975 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFormat,1); SWIG_arg++;
29980 lua_error(L);
29985 static int _wrap_new_SBFormat__SWIG_1(lua_State* L) {
29993 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFormat::SBFormat",1,"char const *");
29994 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFormat::SBFormat",2,"lldb::SBError &");
29995 arg1 = (char *)lua_tostring(L, 1);
29997 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
30002 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFormat,1); SWIG_arg++;
30007 lua_error(L);
30012 static int _wrap_new_SBFormat__SWIG_2(lua_State* L) {
30019 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFormat::SBFormat",1,"lldb::SBFormat const &");
30021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFormat,0))){
30026 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFormat,1); SWIG_arg++;
30031 lua_error(L);
30036 static int _wrap_new_SBFormat(lua_State* L) {
30042 argc = lua_gettop(L);
30044 return _wrap_new_SBFormat__SWIG_0(L);
30050 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFormat, SWIG_POINTER_NO_NULL)) {
30057 return _wrap_new_SBFormat__SWIG_2(L);
30063 _v = SWIG_lua_isnilstring(L,argv[0]);
30068 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
30075 return _wrap_new_SBFormat__SWIG_1(L);
30080 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFormat'\n"
30085 lua_error(L);return 0;
30093 static int _proxy__wrap_new_SBFormat(lua_State *L) {
30094 assert(lua_istable(L,1));
30095 lua_pushcfunction(L,_wrap_new_SBFormat);
30096 assert(!lua_isnil(L,-1));
30097 lua_replace(L,1); /* replace our table with real constructor */
30098 lua_call(L,lua_gettop(L)-1,1);
30136 static int _wrap_new_SBFrame__SWIG_0(lua_State* L) {
30143 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
30148 lua_error(L);
30153 static int _wrap_new_SBFrame__SWIG_1(lua_State* L) {
30160 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFrame::SBFrame",1,"lldb::SBFrame const &");
30162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30167 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
30172 lua_error(L);
30177 static int _wrap_new_SBFrame(lua_State* L) {
30183 argc = lua_gettop(L);
30185 return _wrap_new_SBFrame__SWIG_0(L);
30191 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, SWIG_POINTER_NO_NULL)) {
30198 return _wrap_new_SBFrame__SWIG_1(L);
30202 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFrame'\n"
30206 lua_error(L);return 0;
30210 static int _wrap_SBFrame_IsEqual(lua_State* L) {
30218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsEqual",1,"lldb::SBFrame const *");
30219 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::IsEqual",2,"lldb::SBFrame const &");
30221 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30226 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
30231 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30236 lua_error(L);
30241 static int _wrap_SBFrame_IsValid(lua_State* L) {
30248 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsValid",1,"lldb::SBFrame const *");
30250 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30255 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30260 lua_error(L);
30265 static int _wrap_SBFrame_GetFrameID(lua_State* L) {
30272 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFrameID",1,"lldb::SBFrame const *");
30274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30279 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
30284 lua_error(L);
30289 static int _wrap_SBFrame_GetCFA(lua_State* L) {
30296 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetCFA",1,"lldb::SBFrame const *");
30298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30303 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
30308 lua_error(L);
30313 static int _wrap_SBFrame_GetPC(lua_State* L) {
30320 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetPC",1,"lldb::SBFrame const *");
30322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30327 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
30332 lua_error(L);
30337 static int _wrap_SBFrame_SetPC(lua_State* L) {
30345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::SetPC",1,"lldb::SBFrame *");
30346 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFrame::SetPC",2,"lldb::addr_t");
30348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30352 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
30354 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30359 lua_error(L);
30364 static int _wrap_SBFrame_GetSP(lua_State* L) {
30371 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetSP",1,"lldb::SBFrame const *");
30373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30378 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
30383 lua_error(L);
30388 static int _wrap_SBFrame_GetFP(lua_State* L) {
30395 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFP",1,"lldb::SBFrame const *");
30397 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30402 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
30407 lua_error(L);
30412 static int _wrap_SBFrame_GetPCAddress(lua_State* L) {
30419 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetPCAddress",1,"lldb::SBFrame const *");
30421 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30428 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
30434 lua_error(L);
30439 static int _wrap_SBFrame_GetSymbolContext(lua_State* L) {
30447 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetSymbolContext",1,"lldb::SBFrame const *");
30448 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFrame::GetSymbolContext",2,"uint32_t");
30450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30454 arg2 = (uint32_t)lua_tointeger(L, 2);
30458 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
30464 lua_error(L);
30469 static int _wrap_SBFrame_GetModule(lua_State* L) {
30476 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetModule",1,"lldb::SBFrame const *");
30478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30485 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
30491 lua_error(L);
30496 static int _wrap_SBFrame_GetCompileUnit(lua_State* L) {
30503 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetCompileUnit",1,"lldb::SBFrame const *");
30505 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30512 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++;
30518 lua_error(L);
30523 static int _wrap_SBFrame_GetFunction(lua_State* L) {
30530 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFunction",1,"lldb::SBFrame const *");
30532 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30539 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++;
30545 lua_error(L);
30550 static int _wrap_SBFrame_GetSymbol(lua_State* L) {
30557 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetSymbol",1,"lldb::SBFrame const *");
30559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30566 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
30572 lua_error(L);
30577 static int _wrap_SBFrame_GetBlock(lua_State* L) {
30584 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetBlock",1,"lldb::SBFrame const *");
30586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30593 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
30599 lua_error(L);
30604 static int _wrap_SBFrame_GetFunctionName__SWIG_0(lua_State* L) {
30611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFunctionName",1,"lldb::SBFrame *");
30613 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30618 lua_pushstring(L,(const char *)result); SWIG_arg++;
30623 lua_error(L);
30628 static int _wrap_SBFrame_GetDisplayFunctionName(lua_State* L) {
30635 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetDisplayFunctionName",1,"lldb::SBFrame *");
30637 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30642 lua_pushstring(L,(const char *)result); SWIG_arg++;
30647 lua_error(L);
30652 static int _wrap_SBFrame_GetFunctionName__SWIG_1(lua_State* L) {
30659 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFunctionName",1,"lldb::SBFrame const *");
30661 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30666 lua_pushstring(L,(const char *)result); SWIG_arg++;
30671 lua_error(L);
30676 static int _wrap_SBFrame_GetFunctionName(lua_State* L) {
30682 argc = lua_gettop(L);
30687 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
30694 return _wrap_SBFrame_GetFunctionName__SWIG_0(L);
30701 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
30708 return _wrap_SBFrame_GetFunctionName__SWIG_1(L);
30712 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_GetFunctionName'\n"
30716 lua_error(L);return 0;
30720 static int _wrap_SBFrame_GuessLanguage(lua_State* L) {
30727 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GuessLanguage",1,"lldb::SBFrame const *");
30729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30734 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
30739 lua_error(L);
30744 static int _wrap_SBFrame_IsInlined__SWIG_0(lua_State* L) {
30751 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsInlined",1,"lldb::SBFrame *");
30753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30758 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30763 lua_error(L);
30768 static int _wrap_SBFrame_IsInlined__SWIG_1(lua_State* L) {
30775 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsInlined",1,"lldb::SBFrame const *");
30777 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30782 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30787 lua_error(L);
30792 static int _wrap_SBFrame_IsInlined(lua_State* L) {
30798 argc = lua_gettop(L);
30803 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
30810 return _wrap_SBFrame_IsInlined__SWIG_0(L);
30817 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
30824 return _wrap_SBFrame_IsInlined__SWIG_1(L);
30828 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_IsInlined'\n"
30832 lua_error(L);return 0;
30836 static int _wrap_SBFrame_IsArtificial__SWIG_0(lua_State* L) {
30843 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsArtificial",1,"lldb::SBFrame *");
30845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30850 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30855 lua_error(L);
30860 static int _wrap_SBFrame_IsArtificial__SWIG_1(lua_State* L) {
30867 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsArtificial",1,"lldb::SBFrame const *");
30869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30874 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
30879 lua_error(L);
30884 static int _wrap_SBFrame_IsArtificial(lua_State* L) {
30890 argc = lua_gettop(L);
30895 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
30902 return _wrap_SBFrame_IsArtificial__SWIG_0(L);
30909 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
30916 return _wrap_SBFrame_IsArtificial__SWIG_1(L);
30920 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_IsArtificial'\n"
30924 lua_error(L);return 0;
30928 static int _wrap_SBFrame_EvaluateExpression__SWIG_0(lua_State* L) {
30936 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *");
30937 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *");
30939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30943 arg2 = (char *)lua_tostring(L, 2);
30947 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
30953 lua_error(L);
30958 static int _wrap_SBFrame_EvaluateExpression__SWIG_1(lua_State* L) {
30967 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *");
30968 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *");
30969 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",3,"lldb::DynamicValueType");
30971 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
30975 arg2 = (char *)lua_tostring(L, 2);
30976 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3);
30980 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
30986 lua_error(L);
30991 static int _wrap_SBFrame_EvaluateExpression__SWIG_2(lua_State* L) {
31001 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *");
31002 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *");
31003 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",3,"lldb::DynamicValueType");
31004 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",4,"bool");
31006 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31010 arg2 = (char *)lua_tostring(L, 2);
31011 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3);
31012 arg4 = (lua_toboolean(L, 4)!=0);
31016 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31022 lua_error(L);
31027 static int _wrap_SBFrame_EvaluateExpression__SWIG_3(lua_State* L) {
31036 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *");
31037 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *");
31038 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",3,"lldb::SBExpressionOptions const &");
31040 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31044 arg2 = (char *)lua_tostring(L, 2);
31046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
31053 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31059 lua_error(L);
31064 static int _wrap_SBFrame_EvaluateExpression(lua_State* L) {
31070 argc = lua_gettop(L);
31075 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31083 _v = SWIG_lua_isnilstring(L,argv[1]);
31086 return _wrap_SBFrame_EvaluateExpression__SWIG_0(L);
31094 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31102 _v = SWIG_lua_isnilstring(L,argv[1]);
31107 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, SWIG_POINTER_NO_NULL)) {
31114 return _wrap_SBFrame_EvaluateExpression__SWIG_3(L);
31123 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31131 _v = SWIG_lua_isnilstring(L,argv[1]);
31135 _v = lua_isnumber(L,argv[2]);
31138 return _wrap_SBFrame_EvaluateExpression__SWIG_1(L);
31147 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31155 _v = SWIG_lua_isnilstring(L,argv[1]);
31159 _v = lua_isnumber(L,argv[2]);
31163 _v = lua_isboolean(L,argv[3]);
31166 return _wrap_SBFrame_EvaluateExpression__SWIG_2(L);
31173 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_EvaluateExpression'\n"
31179 lua_error(L);return 0;
31183 static int _wrap_SBFrame_GetFrameBlock(lua_State* L) {
31190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFrameBlock",1,"lldb::SBFrame const *");
31192 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31199 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
31205 lua_error(L);
31210 static int _wrap_SBFrame_GetLineEntry(lua_State* L) {
31217 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetLineEntry",1,"lldb::SBFrame const *");
31219 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31226 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++;
31232 lua_error(L);
31237 static int _wrap_SBFrame_GetThread(lua_State* L) {
31244 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetThread",1,"lldb::SBFrame const *");
31246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31253 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
31259 lua_error(L);
31264 static int _wrap_SBFrame_Disassemble(lua_State* L) {
31271 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::Disassemble",1,"lldb::SBFrame const *");
31273 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31278 lua_pushstring(L,(const char *)result); SWIG_arg++;
31283 lua_error(L);
31288 static int _wrap_SBFrame_Clear(lua_State* L) {
31294 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::Clear",1,"lldb::SBFrame *");
31296 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31306 lua_error(L);
31311 static int _wrap_SBFrame___eq(lua_State* L) {
31319 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::operator ==",1,"lldb::SBFrame const *");
31320 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::operator ==",2,"lldb::SBFrame const &");
31322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
31332 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
31337 lua_error(L);
31342 static int _wrap_SBFrame_GetVariables__SWIG_0(lua_State* L) {
31353 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetVariables",1,"lldb::SBFrame *");
31354 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBFrame::GetVariables",2,"bool");
31355 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBFrame::GetVariables",3,"bool");
31356 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFrame::GetVariables",4,"bool");
31357 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBFrame::GetVariables",5,"bool");
31359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31363 arg2 = (lua_toboolean(L, 2)!=0);
31364 arg3 = (lua_toboolean(L, 3)!=0);
31365 arg4 = (lua_toboolean(L, 4)!=0);
31366 arg5 = (lua_toboolean(L, 5)!=0);
31370 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
31376 lua_error(L);
31381 static int _wrap_SBFrame_GetVariables__SWIG_1(lua_State* L) {
31393 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetVariables",1,"lldb::SBFrame *");
31394 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBFrame::GetVariables",2,"bool");
31395 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBFrame::GetVariables",3,"bool");
31396 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFrame::GetVariables",4,"bool");
31397 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBFrame::GetVariables",5,"bool");
31398 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBFrame::GetVariables",6,"lldb::DynamicValueType");
31400 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31404 arg2 = (lua_toboolean(L, 2)!=0);
31405 arg3 = (lua_toboolean(L, 3)!=0);
31406 arg4 = (lua_toboolean(L, 4)!=0);
31407 arg5 = (lua_toboolean(L, 5)!=0);
31408 arg6 = (lldb::DynamicValueType)lua_tointeger(L, 6);
31412 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
31418 lua_error(L);
31423 static int _wrap_SBFrame_GetVariables__SWIG_2(lua_State* L) {
31431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetVariables",1,"lldb::SBFrame *");
31432 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::GetVariables",2,"lldb::SBVariablesOptions const &");
31434 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31439 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
31446 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
31452 lua_error(L);
31457 static int _wrap_SBFrame_GetVariables(lua_State* L) {
31463 argc = lua_gettop(L);
31468 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31477 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBVariablesOptions, SWIG_POINTER_NO_NULL)) {
31484 return _wrap_SBFrame_GetVariables__SWIG_2(L);
31492 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31500 _v = lua_isboolean(L,argv[1]);
31504 _v = lua_isboolean(L,argv[2]);
31508 _v = lua_isboolean(L,argv[3]);
31512 _v = lua_isboolean(L,argv[4]);
31515 return _wrap_SBFrame_GetVariables__SWIG_0(L);
31526 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31534 _v = lua_isboolean(L,argv[1]);
31538 _v = lua_isboolean(L,argv[2]);
31542 _v = lua_isboolean(L,argv[3]);
31546 _v = lua_isboolean(L,argv[4]);
31550 _v = lua_isnumber(L,argv[5]);
31553 return _wrap_SBFrame_GetVariables__SWIG_1(L);
31562 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_GetVariables'\n"
31567 lua_error(L);return 0;
31571 static int _wrap_SBFrame_GetRegisters(lua_State* L) {
31578 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetRegisters",1,"lldb::SBFrame *");
31580 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31587 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
31593 lua_error(L);
31598 static int _wrap_SBFrame_FindRegister(lua_State* L) {
31606 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindRegister",1,"lldb::SBFrame *");
31607 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindRegister",2,"char const *");
31609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31613 arg2 = (char *)lua_tostring(L, 2);
31617 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31623 lua_error(L);
31628 static int _wrap_SBFrame_FindVariable__SWIG_0(lua_State* L) {
31636 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindVariable",1,"lldb::SBFrame *");
31637 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindVariable",2,"char const *");
31639 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31643 arg2 = (char *)lua_tostring(L, 2);
31647 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31653 lua_error(L);
31658 static int _wrap_SBFrame_FindVariable__SWIG_1(lua_State* L) {
31667 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindVariable",1,"lldb::SBFrame *");
31668 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindVariable",2,"char const *");
31669 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::FindVariable",3,"lldb::DynamicValueType");
31671 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31675 arg2 = (char *)lua_tostring(L, 2);
31676 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3);
31680 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31686 lua_error(L);
31691 static int _wrap_SBFrame_FindVariable(lua_State* L) {
31697 argc = lua_gettop(L);
31702 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31710 _v = SWIG_lua_isnilstring(L,argv[1]);
31713 return _wrap_SBFrame_FindVariable__SWIG_0(L);
31721 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31729 _v = SWIG_lua_isnilstring(L,argv[1]);
31733 _v = lua_isnumber(L,argv[2]);
31736 return _wrap_SBFrame_FindVariable__SWIG_1(L);
31742 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_FindVariable'\n"
31746 lua_error(L);return 0;
31750 static int _wrap_SBFrame_GetValueForVariablePath__SWIG_0(lua_State* L) {
31759 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",1,"lldb::SBFrame *");
31760 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",2,"char const *");
31761 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",3,"lldb::DynamicValueType");
31763 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31767 arg2 = (char *)lua_tostring(L, 2);
31768 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3);
31772 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31778 lua_error(L);
31783 static int _wrap_SBFrame_GetValueForVariablePath__SWIG_1(lua_State* L) {
31791 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",1,"lldb::SBFrame *");
31792 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",2,"char const *");
31794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31798 arg2 = (char *)lua_tostring(L, 2);
31802 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31808 lua_error(L);
31813 static int _wrap_SBFrame_GetValueForVariablePath(lua_State* L) {
31819 argc = lua_gettop(L);
31824 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31832 _v = SWIG_lua_isnilstring(L,argv[1]);
31835 return _wrap_SBFrame_GetValueForVariablePath__SWIG_1(L);
31843 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31851 _v = SWIG_lua_isnilstring(L,argv[1]);
31855 _v = lua_isnumber(L,argv[2]);
31858 return _wrap_SBFrame_GetValueForVariablePath__SWIG_0(L);
31864 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_GetValueForVariablePath'\n"
31868 lua_error(L);return 0;
31872 static int _wrap_SBFrame_FindValue__SWIG_0(lua_State* L) {
31881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindValue",1,"lldb::SBFrame *");
31882 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindValue",2,"char const *");
31883 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::FindValue",3,"lldb::ValueType");
31885 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31889 arg2 = (char *)lua_tostring(L, 2);
31890 arg3 = (lldb::ValueType)lua_tointeger(L, 3);
31894 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31900 lua_error(L);
31905 static int _wrap_SBFrame_FindValue__SWIG_1(lua_State* L) {
31915 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindValue",1,"lldb::SBFrame *");
31916 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindValue",2,"char const *");
31917 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::FindValue",3,"lldb::ValueType");
31918 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBFrame::FindValue",4,"lldb::DynamicValueType");
31920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
31924 arg2 = (char *)lua_tostring(L, 2);
31925 arg3 = (lldb::ValueType)lua_tointeger(L, 3);
31926 arg4 = (lldb::DynamicValueType)lua_tointeger(L, 4);
31930 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
31936 lua_error(L);
31941 static int _wrap_SBFrame_FindValue(lua_State* L) {
31947 argc = lua_gettop(L);
31952 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31960 _v = SWIG_lua_isnilstring(L,argv[1]);
31964 _v = lua_isnumber(L,argv[2]);
31967 return _wrap_SBFrame_FindValue__SWIG_0(L);
31976 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, 0)) {
31984 _v = SWIG_lua_isnilstring(L,argv[1]);
31988 _v = lua_isnumber(L,argv[2]);
31992 _v = lua_isnumber(L,argv[3]);
31995 return _wrap_SBFrame_FindValue__SWIG_1(L);
32002 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_FindValue'\n"
32006 lua_error(L);return 0;
32010 static int _wrap_SBFrame_GetDescription(lua_State* L) {
32018 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetDescription",1,"lldb::SBFrame *");
32019 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::GetDescription",2,"lldb::SBStream &");
32021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
32026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
32031 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
32036 lua_error(L);
32041 static int _wrap_SBFrame_GetDescriptionWithFormat(lua_State* L) {
32050 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetDescriptionWithFormat",1,"lldb::SBFrame *");
32051 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::GetDescriptionWithFormat",2,"lldb::SBFormat const &");
32052 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBFrame::GetDescriptionWithFormat",3,"lldb::SBStream &");
32054 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
32059 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFormat,0))){
32064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStream,0))){
32071 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
32077 lua_error(L);
32082 static int _wrap_SBFrame___tostring(lua_State* L) {
32089 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::__repr__",1,"lldb::SBFrame *");
32091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){
32096 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
32101 lua_error(L);
32110 static int _proxy__wrap_new_SBFrame(lua_State *L) {
32111 assert(lua_istable(L,1));
32112 lua_pushcfunction(L,_wrap_new_SBFrame);
32113 assert(!lua_isnil(L,-1));
32114 lua_replace(L,1); /* replace our table with real constructor */
32115 lua_call(L,lua_gettop(L)-1,1);
32191 static int _wrap_new_SBFunction__SWIG_0(lua_State* L) {
32198 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++;
32203 lua_error(L);
32208 static int _wrap_new_SBFunction__SWIG_1(lua_State* L) {
32215 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFunction::SBFunction",1,"lldb::SBFunction const &");
32217 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32222 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++;
32227 lua_error(L);
32232 static int _wrap_new_SBFunction(lua_State* L) {
32238 argc = lua_gettop(L);
32240 return _wrap_new_SBFunction__SWIG_0(L);
32246 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFunction, SWIG_POINTER_NO_NULL)) {
32253 return _wrap_new_SBFunction__SWIG_1(L);
32257 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFunction'\n"
32261 lua_error(L);return 0;
32265 static int _wrap_SBFunction_IsValid(lua_State* L) {
32272 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::IsValid",1,"lldb::SBFunction const *");
32274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32279 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
32284 lua_error(L);
32289 static int _wrap_SBFunction_GetName(lua_State* L) {
32296 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetName",1,"lldb::SBFunction const *");
32298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32303 lua_pushstring(L,(const char *)result); SWIG_arg++;
32308 lua_error(L);
32313 static int _wrap_SBFunction_GetDisplayName(lua_State* L) {
32320 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetDisplayName",1,"lldb::SBFunction const *");
32322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32327 lua_pushstring(L,(const char *)result); SWIG_arg++;
32332 lua_error(L);
32337 static int _wrap_SBFunction_GetMangledName(lua_State* L) {
32344 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetMangledName",1,"lldb::SBFunction const *");
32346 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32351 lua_pushstring(L,(const char *)result); SWIG_arg++;
32356 lua_error(L);
32361 static int _wrap_SBFunction_GetInstructions__SWIG_0(lua_State* L) {
32370 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",1,"lldb::SBFunction *");
32371 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",2,"lldb::SBTarget");
32373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32378 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
32386 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
32392 lua_error(L);
32397 static int _wrap_SBFunction_GetInstructions__SWIG_1(lua_State* L) {
32407 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",1,"lldb::SBFunction *");
32408 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",2,"lldb::SBTarget");
32409 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",3,"char const *");
32411 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32416 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
32421 arg3 = (char *)lua_tostring(L, 3);
32425 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
32431 lua_error(L);
32436 static int _wrap_SBFunction_GetInstructions(lua_State* L) {
32442 argc = lua_gettop(L);
32447 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFunction, 0)) {
32456 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
32463 return _wrap_SBFunction_GetInstructions__SWIG_0(L);
32471 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBFunction, 0)) {
32480 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
32488 _v = SWIG_lua_isnilstring(L,argv[2]);
32491 return _wrap_SBFunction_GetInstructions__SWIG_1(L);
32497 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFunction_GetInstructions'\n"
32501 lua_error(L);return 0;
32505 static int _wrap_SBFunction_GetStartAddress(lua_State* L) {
32512 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetStartAddress",1,"lldb::SBFunction *");
32514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32521 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
32527 lua_error(L);
32532 static int _wrap_SBFunction_GetEndAddress(lua_State* L) {
32539 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetEndAddress",1,"lldb::SBFunction *");
32541 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32548 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
32554 lua_error(L);
32559 static int _wrap_SBFunction_GetRanges(lua_State* L) {
32566 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetRanges",1,"lldb::SBFunction *");
32568 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32575 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++;
32581 lua_error(L);
32586 static int _wrap_SBFunction_GetArgumentName(lua_State* L) {
32594 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetArgumentName",1,"lldb::SBFunction *");
32595 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFunction::GetArgumentName",2,"uint32_t");
32597 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32601 arg2 = (uint32_t)lua_tointeger(L, 2);
32603 lua_pushstring(L,(const char *)result); SWIG_arg++;
32608 lua_error(L);
32613 static int _wrap_SBFunction_GetPrologueByteSize(lua_State* L) {
32620 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetPrologueByteSize",1,"lldb::SBFunction *");
32622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32627 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
32632 lua_error(L);
32637 static int _wrap_SBFunction_GetType(lua_State* L) {
32644 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetType",1,"lldb::SBFunction *");
32646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32653 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
32659 lua_error(L);
32664 static int _wrap_SBFunction_GetBlock(lua_State* L) {
32671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetBlock",1,"lldb::SBFunction *");
32673 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32680 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
32686 lua_error(L);
32691 static int _wrap_SBFunction_GetLanguage(lua_State* L) {
32698 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetLanguage",1,"lldb::SBFunction *");
32700 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32705 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
32710 lua_error(L);
32715 static int _wrap_SBFunction_GetIsOptimized(lua_State* L) {
32722 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetIsOptimized",1,"lldb::SBFunction *");
32724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32729 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
32734 lua_error(L);
32739 static int _wrap_SBFunction___eq(lua_State* L) {
32747 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::operator ==",1,"lldb::SBFunction const *");
32748 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::operator ==",2,"lldb::SBFunction const &");
32750 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32755 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFunction,0))){
32760 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
32765 lua_error(L);
32770 static int _wrap_SBFunction_GetDescription(lua_State* L) {
32778 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetDescription",1,"lldb::SBFunction *");
32779 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::GetDescription",2,"lldb::SBStream &");
32781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
32791 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
32796 lua_error(L);
32801 static int _wrap_SBFunction___tostring(lua_State* L) {
32808 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::__repr__",1,"lldb::SBFunction *");
32810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){
32815 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
32820 lua_error(L);
32829 static int _proxy__wrap_new_SBFunction(lua_State *L) {
32830 assert(lua_istable(L,1));
32831 lua_pushcfunction(L,_wrap_new_SBFunction);
32832 assert(!lua_isnil(L,-1));
32833 lua_replace(L,1); /* replace our table with real constructor */
32834 lua_call(L,lua_gettop(L)-1,1);
32891 static int _wrap_SBHostOS_GetProgramFileSpec(lua_State* L) {
32900 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
32906 lua_error(L);
32911 static int _wrap_SBHostOS_GetLLDBPythonPath(lua_State* L) {
32920 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
32926 lua_error(L);
32931 static int _wrap_SBHostOS_GetLLDBPath(lua_State* L) {
32938 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBHostOS::GetLLDBPath",1,"lldb::PathType");
32939 arg1 = (lldb::PathType)lua_tointeger(L, 1);
32943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
32949 lua_error(L);
32954 static int _wrap_SBHostOS_GetUserHomeDirectory(lua_State* L) {
32963 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
32969 lua_error(L);
32974 static int _wrap_SBHostOS_ThreadCreated(lua_State* L) {
32980 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreated",1,"char const *");
32981 arg1 = (char *)lua_tostring(L, 1);
32988 lua_error(L);
32993 static int _wrap_SBHostOS_ThreadCreate(lua_State* L) {
33003 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",1,"char const *");
33004 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",2,"lldb::thread_func_t");
33005 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",3,"void *");
33006 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",4,"lldb::SBError *");
33007 arg1 = (char *)lua_tostring(L, 1);
33009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_p_void__p_void,0))){
33013 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBHostOS_ThreadCreate");
33015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
33022 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_pthread_t,1); SWIG_arg++;
33028 lua_error(L);
33033 static int _wrap_SBHostOS_ThreadCancel(lua_State* L) {
33042 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadCancel",1,"lldb::thread_t");
33043 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadCancel",2,"lldb::SBError *");
33045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_pthread_t,0))){
33051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
33056 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33061 lua_error(L);
33066 static int _wrap_SBHostOS_ThreadDetach(lua_State* L) {
33075 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadDetach",1,"lldb::thread_t");
33076 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadDetach",2,"lldb::SBError *");
33078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_pthread_t,0))){
33084 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
33089 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33094 lua_error(L);
33099 static int _wrap_SBHostOS_ThreadJoin(lua_State* L) {
33109 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadJoin",1,"lldb::thread_t");
33110 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadJoin",2,"lldb::thread_result_t *");
33111 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBHostOS::ThreadJoin",3,"lldb::SBError *");
33113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_pthread_t,0))){
33119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_p_void,0))){
33124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
33129 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33134 lua_error(L);
33139 static int _wrap_new_SBHostOS(lua_State* L) {
33146 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBHostOS,1); SWIG_arg++;
33151 lua_error(L);
33160 static int _proxy__wrap_new_SBHostOS(lua_State *L) {
33161 assert(lua_istable(L,1));
33162 lua_pushcfunction(L,_wrap_new_SBHostOS);
33163 assert(!lua_isnil(L,-1));
33164 lua_replace(L,1); /* replace our table with real constructor */
33165 lua_call(L,lua_gettop(L)-1,1);
33212 static int _wrap_new_SBInstruction__SWIG_0(lua_State* L) {
33219 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstruction,1); SWIG_arg++;
33224 lua_error(L);
33229 static int _wrap_new_SBInstruction__SWIG_1(lua_State* L) {
33236 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBInstruction::SBInstruction",1,"lldb::SBInstruction const &");
33238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33243 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstruction,1); SWIG_arg++;
33248 lua_error(L);
33253 static int _wrap_new_SBInstruction(lua_State* L) {
33259 argc = lua_gettop(L);
33261 return _wrap_new_SBInstruction__SWIG_0(L);
33267 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstruction, SWIG_POINTER_NO_NULL)) {
33274 return _wrap_new_SBInstruction__SWIG_1(L);
33278 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBInstruction'\n"
33282 lua_error(L);return 0;
33286 static int _wrap_SBInstruction_IsValid(lua_State* L) {
33293 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::IsValid",1,"lldb::SBInstruction *");
33295 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33300 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33305 lua_error(L);
33310 static int _wrap_SBInstruction_GetAddress(lua_State* L) {
33317 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetAddress",1,"lldb::SBInstruction *");
33319 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33326 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
33332 lua_error(L);
33337 static int _wrap_SBInstruction_GetMnemonic(lua_State* L) {
33346 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetMnemonic",1,"lldb::SBInstruction *");
33347 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetMnemonic",2,"lldb::SBTarget");
33349 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33354 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
33360 lua_pushstring(L,(const char *)result); SWIG_arg++;
33365 lua_error(L);
33370 static int _wrap_SBInstruction_GetOperands(lua_State* L) {
33379 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetOperands",1,"lldb::SBInstruction *");
33380 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetOperands",2,"lldb::SBTarget");
33382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33387 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
33393 lua_pushstring(L,(const char *)result); SWIG_arg++;
33398 lua_error(L);
33403 static int _wrap_SBInstruction_GetComment(lua_State* L) {
33412 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetComment",1,"lldb::SBInstruction *");
33413 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetComment",2,"lldb::SBTarget");
33415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
33426 lua_pushstring(L,(const char *)result); SWIG_arg++;
33431 lua_error(L);
33436 static int _wrap_SBInstruction_GetControlFlowKind(lua_State* L) {
33445 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetControlFlowKind",1,"lldb::SBInstruction *");
33446 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetControlFlowKind",2,"lldb::SBTarget");
33448 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33453 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
33459 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
33464 lua_error(L);
33469 static int _wrap_SBInstruction_GetData(lua_State* L) {
33478 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetData",1,"lldb::SBInstruction *");
33479 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetData",2,"lldb::SBTarget");
33481 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
33494 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
33500 lua_error(L);
33505 static int _wrap_SBInstruction_GetByteSize(lua_State* L) {
33512 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetByteSize",1,"lldb::SBInstruction *");
33514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33519 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
33524 lua_error(L);
33529 static int _wrap_SBInstruction_DoesBranch(lua_State* L) {
33536 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::DoesBranch",1,"lldb::SBInstruction *");
33538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33543 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33548 lua_error(L);
33553 static int _wrap_SBInstruction_HasDelaySlot(lua_State* L) {
33560 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::HasDelaySlot",1,"lldb::SBInstruction *");
33562 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33567 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33572 lua_error(L);
33577 static int _wrap_SBInstruction_CanSetBreakpoint(lua_State* L) {
33584 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::CanSetBreakpoint",1,"lldb::SBInstruction *");
33586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33591 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33596 lua_error(L);
33601 static int _wrap_SBInstruction_Print__SWIG_0(lua_State* L) {
33609 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::Print",1,"lldb::SBInstruction *");
33610 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::Print",2,"lldb::SBFile");
33612 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33617 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
33628 lua_error(L);
33633 static int _wrap_SBInstruction_Print__SWIG_1(lua_State* L) {
33640 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::Print",1,"lldb::SBInstruction *");
33642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33647 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
33651 return luaL_error(L, "Invalid file");
33660 lua_error(L);
33665 static int _wrap_SBInstruction_Print(lua_State* L) {
33671 argc = lua_gettop(L);
33676 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstruction, 0)) {
33685 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
33692 return _wrap_SBInstruction_Print__SWIG_0(L);
33700 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstruction, 0)) {
33708 _v = (lua_isuserdata(L, argv[1])) &&
33709 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
33712 return _wrap_SBInstruction_Print__SWIG_1(L);
33717 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBInstruction_Print'\n"
33721 lua_error(L);return 0;
33725 static int _wrap_SBInstruction_GetDescription(lua_State* L) {
33733 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetDescription",1,"lldb::SBInstruction *");
33734 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetDescription",2,"lldb::SBStream &");
33736 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
33746 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33751 lua_error(L);
33756 static int _wrap_SBInstruction_EmulateWithFrame(lua_State* L) {
33765 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::EmulateWithFrame",1,"lldb::SBInstruction *");
33766 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::EmulateWithFrame",2,"lldb::SBFrame &");
33767 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBInstruction::EmulateWithFrame",3,"uint32_t");
33769 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33774 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
33778 arg3 = (uint32_t)lua_tointeger(L, 3);
33780 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33785 lua_error(L);
33790 static int _wrap_SBInstruction_DumpEmulation(lua_State* L) {
33798 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::DumpEmulation",1,"lldb::SBInstruction *");
33799 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBInstruction::DumpEmulation",2,"char const *");
33801 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33805 arg2 = (char *)lua_tostring(L, 2);
33807 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33812 lua_error(L);
33817 static int _wrap_SBInstruction_TestEmulation(lua_State* L) {
33826 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::TestEmulation",1,"lldb::SBInstruction *");
33827 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::TestEmulation",2,"lldb::SBStream &");
33828 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBInstruction::TestEmulation",3,"char const *");
33830 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33835 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
33839 arg3 = (char *)lua_tostring(L, 3);
33841 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
33846 lua_error(L);
33851 static int _wrap_SBInstruction___tostring(lua_State* L) {
33858 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::__repr__",1,"lldb::SBInstruction *");
33860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){
33865 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
33870 lua_error(L);
33879 static int _proxy__wrap_new_SBInstruction(lua_State *L) {
33880 assert(lua_istable(L,1));
33881 lua_pushcfunction(L,_wrap_new_SBInstruction);
33882 assert(!lua_isnil(L,-1));
33883 lua_replace(L,1); /* replace our table with real constructor */
33884 lua_call(L,lua_gettop(L)-1,1);
33940 static int _wrap_new_SBInstructionList__SWIG_0(lua_State* L) {
33947 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
33952 lua_error(L);
33957 static int _wrap_new_SBInstructionList__SWIG_1(lua_State* L) {
33964 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBInstructionList::SBInstructionList",1,"lldb::SBInstructionList const &");
33966 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
33971 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
33976 lua_error(L);
33981 static int _wrap_new_SBInstructionList(lua_State* L) {
33987 argc = lua_gettop(L);
33989 return _wrap_new_SBInstructionList__SWIG_0(L);
33995 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstructionList, SWIG_POINTER_NO_NULL)) {
34002 return _wrap_new_SBInstructionList__SWIG_1(L);
34006 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBInstructionList'\n"
34010 lua_error(L);return 0;
34014 static int _wrap_SBInstructionList_IsValid(lua_State* L) {
34021 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::IsValid",1,"lldb::SBInstructionList const *");
34023 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34028 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34033 lua_error(L);
34038 static int _wrap_SBInstructionList_GetSize(lua_State* L) {
34045 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetSize",1,"lldb::SBInstructionList *");
34047 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34052 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34057 lua_error(L);
34062 static int _wrap_SBInstructionList_GetInstructionAtIndex(lua_State* L) {
34070 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionAtIndex",1,"lldb::SBInstructionList *");
34071 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionAtIndex",2,"uint32_t");
34073 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34077 arg2 = (uint32_t)lua_tointeger(L, 2);
34081 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstruction,1); SWIG_arg++;
34087 lua_error(L);
34092 static int _wrap_SBInstructionList_GetInstructionsCount__SWIG_0(lua_State* L) {
34102 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",1,"lldb::SBInstructionList *");
34103 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",2,"lldb::SBAddress const &");
34104 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",3,"lldb::SBAddress const &");
34105 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",4,"bool");
34107 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
34117 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBAddress,0))){
34121 arg4 = (lua_toboolean(L, 4)!=0);
34123 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34128 lua_error(L);
34133 static int _wrap_SBInstructionList_GetInstructionsCount__SWIG_1(lua_State* L) {
34142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",1,"lldb::SBInstructionList *");
34143 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",2,"lldb::SBAddress const &");
34144 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",3,"lldb::SBAddress const &");
34146 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34151 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
34156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBAddress,0))){
34161 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34166 lua_error(L);
34171 static int _wrap_SBInstructionList_GetInstructionsCount(lua_State* L) {
34177 argc = lua_gettop(L);
34182 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstructionList, 0)) {
34191 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
34200 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
34207 return _wrap_SBInstructionList_GetInstructionsCount__SWIG_1(L);
34216 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstructionList, 0)) {
34225 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
34234 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
34242 _v = lua_isboolean(L,argv[3]);
34245 return _wrap_SBInstructionList_GetInstructionsCount__SWIG_0(L);
34252 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBInstructionList_GetInstructionsCount'\n"
34256 lua_error(L);return 0;
34260 static int _wrap_SBInstructionList_Clear(lua_State* L) {
34266 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::Clear",1,"lldb::SBInstructionList *");
34268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34278 lua_error(L);
34283 static int _wrap_SBInstructionList_AppendInstruction(lua_State* L) {
34291 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::AppendInstruction",1,"lldb::SBInstructionList *");
34292 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::AppendInstruction",2,"lldb::SBInstruction");
34294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34299 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBInstruction,0))){
34310 lua_error(L);
34315 static int _wrap_SBInstructionList_Print__SWIG_0(lua_State* L) {
34323 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::Print",1,"lldb::SBInstructionList *");
34324 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::Print",2,"lldb::SBFile");
34326 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34331 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
34342 lua_error(L);
34347 static int _wrap_SBInstructionList_Print__SWIG_1(lua_State* L) {
34354 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::Print",1,"lldb::SBInstructionList *");
34356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34361 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
34365 return luaL_error(L, "Invalid file");
34374 lua_error(L);
34379 static int _wrap_SBInstructionList_Print(lua_State* L) {
34385 argc = lua_gettop(L);
34390 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstructionList, 0)) {
34399 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
34406 return _wrap_SBInstructionList_Print__SWIG_0(L);
34414 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBInstructionList, 0)) {
34422 _v = (lua_isuserdata(L, argv[1])) &&
34423 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
34426 return _wrap_SBInstructionList_Print__SWIG_1(L);
34431 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBInstructionList_Print'\n"
34435 lua_error(L);return 0;
34439 static int _wrap_SBInstructionList_GetDescription(lua_State* L) {
34447 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetDescription",1,"lldb::SBInstructionList *");
34448 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetDescription",2,"lldb::SBStream &");
34450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34455 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
34460 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34465 lua_error(L);
34470 static int _wrap_SBInstructionList_DumpEmulationForAllInstructions(lua_State* L) {
34478 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::DumpEmulationForAllInstructions",1,"lldb::SBInstructionList *");
34479 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBInstructionList::DumpEmulationForAllInstructions",2,"char const *");
34481 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34485 arg2 = (char *)lua_tostring(L, 2);
34487 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34492 lua_error(L);
34497 static int _wrap_SBInstructionList___tostring(lua_State* L) {
34504 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::__repr__",1,"lldb::SBInstructionList *");
34506 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){
34511 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
34516 lua_error(L);
34525 static int _proxy__wrap_new_SBInstructionList(lua_State *L) {
34526 assert(lua_istable(L,1));
34527 lua_pushcfunction(L,_wrap_new_SBInstructionList);
34528 assert(!lua_isnil(L,-1));
34529 lua_replace(L,1); /* replace our table with real constructor */
34530 lua_call(L,lua_gettop(L)-1,1);
34579 static int _wrap_SBLanguageRuntime_GetLanguageTypeFromString(lua_State* L) {
34586 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetLanguageTypeFromString",1,"char const *");
34587 arg1 = (char *)lua_tostring(L, 1);
34589 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34594 lua_error(L);
34599 static int _wrap_SBLanguageRuntime_GetNameForLanguageType(lua_State* L) {
34606 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetNameForLanguageType",1,"lldb::LanguageType");
34607 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34609 lua_pushstring(L,(const char *)result); SWIG_arg++;
34614 lua_error(L);
34619 static int _wrap_SBLanguageRuntime_LanguageIsCPlusPlus(lua_State* L) {
34626 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::LanguageIsCPlusPlus",1,"lldb::LanguageType");
34627 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34629 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34634 lua_error(L);
34639 static int _wrap_SBLanguageRuntime_LanguageIsObjC(lua_State* L) {
34646 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::LanguageIsObjC",1,"lldb::LanguageType");
34647 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34649 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34654 lua_error(L);
34659 static int _wrap_SBLanguageRuntime_LanguageIsCFamily(lua_State* L) {
34666 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::LanguageIsCFamily",1,"lldb::LanguageType");
34667 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34669 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34674 lua_error(L);
34679 static int _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow(lua_State* L) {
34686 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::SupportsExceptionBreakpointsOnThrow",1,"lldb::LanguageType");
34687 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34689 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34694 lua_error(L);
34699 static int _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch(lua_State* L) {
34706 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::SupportsExceptionBreakpointsOnCatch",1,"lldb::LanguageType");
34707 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34709 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34714 lua_error(L);
34719 static int _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage(lua_State* L) {
34726 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetThrowKeywordForLanguage",1,"lldb::LanguageType");
34727 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34729 lua_pushstring(L,(const char *)result); SWIG_arg++;
34734 lua_error(L);
34739 static int _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage(lua_State* L) {
34746 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetCatchKeywordForLanguage",1,"lldb::LanguageType");
34747 arg1 = (lldb::LanguageType)lua_tointeger(L, 1);
34749 lua_pushstring(L,(const char *)result); SWIG_arg++;
34754 lua_error(L);
34759 static int _wrap_new_SBLanguageRuntime(lua_State* L) {
34766 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLanguageRuntime,1); SWIG_arg++;
34771 lua_error(L);
34780 static int _proxy__wrap_new_SBLanguageRuntime(lua_State *L) {
34781 assert(lua_istable(L,1));
34782 lua_pushcfunction(L,_wrap_new_SBLanguageRuntime);
34783 assert(!lua_isnil(L,-1));
34784 lua_replace(L,1); /* replace our table with real constructor */
34785 lua_call(L,lua_gettop(L)-1,1);
34832 static int _wrap_new_SBLaunchInfo(lua_State* L) {
34840 if (lua_istable(L, 1)) {
34841 size_t size = lua_rawlen(L, 1);
34845 lua_rawgeti(L, 1, i);
34846 if (!lua_isstring(L, -1)) {
34848 lua_pop(L, 1);
34849 return luaL_error(L, "List should only contain strings");
34851 arg1[j++] = (char *)lua_tostring(L, -1);
34852 lua_pop(L, 1);
34855 } else if (lua_isnil(L, 1)) {
34859 return luaL_error(L, "A list of strings expected");
34863 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLaunchInfo,1); SWIG_arg++;
34874 lua_error(L);
34879 static int _wrap_SBLaunchInfo_GetProcessID(lua_State* L) {
34886 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetProcessID",1,"lldb::SBLaunchInfo *");
34888 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
34893 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34898 lua_error(L);
34903 static int _wrap_SBLaunchInfo_GetUserID(lua_State* L) {
34910 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetUserID",1,"lldb::SBLaunchInfo *");
34912 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
34917 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34922 lua_error(L);
34927 static int _wrap_SBLaunchInfo_GetGroupID(lua_State* L) {
34934 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetGroupID",1,"lldb::SBLaunchInfo *");
34936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
34941 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
34946 lua_error(L);
34951 static int _wrap_SBLaunchInfo_UserIDIsValid(lua_State* L) {
34958 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::UserIDIsValid",1,"lldb::SBLaunchInfo *");
34960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
34965 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34970 lua_error(L);
34975 static int _wrap_SBLaunchInfo_GroupIDIsValid(lua_State* L) {
34982 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GroupIDIsValid",1,"lldb::SBLaunchInfo *");
34984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
34989 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
34994 lua_error(L);
34999 static int _wrap_SBLaunchInfo_SetUserID(lua_State* L) {
35006 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetUserID",1,"lldb::SBLaunchInfo *");
35007 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetUserID",2,"uint32_t");
35009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35013 arg2 = (uint32_t)lua_tointeger(L, 2);
35020 lua_error(L);
35025 static int _wrap_SBLaunchInfo_SetGroupID(lua_State* L) {
35032 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetGroupID",1,"lldb::SBLaunchInfo *");
35033 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetGroupID",2,"uint32_t");
35035 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35039 arg2 = (uint32_t)lua_tointeger(L, 2);
35046 lua_error(L);
35051 static int _wrap_SBLaunchInfo_GetExecutableFile(lua_State* L) {
35058 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetExecutableFile",1,"lldb::SBLaunchInfo *");
35060 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35067 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
35073 lua_error(L);
35078 static int _wrap_SBLaunchInfo_SetExecutableFile(lua_State* L) {
35087 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetExecutableFile",1,"lldb::SBLaunchInfo *");
35088 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetExecutableFile",2,"lldb::SBFileSpec");
35089 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetExecutableFile",3,"bool");
35091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35096 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){
35101 arg3 = (lua_toboolean(L, 3)!=0);
35108 lua_error(L);
35113 static int _wrap_SBLaunchInfo_GetListener(lua_State* L) {
35120 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetListener",1,"lldb::SBLaunchInfo *");
35122 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35129 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
35135 lua_error(L);
35140 static int _wrap_SBLaunchInfo_SetListener(lua_State* L) {
35147 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetListener",1,"lldb::SBLaunchInfo *");
35148 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetListener",2,"lldb::SBListener &");
35150 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35155 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
35165 lua_error(L);
35170 static int _wrap_SBLaunchInfo_GetShadowListener(lua_State* L) {
35177 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetShadowListener",1,"lldb::SBLaunchInfo *");
35179 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35186 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
35192 lua_error(L);
35197 static int _wrap_SBLaunchInfo_SetShadowListener(lua_State* L) {
35204 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShadowListener",1,"lldb::SBLaunchInfo *");
35205 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShadowListener",2,"lldb::SBListener &");
35207 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
35222 lua_error(L);
35227 static int _wrap_SBLaunchInfo_GetNumArguments(lua_State* L) {
35234 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetNumArguments",1,"lldb::SBLaunchInfo *");
35236 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35241 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
35246 lua_error(L);
35251 static int _wrap_SBLaunchInfo_GetArgumentAtIndex(lua_State* L) {
35259 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetArgumentAtIndex",1,"lldb::SBLaunchInfo *");
35260 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::GetArgumentAtIndex",2,"uint32_t");
35262 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35266 arg2 = (uint32_t)lua_tointeger(L, 2);
35268 lua_pushstring(L,(const char *)result); SWIG_arg++;
35273 lua_error(L);
35278 static int _wrap_SBLaunchInfo_SetArguments(lua_State* L) {
35286 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetArguments",1,"lldb::SBLaunchInfo *");
35287 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetArguments",3,"bool");
35289 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35294 if (lua_istable(L, 2)) {
35295 size_t size = lua_rawlen(L, 2);
35299 lua_rawgeti(L, 2, i);
35300 if (!lua_isstring(L, -1)) {
35302 lua_pop(L, 1);
35303 return luaL_error(L, "List should only contain strings");
35305 arg2[j++] = (char *)lua_tostring(L, -1);
35306 lua_pop(L, 1);
35309 } else if (lua_isnil(L, 2)) {
35313 return luaL_error(L, "A list of strings expected");
35316 arg3 = (lua_toboolean(L, 3)!=0);
35329 lua_error(L);
35334 static int _wrap_SBLaunchInfo_GetNumEnvironmentEntries(lua_State* L) {
35341 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetNumEnvironmentEntries",1,"lldb::SBLaunchInfo *");
35343 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35348 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
35353 lua_error(L);
35358 static int _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex(lua_State* L) {
35366 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetEnvironmentEntryAtIndex",1,"lldb::SBLaunchInfo *");
35367 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::GetEnvironmentEntryAtIndex",2,"uint32_t");
35369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35373 arg2 = (uint32_t)lua_tointeger(L, 2);
35375 lua_pushstring(L,(const char *)result); SWIG_arg++;
35380 lua_error(L);
35385 static int _wrap_SBLaunchInfo_SetEnvironmentEntries(lua_State* L) {
35393 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironmentEntries",1,"lldb::SBLaunchInfo *");
35394 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironmentEntries",3,"bool");
35396 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35401 if (lua_istable(L, 2)) {
35402 size_t size = lua_rawlen(L, 2);
35406 lua_rawgeti(L, 2, i);
35407 if (!lua_isstring(L, -1)) {
35409 lua_pop(L, 1);
35410 return luaL_error(L, "List should only contain strings");
35412 arg2[j++] = (char *)lua_tostring(L, -1);
35413 lua_pop(L, 1);
35416 } else if (lua_isnil(L, 2)) {
35420 return luaL_error(L, "A list of strings expected");
35423 arg3 = (lua_toboolean(L, 3)!=0);
35436 lua_error(L);
35441 static int _wrap_SBLaunchInfo_SetEnvironment(lua_State* L) {
35449 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironment",1,"lldb::SBLaunchInfo *");
35450 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironment",2,"lldb::SBEnvironment const &");
35451 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironment",3,"bool");
35453 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEnvironment,0))){
35462 arg3 = (lua_toboolean(L, 3)!=0);
35469 lua_error(L);
35474 static int _wrap_SBLaunchInfo_GetEnvironment(lua_State* L) {
35481 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetEnvironment",1,"lldb::SBLaunchInfo *");
35483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35490 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++;
35496 lua_error(L);
35501 static int _wrap_SBLaunchInfo_Clear(lua_State* L) {
35507 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::Clear",1,"lldb::SBLaunchInfo *");
35509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35519 lua_error(L);
35524 static int _wrap_SBLaunchInfo_GetWorkingDirectory(lua_State* L) {
35531 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetWorkingDirectory",1,"lldb::SBLaunchInfo const *");
35533 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35538 lua_pushstring(L,(const char *)result); SWIG_arg++;
35543 lua_error(L);
35548 static int _wrap_SBLaunchInfo_SetWorkingDirectory(lua_State* L) {
35555 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetWorkingDirectory",1,"lldb::SBLaunchInfo *");
35556 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetWorkingDirectory",2,"char const *");
35558 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35562 arg2 = (char *)lua_tostring(L, 2);
35569 lua_error(L);
35574 static int _wrap_SBLaunchInfo_GetLaunchFlags(lua_State* L) {
35581 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetLaunchFlags",1,"lldb::SBLaunchInfo *");
35583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35588 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
35593 lua_error(L);
35598 static int _wrap_SBLaunchInfo_SetLaunchFlags(lua_State* L) {
35605 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchFlags",1,"lldb::SBLaunchInfo *");
35606 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchFlags",2,"uint32_t");
35608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35612 arg2 = (uint32_t)lua_tointeger(L, 2);
35619 lua_error(L);
35624 static int _wrap_SBLaunchInfo_GetProcessPluginName(lua_State* L) {
35631 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetProcessPluginName",1,"lldb::SBLaunchInfo *");
35633 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35638 lua_pushstring(L,(const char *)result); SWIG_arg++;
35643 lua_error(L);
35648 static int _wrap_SBLaunchInfo_SetProcessPluginName(lua_State* L) {
35655 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetProcessPluginName",1,"lldb::SBLaunchInfo *");
35656 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetProcessPluginName",2,"char const *");
35658 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35662 arg2 = (char *)lua_tostring(L, 2);
35669 lua_error(L);
35674 static int _wrap_SBLaunchInfo_GetShell(lua_State* L) {
35681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetShell",1,"lldb::SBLaunchInfo *");
35683 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35688 lua_pushstring(L,(const char *)result); SWIG_arg++;
35693 lua_error(L);
35698 static int _wrap_SBLaunchInfo_SetShell(lua_State* L) {
35705 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShell",1,"lldb::SBLaunchInfo *");
35706 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShell",2,"char const *");
35708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35712 arg2 = (char *)lua_tostring(L, 2);
35719 lua_error(L);
35724 static int _wrap_SBLaunchInfo_GetShellExpandArguments(lua_State* L) {
35731 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetShellExpandArguments",1,"lldb::SBLaunchInfo *");
35733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35738 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
35743 lua_error(L);
35748 static int _wrap_SBLaunchInfo_SetShellExpandArguments(lua_State* L) {
35755 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShellExpandArguments",1,"lldb::SBLaunchInfo *");
35756 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShellExpandArguments",2,"bool");
35758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35762 arg2 = (lua_toboolean(L, 2)!=0);
35769 lua_error(L);
35774 static int _wrap_SBLaunchInfo_GetResumeCount(lua_State* L) {
35781 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetResumeCount",1,"lldb::SBLaunchInfo *");
35783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35788 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
35793 lua_error(L);
35798 static int _wrap_SBLaunchInfo_SetResumeCount(lua_State* L) {
35805 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetResumeCount",1,"lldb::SBLaunchInfo *");
35806 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetResumeCount",2,"uint32_t");
35808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35812 arg2 = (uint32_t)lua_tointeger(L, 2);
35819 lua_error(L);
35824 static int _wrap_SBLaunchInfo_AddCloseFileAction(lua_State* L) {
35832 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddCloseFileAction",1,"lldb::SBLaunchInfo *");
35833 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddCloseFileAction",2,"int");
35835 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35839 arg2 = (int)lua_tointeger(L, 2);
35841 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
35846 lua_error(L);
35851 static int _wrap_SBLaunchInfo_AddDuplicateFileAction(lua_State* L) {
35860 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddDuplicateFileAction",1,"lldb::SBLaunchInfo *");
35861 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddDuplicateFileAction",2,"int");
35862 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::AddDuplicateFileAction",3,"int");
35864 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35868 arg2 = (int)lua_tointeger(L, 2);
35869 arg3 = (int)lua_tointeger(L, 3);
35871 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
35876 lua_error(L);
35881 static int _wrap_SBLaunchInfo_AddOpenFileAction(lua_State* L) {
35892 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",1,"lldb::SBLaunchInfo *");
35893 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",2,"int");
35894 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",3,"char const *");
35895 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",4,"bool");
35896 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",5,"bool");
35898 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35902 arg2 = (int)lua_tointeger(L, 2);
35903 arg3 = (char *)lua_tostring(L, 3);
35904 arg4 = (lua_toboolean(L, 4)!=0);
35905 arg5 = (lua_toboolean(L, 5)!=0);
35907 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
35912 lua_error(L);
35917 static int _wrap_SBLaunchInfo_AddSuppressFileAction(lua_State* L) {
35927 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",1,"lldb::SBLaunchInfo *");
35928 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",2,"int");
35929 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",3,"bool");
35930 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",4,"bool");
35932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35936 arg2 = (int)lua_tointeger(L, 2);
35937 arg3 = (lua_toboolean(L, 3)!=0);
35938 arg4 = (lua_toboolean(L, 4)!=0);
35940 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
35945 lua_error(L);
35950 static int _wrap_SBLaunchInfo_SetLaunchEventData(lua_State* L) {
35957 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchEventData",1,"lldb::SBLaunchInfo *");
35958 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchEventData",2,"char const *");
35960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35964 arg2 = (char *)lua_tostring(L, 2);
35971 lua_error(L);
35976 static int _wrap_SBLaunchInfo_GetLaunchEventData(lua_State* L) {
35983 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetLaunchEventData",1,"lldb::SBLaunchInfo const *");
35985 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
35990 lua_pushstring(L,(const char *)result); SWIG_arg++;
35995 lua_error(L);
36000 static int _wrap_SBLaunchInfo_GetDetachOnError(lua_State* L) {
36007 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetDetachOnError",1,"lldb::SBLaunchInfo const *");
36009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
36014 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
36019 lua_error(L);
36024 static int _wrap_SBLaunchInfo_SetDetachOnError(lua_State* L) {
36031 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetDetachOnError",1,"lldb::SBLaunchInfo *");
36032 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetDetachOnError",2,"bool");
36034 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
36038 arg2 = (lua_toboolean(L, 2)!=0);
36045 lua_error(L);
36050 static int _wrap_SBLaunchInfo_GetScriptedProcessClassName(lua_State* L) {
36057 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetScriptedProcessClassName",1,"lldb::SBLaunchInfo const *");
36059 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
36064 lua_pushstring(L,(const char *)result); SWIG_arg++;
36069 lua_error(L);
36074 static int _wrap_SBLaunchInfo_SetScriptedProcessClassName(lua_State* L) {
36081 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessClassName",1,"lldb::SBLaunchInfo *");
36082 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessClassName",2,"char const *");
36084 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
36088 arg2 = (char *)lua_tostring(L, 2);
36095 lua_error(L);
36100 static int _wrap_SBLaunchInfo_GetScriptedProcessDictionary(lua_State* L) {
36107 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetScriptedProcessDictionary",1,"lldb::SBLaunchInfo const *");
36109 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
36116 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
36122 lua_error(L);
36127 static int _wrap_SBLaunchInfo_SetScriptedProcessDictionary(lua_State* L) {
36135 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessDictionary",1,"lldb::SBLaunchInfo *");
36136 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessDictionary",2,"lldb::SBStructuredData");
36138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
36143 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBStructuredData,0))){
36154 lua_error(L);
36163 static int _proxy__wrap_new_SBLaunchInfo(lua_State *L) {
36164 assert(lua_istable(L,1));
36165 lua_pushcfunction(L,_wrap_new_SBLaunchInfo);
36166 assert(!lua_isnil(L,-1));
36167 lua_replace(L,1); /* replace our table with real constructor */
36168 lua_call(L,lua_gettop(L)-1,1);
36252 static int _wrap_new_SBLineEntry__SWIG_0(lua_State* L) {
36259 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++;
36264 lua_error(L);
36269 static int _wrap_new_SBLineEntry__SWIG_1(lua_State* L) {
36276 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SBLineEntry",1,"lldb::SBLineEntry const &");
36278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36283 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++;
36288 lua_error(L);
36293 static int _wrap_new_SBLineEntry(lua_State* L) {
36299 argc = lua_gettop(L);
36301 return _wrap_new_SBLineEntry__SWIG_0(L);
36307 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBLineEntry, SWIG_POINTER_NO_NULL)) {
36314 return _wrap_new_SBLineEntry__SWIG_1(L);
36318 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBLineEntry'\n"
36322 lua_error(L);return 0;
36326 static int _wrap_SBLineEntry_GetStartAddress(lua_State* L) {
36333 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetStartAddress",1,"lldb::SBLineEntry const *");
36335 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36342 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
36348 lua_error(L);
36353 static int _wrap_SBLineEntry_GetEndAddress(lua_State* L) {
36360 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetEndAddress",1,"lldb::SBLineEntry const *");
36362 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36369 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
36375 lua_error(L);
36380 static int _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd(lua_State* L) {
36388 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetSameLineContiguousAddressRangeEnd",1,"lldb::SBLineEntry const *");
36389 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBLineEntry::GetSameLineContiguousAddressRangeEnd",2,"bool");
36391 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36395 arg2 = (lua_toboolean(L, 2)!=0);
36399 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
36405 lua_error(L);
36410 static int _wrap_SBLineEntry_IsValid(lua_State* L) {
36417 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::IsValid",1,"lldb::SBLineEntry const *");
36419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36424 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
36429 lua_error(L);
36434 static int _wrap_SBLineEntry_GetFileSpec(lua_State* L) {
36441 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetFileSpec",1,"lldb::SBLineEntry const *");
36443 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36450 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
36456 lua_error(L);
36461 static int _wrap_SBLineEntry_GetLine(lua_State* L) {
36468 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetLine",1,"lldb::SBLineEntry const *");
36470 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36475 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
36480 lua_error(L);
36485 static int _wrap_SBLineEntry_GetColumn(lua_State* L) {
36492 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetColumn",1,"lldb::SBLineEntry const *");
36494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36499 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
36504 lua_error(L);
36509 static int _wrap_SBLineEntry_SetFileSpec(lua_State* L) {
36517 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SetFileSpec",1,"lldb::SBLineEntry *");
36518 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLineEntry::SetFileSpec",2,"lldb::SBFileSpec");
36520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36525 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){
36536 lua_error(L);
36541 static int _wrap_SBLineEntry_SetLine(lua_State* L) {
36548 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SetLine",1,"lldb::SBLineEntry *");
36549 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLineEntry::SetLine",2,"uint32_t");
36551 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36555 arg2 = (uint32_t)lua_tointeger(L, 2);
36562 lua_error(L);
36567 static int _wrap_SBLineEntry_SetColumn(lua_State* L) {
36574 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SetColumn",1,"lldb::SBLineEntry *");
36575 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLineEntry::SetColumn",2,"uint32_t");
36577 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36581 arg2 = (uint32_t)lua_tointeger(L, 2);
36588 lua_error(L);
36593 static int _wrap_SBLineEntry___eq(lua_State* L) {
36601 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::operator ==",1,"lldb::SBLineEntry const *");
36602 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLineEntry::operator ==",2,"lldb::SBLineEntry const &");
36604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLineEntry,0))){
36614 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
36619 lua_error(L);
36624 static int _wrap_SBLineEntry_GetDescription(lua_State* L) {
36632 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetDescription",1,"lldb::SBLineEntry *");
36633 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLineEntry::GetDescription",2,"lldb::SBStream &");
36635 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
36645 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
36650 lua_error(L);
36655 static int _wrap_SBLineEntry___tostring(lua_State* L) {
36662 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::__repr__",1,"lldb::SBLineEntry *");
36664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){
36669 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
36674 lua_error(L);
36683 static int _proxy__wrap_new_SBLineEntry(lua_State *L) {
36684 assert(lua_istable(L,1));
36685 lua_pushcfunction(L,_wrap_new_SBLineEntry);
36686 assert(!lua_isnil(L,-1));
36687 lua_replace(L,1); /* replace our table with real constructor */
36688 lua_call(L,lua_gettop(L)-1,1);
36741 static int _wrap_new_SBListener__SWIG_0(lua_State* L) {
36748 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
36753 lua_error(L);
36758 static int _wrap_new_SBListener__SWIG_1(lua_State* L) {
36765 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBListener::SBListener",1,"char const *");
36766 arg1 = (char *)lua_tostring(L, 1);
36768 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
36773 lua_error(L);
36778 static int _wrap_new_SBListener__SWIG_2(lua_State* L) {
36785 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBListener::SBListener",1,"lldb::SBListener const &");
36787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
36792 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++;
36797 lua_error(L);
36802 static int _wrap_new_SBListener(lua_State* L) {
36808 argc = lua_gettop(L);
36810 return _wrap_new_SBListener__SWIG_0(L);
36816 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBListener, SWIG_POINTER_NO_NULL)) {
36823 return _wrap_new_SBListener__SWIG_2(L);
36829 _v = SWIG_lua_isnilstring(L,argv[0]);
36832 return _wrap_new_SBListener__SWIG_1(L);
36836 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBListener'\n"
36841 lua_error(L);return 0;
36845 static int _wrap_SBListener_AddEvent(lua_State* L) {
36852 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::AddEvent",1,"lldb::SBListener *");
36853 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::AddEvent",2,"lldb::SBEvent const &");
36855 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
36860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
36870 lua_error(L);
36875 static int _wrap_SBListener_Clear(lua_State* L) {
36881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::Clear",1,"lldb::SBListener *");
36883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
36893 lua_error(L);
36898 static int _wrap_SBListener_IsValid(lua_State* L) {
36905 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::IsValid",1,"lldb::SBListener const *");
36907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
36912 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
36917 lua_error(L);
36922 static int _wrap_SBListener_StartListeningForEventClass(lua_State* L) {
36932 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",1,"lldb::SBListener *");
36933 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",2,"lldb::SBDebugger &");
36934 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",3,"char const *");
36935 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",4,"uint32_t");
36937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
36942 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){
36946 arg3 = (char *)lua_tostring(L, 3);
36947 arg4 = (uint32_t)lua_tointeger(L, 4);
36949 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
36954 lua_error(L);
36959 static int _wrap_SBListener_StopListeningForEventClass(lua_State* L) {
36969 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",1,"lldb::SBListener *");
36970 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",2,"lldb::SBDebugger &");
36971 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",3,"char const *");
36972 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",4,"uint32_t");
36974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
36979 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){
36983 arg3 = (char *)lua_tostring(L, 3);
36984 arg4 = (uint32_t)lua_tointeger(L, 4);
36986 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
36991 lua_error(L);
36996 static int _wrap_SBListener_StartListeningForEvents(lua_State* L) {
37005 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StartListeningForEvents",1,"lldb::SBListener *");
37006 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StartListeningForEvents",2,"lldb::SBBroadcaster const &");
37007 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::StartListeningForEvents",3,"uint32_t");
37009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37014 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37018 arg3 = (uint32_t)lua_tointeger(L, 3);
37020 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
37025 lua_error(L);
37030 static int _wrap_SBListener_StopListeningForEvents(lua_State* L) {
37039 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StopListeningForEvents",1,"lldb::SBListener *");
37040 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StopListeningForEvents",2,"lldb::SBBroadcaster const &");
37041 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::StopListeningForEvents",3,"uint32_t");
37043 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37052 arg3 = (uint32_t)lua_tointeger(L, 3);
37054 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37059 lua_error(L);
37064 static int _wrap_SBListener_WaitForEvent(lua_State* L) {
37073 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::WaitForEvent",1,"lldb::SBListener *");
37074 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBListener::WaitForEvent",2,"uint32_t");
37075 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::WaitForEvent",3,"lldb::SBEvent &");
37077 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37081 arg2 = (uint32_t)lua_tointeger(L, 2);
37083 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){
37088 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37093 lua_error(L);
37098 static int _wrap_SBListener_WaitForEventForBroadcaster(lua_State* L) {
37108 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",1,"lldb::SBListener *");
37109 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",2,"uint32_t");
37110 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",3,"lldb::SBBroadcaster const &");
37111 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",4,"lldb::SBEvent &");
37113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37117 arg2 = (uint32_t)lua_tointeger(L, 2);
37119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBEvent,0))){
37129 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37134 lua_error(L);
37139 static int _wrap_SBListener_WaitForEventForBroadcasterWithType(lua_State* L) {
37150 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",1,"lldb::SBListener *");
37151 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",2,"uint32_t");
37152 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",3,"lldb::SBBroadcaster const &");
37153 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",4,"uint32_t");
37154 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",5,"lldb::SBEvent &");
37156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37160 arg2 = (uint32_t)lua_tointeger(L, 2);
37162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37166 arg4 = (uint32_t)lua_tointeger(L, 4);
37168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBEvent,0))){
37173 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37178 lua_error(L);
37183 static int _wrap_SBListener_PeekAtNextEvent(lua_State* L) {
37191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEvent",1,"lldb::SBListener *");
37192 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEvent",2,"lldb::SBEvent &");
37194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
37204 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37209 lua_error(L);
37214 static int _wrap_SBListener_PeekAtNextEventForBroadcaster(lua_State* L) {
37223 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcaster",1,"lldb::SBListener *");
37224 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcaster",2,"lldb::SBBroadcaster const &");
37225 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcaster",3,"lldb::SBEvent &");
37227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37232 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37237 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){
37242 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37247 lua_error(L);
37252 static int _wrap_SBListener_PeekAtNextEventForBroadcasterWithType(lua_State* L) {
37262 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",1,"lldb::SBListener *");
37263 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",2,"lldb::SBBroadcaster const &");
37264 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",3,"uint32_t");
37265 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",4,"lldb::SBEvent &");
37267 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37272 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37276 arg3 = (uint32_t)lua_tointeger(L, 3);
37278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBEvent,0))){
37283 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37288 lua_error(L);
37293 static int _wrap_SBListener_GetNextEvent(lua_State* L) {
37301 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::GetNextEvent",1,"lldb::SBListener *");
37302 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::GetNextEvent",2,"lldb::SBEvent &");
37304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
37314 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37319 lua_error(L);
37324 static int _wrap_SBListener_GetNextEventForBroadcaster(lua_State* L) {
37333 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcaster",1,"lldb::SBListener *");
37334 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcaster",2,"lldb::SBBroadcaster const &");
37335 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcaster",3,"lldb::SBEvent &");
37337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){
37352 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37357 lua_error(L);
37362 static int _wrap_SBListener_GetNextEventForBroadcasterWithType(lua_State* L) {
37372 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",1,"lldb::SBListener *");
37373 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",2,"lldb::SBBroadcaster const &");
37374 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",3,"uint32_t");
37375 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",4,"lldb::SBEvent &");
37377 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){
37386 arg3 = (uint32_t)lua_tointeger(L, 3);
37388 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBEvent,0))){
37393 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37398 lua_error(L);
37403 static int _wrap_SBListener_HandleBroadcastEvent(lua_State* L) {
37411 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::HandleBroadcastEvent",1,"lldb::SBListener *");
37412 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::HandleBroadcastEvent",2,"lldb::SBEvent const &");
37414 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){
37419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
37424 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37429 lua_error(L);
37438 static int _proxy__wrap_new_SBListener(lua_State *L) {
37439 assert(lua_istable(L,1));
37440 lua_pushcfunction(L,_wrap_new_SBListener);
37441 assert(!lua_isnil(L,-1));
37442 lua_replace(L,1); /* replace our table with real constructor */
37443 lua_call(L,lua_gettop(L)-1,1);
37498 static int _wrap_new_SBMemoryRegionInfo__SWIG_0(lua_State* L) {
37505 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++;
37510 lua_error(L);
37515 static int _wrap_new_SBMemoryRegionInfo__SWIG_1(lua_State* L) {
37522 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",1,"lldb::SBMemoryRegionInfo const &");
37524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37529 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++;
37534 lua_error(L);
37539 static int _wrap_new_SBMemoryRegionInfo__SWIG_2(lua_State* L) {
37551 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",1,"char const *");
37552 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",2,"lldb::addr_t");
37553 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",3,"lldb::addr_t");
37554 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",4,"uint32_t");
37555 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",5,"bool");
37556 if(!lua_isboolean(L,6)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",6,"bool");
37557 arg1 = (char *)lua_tostring(L, 1);
37558 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
37559 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
37560 arg4 = (uint32_t)lua_tointeger(L, 4);
37561 arg5 = (lua_toboolean(L, 5)!=0);
37562 arg6 = (lua_toboolean(L, 6)!=0);
37564 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++;
37569 lua_error(L);
37574 static int _wrap_new_SBMemoryRegionInfo__SWIG_3(lua_State* L) {
37585 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",1,"char const *");
37586 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",2,"lldb::addr_t");
37587 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",3,"lldb::addr_t");
37588 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",4,"uint32_t");
37589 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",5,"bool");
37590 arg1 = (char *)lua_tostring(L, 1);
37591 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
37592 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
37593 arg4 = (uint32_t)lua_tointeger(L, 4);
37594 arg5 = (lua_toboolean(L, 5)!=0);
37596 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++;
37601 lua_error(L);
37606 static int _wrap_new_SBMemoryRegionInfo(lua_State* L) {
37612 argc = lua_gettop(L);
37614 return _wrap_new_SBMemoryRegionInfo__SWIG_0(L);
37620 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBMemoryRegionInfo, SWIG_POINTER_NO_NULL)) {
37627 return _wrap_new_SBMemoryRegionInfo__SWIG_1(L);
37633 _v = SWIG_lua_isnilstring(L,argv[0]);
37637 _v = lua_isnumber(L,argv[1]);
37641 _v = lua_isnumber(L,argv[2]);
37645 _v = lua_isnumber(L,argv[3]);
37649 _v = lua_isboolean(L,argv[4]);
37652 return _wrap_new_SBMemoryRegionInfo__SWIG_3(L);
37662 _v = SWIG_lua_isnilstring(L,argv[0]);
37666 _v = lua_isnumber(L,argv[1]);
37670 _v = lua_isnumber(L,argv[2]);
37674 _v = lua_isnumber(L,argv[3]);
37678 _v = lua_isboolean(L,argv[4]);
37682 _v = lua_isboolean(L,argv[5]);
37685 return _wrap_new_SBMemoryRegionInfo__SWIG_2(L);
37694 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBMemoryRegionInfo'\n"
37700 lua_error(L);return 0;
37704 static int _wrap_SBMemoryRegionInfo_Clear(lua_State* L) {
37710 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::Clear",1,"lldb::SBMemoryRegionInfo *");
37712 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37722 lua_error(L);
37727 static int _wrap_SBMemoryRegionInfo_GetRegionBase(lua_State* L) {
37734 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetRegionBase",1,"lldb::SBMemoryRegionInfo *");
37736 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37741 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
37746 lua_error(L);
37751 static int _wrap_SBMemoryRegionInfo_GetRegionEnd(lua_State* L) {
37758 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetRegionEnd",1,"lldb::SBMemoryRegionInfo *");
37760 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37765 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
37770 lua_error(L);
37775 static int _wrap_SBMemoryRegionInfo_IsReadable(lua_State* L) {
37782 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsReadable",1,"lldb::SBMemoryRegionInfo *");
37784 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37789 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37794 lua_error(L);
37799 static int _wrap_SBMemoryRegionInfo_IsWritable(lua_State* L) {
37806 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsWritable",1,"lldb::SBMemoryRegionInfo *");
37808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37813 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37818 lua_error(L);
37823 static int _wrap_SBMemoryRegionInfo_IsExecutable(lua_State* L) {
37830 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsExecutable",1,"lldb::SBMemoryRegionInfo *");
37832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37837 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37842 lua_error(L);
37847 static int _wrap_SBMemoryRegionInfo_IsMapped(lua_State* L) {
37854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsMapped",1,"lldb::SBMemoryRegionInfo *");
37856 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37861 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37866 lua_error(L);
37871 static int _wrap_SBMemoryRegionInfo_GetName(lua_State* L) {
37878 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetName",1,"lldb::SBMemoryRegionInfo *");
37880 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37885 lua_pushstring(L,(const char *)result); SWIG_arg++;
37890 lua_error(L);
37895 static int _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList(lua_State* L) {
37902 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::HasDirtyMemoryPageList",1,"lldb::SBMemoryRegionInfo *");
37904 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37909 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
37914 lua_error(L);
37919 static int _wrap_SBMemoryRegionInfo_GetNumDirtyPages(lua_State* L) {
37926 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetNumDirtyPages",1,"lldb::SBMemoryRegionInfo *");
37928 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37933 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
37938 lua_error(L);
37943 static int _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex(lua_State* L) {
37951 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDirtyPageAddressAtIndex",1,"lldb::SBMemoryRegionInfo *");
37952 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDirtyPageAddressAtIndex",2,"uint32_t");
37954 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37958 arg2 = (uint32_t)lua_tointeger(L, 2);
37960 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
37965 lua_error(L);
37970 static int _wrap_SBMemoryRegionInfo_GetPageSize(lua_State* L) {
37977 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetPageSize",1,"lldb::SBMemoryRegionInfo *");
37979 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
37984 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
37989 lua_error(L);
37994 static int _wrap_SBMemoryRegionInfo___eq(lua_State* L) {
38002 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::operator ==",1,"lldb::SBMemoryRegionInfo const *");
38003 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::operator ==",2,"lldb::SBMemoryRegionInfo const &");
38005 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38010 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38015 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38020 lua_error(L);
38025 static int _wrap_SBMemoryRegionInfo_GetDescription(lua_State* L) {
38033 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDescription",1,"lldb::SBMemoryRegionInfo *");
38034 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDescription",2,"lldb::SBStream &");
38036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
38046 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38051 lua_error(L);
38056 static int _wrap_SBMemoryRegionInfo___tostring(lua_State* L) {
38063 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::__repr__",1,"lldb::SBMemoryRegionInfo *");
38065 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38070 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
38075 lua_error(L);
38084 static int _proxy__wrap_new_SBMemoryRegionInfo(lua_State *L) {
38085 assert(lua_istable(L,1));
38086 lua_pushcfunction(L,_wrap_new_SBMemoryRegionInfo);
38087 assert(!lua_isnil(L,-1));
38088 lua_replace(L,1); /* replace our table with real constructor */
38089 lua_call(L,lua_gettop(L)-1,1);
38144 static int _wrap_new_SBMemoryRegionInfoList__SWIG_0(lua_State* L) {
38151 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,1); SWIG_arg++;
38156 lua_error(L);
38161 static int _wrap_new_SBMemoryRegionInfoList__SWIG_1(lua_State* L) {
38168 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::SBMemoryRegionInfoList",1,"lldb::SBMemoryRegionInfoList const &");
38170 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38175 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,1); SWIG_arg++;
38180 lua_error(L);
38185 static int _wrap_new_SBMemoryRegionInfoList(lua_State* L) {
38191 argc = lua_gettop(L);
38193 return _wrap_new_SBMemoryRegionInfoList__SWIG_0(L);
38199 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBMemoryRegionInfoList, SWIG_POINTER_NO_NULL)) {
38206 return _wrap_new_SBMemoryRegionInfoList__SWIG_1(L);
38210 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBMemoryRegionInfoList'\n"
38214 lua_error(L);return 0;
38218 static int _wrap_SBMemoryRegionInfoList_GetSize(lua_State* L) {
38225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetSize",1,"lldb::SBMemoryRegionInfoList const *");
38227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38232 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
38237 lua_error(L);
38242 static int _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress(lua_State* L) {
38251 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionContainingAddress",1,"lldb::SBMemoryRegionInfoList *");
38252 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionContainingAddress",2,"lldb::addr_t");
38253 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionContainingAddress",3,"lldb::SBMemoryRegionInfo &");
38255 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38259 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
38261 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38266 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38271 lua_error(L);
38276 static int _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex(lua_State* L) {
38285 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionAtIndex",1,"lldb::SBMemoryRegionInfoList *");
38286 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionAtIndex",2,"uint32_t");
38287 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionAtIndex",3,"lldb::SBMemoryRegionInfo &");
38289 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38293 arg2 = (uint32_t)lua_tointeger(L, 2);
38295 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38300 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38305 lua_error(L);
38310 static int _wrap_SBMemoryRegionInfoList_Append__SWIG_0(lua_State* L) {
38317 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",1,"lldb::SBMemoryRegionInfoList *");
38318 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",2,"lldb::SBMemoryRegionInfo &");
38320 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38325 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
38335 lua_error(L);
38340 static int _wrap_SBMemoryRegionInfoList_Append__SWIG_1(lua_State* L) {
38347 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",1,"lldb::SBMemoryRegionInfoList *");
38348 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",2,"lldb::SBMemoryRegionInfoList &");
38350 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38355 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38365 lua_error(L);
38370 static int _wrap_SBMemoryRegionInfoList_Append(lua_State* L) {
38376 argc = lua_gettop(L);
38381 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBMemoryRegionInfoList, 0)) {
38390 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBMemoryRegionInfo, SWIG_POINTER_NO_NULL)) {
38397 return _wrap_SBMemoryRegionInfoList_Append__SWIG_0(L);
38405 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBMemoryRegionInfoList, 0)) {
38414 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBMemoryRegionInfoList, SWIG_POINTER_NO_NULL)) {
38421 return _wrap_SBMemoryRegionInfoList_Append__SWIG_1(L);
38426 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBMemoryRegionInfoList_Append'\n"
38430 lua_error(L);return 0;
38434 static int _wrap_SBMemoryRegionInfoList_Clear(lua_State* L) {
38440 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Clear",1,"lldb::SBMemoryRegionInfoList *");
38442 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){
38452 lua_error(L);
38461 static int _proxy__wrap_new_SBMemoryRegionInfoList(lua_State *L) {
38462 assert(lua_istable(L,1));
38463 lua_pushcfunction(L,_wrap_new_SBMemoryRegionInfoList);
38464 assert(!lua_isnil(L,-1));
38465 lua_replace(L,1); /* replace our table with real constructor */
38466 lua_call(L,lua_gettop(L)-1,1);
38509 static int _wrap_new_SBModule__SWIG_0(lua_State* L) {
38516 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
38521 lua_error(L);
38526 static int _wrap_new_SBModule__SWIG_1(lua_State* L) {
38533 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModule::SBModule",1,"lldb::SBModule const &");
38535 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38540 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
38545 lua_error(L);
38550 static int _wrap_new_SBModule__SWIG_2(lua_State* L) {
38557 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModule::SBModule",1,"lldb::SBModuleSpec const &");
38559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
38564 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
38569 lua_error(L);
38574 static int _wrap_new_SBModule__SWIG_3(lua_State* L) {
38582 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModule::SBModule",1,"lldb::SBProcess &");
38583 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::SBModule",2,"lldb::addr_t");
38585 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
38589 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
38591 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
38596 lua_error(L);
38601 static int _wrap_new_SBModule(lua_State* L) {
38607 argc = lua_gettop(L);
38609 return _wrap_new_SBModule__SWIG_0(L);
38615 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, SWIG_POINTER_NO_NULL)) {
38622 return _wrap_new_SBModule__SWIG_1(L);
38629 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpec, SWIG_POINTER_NO_NULL)) {
38636 return _wrap_new_SBModule__SWIG_2(L);
38643 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, SWIG_POINTER_NO_NULL)) {
38651 _v = lua_isnumber(L,argv[1]);
38654 return _wrap_new_SBModule__SWIG_3(L);
38659 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBModule'\n"
38665 lua_error(L);return 0;
38669 static int _wrap_SBModule_IsValid(lua_State* L) {
38676 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::IsValid",1,"lldb::SBModule const *");
38678 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38683 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38688 lua_error(L);
38693 static int _wrap_SBModule_Clear(lua_State* L) {
38699 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::Clear",1,"lldb::SBModule *");
38701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38711 lua_error(L);
38716 static int _wrap_SBModule_IsFileBacked(lua_State* L) {
38723 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::IsFileBacked",1,"lldb::SBModule const *");
38725 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38730 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38735 lua_error(L);
38740 static int _wrap_SBModule_GetFileSpec(lua_State* L) {
38747 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetFileSpec",1,"lldb::SBModule const *");
38749 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38756 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
38762 lua_error(L);
38767 static int _wrap_SBModule_GetPlatformFileSpec(lua_State* L) {
38774 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetPlatformFileSpec",1,"lldb::SBModule const *");
38776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38783 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
38789 lua_error(L);
38794 static int _wrap_SBModule_SetPlatformFileSpec(lua_State* L) {
38802 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::SetPlatformFileSpec",1,"lldb::SBModule *");
38803 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::SetPlatformFileSpec",2,"lldb::SBFileSpec const &");
38805 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
38815 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38820 lua_error(L);
38825 static int _wrap_SBModule_GetRemoteInstallFileSpec(lua_State* L) {
38832 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetRemoteInstallFileSpec",1,"lldb::SBModule *");
38834 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38841 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
38847 lua_error(L);
38852 static int _wrap_SBModule_SetRemoteInstallFileSpec(lua_State* L) {
38860 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::SetRemoteInstallFileSpec",1,"lldb::SBModule *");
38861 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::SetRemoteInstallFileSpec",2,"lldb::SBFileSpec &");
38863 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38868 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
38873 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
38878 lua_error(L);
38883 static int _wrap_SBModule_GetByteOrder(lua_State* L) {
38890 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetByteOrder",1,"lldb::SBModule *");
38892 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38897 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
38902 lua_error(L);
38907 static int _wrap_SBModule_GetAddressByteSize(lua_State* L) {
38914 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetAddressByteSize",1,"lldb::SBModule *");
38916 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38921 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
38926 lua_error(L);
38931 static int _wrap_SBModule_GetTriple(lua_State* L) {
38938 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTriple",1,"lldb::SBModule *");
38940 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38945 lua_pushstring(L,(const char *)result); SWIG_arg++;
38950 lua_error(L);
38955 static int _wrap_SBModule_GetUUIDBytes(lua_State* L) {
38962 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetUUIDBytes",1,"lldb::SBModule const *");
38964 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38969 SWIG_NewPointerObj(L,result,SWIGTYPE_p_unsigned_char,0); SWIG_arg++;
38974 lua_error(L);
38979 static int _wrap_SBModule_GetUUIDString(lua_State* L) {
38986 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetUUIDString",1,"lldb::SBModule const *");
38988 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
38993 lua_pushstring(L,(const char *)result); SWIG_arg++;
38998 lua_error(L);
39003 static int _wrap_SBModule___eq(lua_State* L) {
39011 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::operator ==",1,"lldb::SBModule const *");
39012 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::operator ==",2,"lldb::SBModule const &");
39014 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39019 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModule,0))){
39024 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
39029 lua_error(L);
39034 static int _wrap_SBModule_FindSection(lua_State* L) {
39042 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSection",1,"lldb::SBModule *");
39043 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSection",2,"char const *");
39045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39049 arg2 = (char *)lua_tostring(L, 2);
39053 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
39059 lua_error(L);
39064 static int _wrap_SBModule_ResolveFileAddress(lua_State* L) {
39072 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::ResolveFileAddress",1,"lldb::SBModule *");
39073 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::ResolveFileAddress",2,"lldb::addr_t");
39075 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39079 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
39083 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
39089 lua_error(L);
39094 static int _wrap_SBModule_ResolveSymbolContextForAddress(lua_State* L) {
39103 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::ResolveSymbolContextForAddress",1,"lldb::SBModule *");
39104 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::ResolveSymbolContextForAddress",2,"lldb::SBAddress const &");
39105 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::ResolveSymbolContextForAddress",3,"uint32_t");
39107 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
39116 arg3 = (uint32_t)lua_tointeger(L, 3);
39120 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
39126 lua_error(L);
39131 static int _wrap_SBModule_GetDescription(lua_State* L) {
39139 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetDescription",1,"lldb::SBModule *");
39140 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::GetDescription",2,"lldb::SBStream &");
39142 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39147 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
39152 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
39157 lua_error(L);
39162 static int _wrap_SBModule_GetNumCompileUnits(lua_State* L) {
39169 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetNumCompileUnits",1,"lldb::SBModule *");
39171 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39176 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
39181 lua_error(L);
39186 static int _wrap_SBModule_GetCompileUnitAtIndex(lua_State* L) {
39194 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetCompileUnitAtIndex",1,"lldb::SBModule *");
39195 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetCompileUnitAtIndex",2,"uint32_t");
39197 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39201 arg2 = (uint32_t)lua_tointeger(L, 2);
39205 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++;
39211 lua_error(L);
39216 static int _wrap_SBModule_FindCompileUnits(lua_State* L) {
39224 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindCompileUnits",1,"lldb::SBModule *");
39225 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::FindCompileUnits",2,"lldb::SBFileSpec const &");
39227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39232 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
39239 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
39245 lua_error(L);
39250 static int _wrap_SBModule_GetNumSymbols(lua_State* L) {
39257 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetNumSymbols",1,"lldb::SBModule *");
39259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39264 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
39269 lua_error(L);
39274 static int _wrap_SBModule_GetSymbolAtIndex(lua_State* L) {
39282 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetSymbolAtIndex",1,"lldb::SBModule *");
39283 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetSymbolAtIndex",2,"size_t");
39285 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39289 arg2 = (size_t)lua_tointeger(L, 2);
39293 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
39299 lua_error(L);
39304 static int _wrap_SBModule_FindSymbol__SWIG_0(lua_State* L) {
39313 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbol",1,"lldb::SBModule *");
39314 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbol",2,"char const *");
39315 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::FindSymbol",3,"lldb::SymbolType");
39317 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39321 arg2 = (char *)lua_tostring(L, 2);
39322 arg3 = (lldb::SymbolType)lua_tointeger(L, 3);
39326 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
39332 lua_error(L);
39337 static int _wrap_SBModule_FindSymbol__SWIG_1(lua_State* L) {
39345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbol",1,"lldb::SBModule *");
39346 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbol",2,"char const *");
39348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39352 arg2 = (char *)lua_tostring(L, 2);
39356 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
39362 lua_error(L);
39367 static int _wrap_SBModule_FindSymbol(lua_State* L) {
39373 argc = lua_gettop(L);
39378 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39386 _v = SWIG_lua_isnilstring(L,argv[1]);
39389 return _wrap_SBModule_FindSymbol__SWIG_1(L);
39397 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39405 _v = SWIG_lua_isnilstring(L,argv[1]);
39409 _v = lua_isnumber(L,argv[2]);
39412 return _wrap_SBModule_FindSymbol__SWIG_0(L);
39418 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_FindSymbol'\n"
39422 lua_error(L);return 0;
39426 static int _wrap_SBModule_FindSymbols__SWIG_0(lua_State* L) {
39435 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbols",1,"lldb::SBModule *");
39436 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbols",2,"char const *");
39437 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::FindSymbols",3,"lldb::SymbolType");
39439 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39443 arg2 = (char *)lua_tostring(L, 2);
39444 arg3 = (lldb::SymbolType)lua_tointeger(L, 3);
39448 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
39454 lua_error(L);
39459 static int _wrap_SBModule_FindSymbols__SWIG_1(lua_State* L) {
39467 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbols",1,"lldb::SBModule *");
39468 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbols",2,"char const *");
39470 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39474 arg2 = (char *)lua_tostring(L, 2);
39478 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
39484 lua_error(L);
39489 static int _wrap_SBModule_FindSymbols(lua_State* L) {
39495 argc = lua_gettop(L);
39500 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39508 _v = SWIG_lua_isnilstring(L,argv[1]);
39511 return _wrap_SBModule_FindSymbols__SWIG_1(L);
39519 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39527 _v = SWIG_lua_isnilstring(L,argv[1]);
39531 _v = lua_isnumber(L,argv[2]);
39534 return _wrap_SBModule_FindSymbols__SWIG_0(L);
39540 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_FindSymbols'\n"
39544 lua_error(L);return 0;
39548 static int _wrap_SBModule_GetNumSections(lua_State* L) {
39555 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetNumSections",1,"lldb::SBModule *");
39557 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39562 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
39567 lua_error(L);
39572 static int _wrap_SBModule_GetSectionAtIndex(lua_State* L) {
39580 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetSectionAtIndex",1,"lldb::SBModule *");
39581 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetSectionAtIndex",2,"size_t");
39583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39587 arg2 = (size_t)lua_tointeger(L, 2);
39591 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
39597 lua_error(L);
39602 static int _wrap_SBModule_FindFunctions__SWIG_0(lua_State* L) {
39611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFunctions",1,"lldb::SBModule *");
39612 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindFunctions",2,"char const *");
39613 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::FindFunctions",3,"uint32_t");
39615 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39619 arg2 = (char *)lua_tostring(L, 2);
39620 arg3 = (uint32_t)lua_tointeger(L, 3);
39624 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
39630 lua_error(L);
39635 static int _wrap_SBModule_FindFunctions__SWIG_1(lua_State* L) {
39643 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFunctions",1,"lldb::SBModule *");
39644 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindFunctions",2,"char const *");
39646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39650 arg2 = (char *)lua_tostring(L, 2);
39654 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
39660 lua_error(L);
39665 static int _wrap_SBModule_FindFunctions(lua_State* L) {
39671 argc = lua_gettop(L);
39676 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39684 _v = SWIG_lua_isnilstring(L,argv[1]);
39687 return _wrap_SBModule_FindFunctions__SWIG_1(L);
39695 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39703 _v = SWIG_lua_isnilstring(L,argv[1]);
39707 _v = lua_isnumber(L,argv[2]);
39710 return _wrap_SBModule_FindFunctions__SWIG_0(L);
39716 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_FindFunctions'\n"
39720 lua_error(L);return 0;
39724 static int _wrap_SBModule_FindGlobalVariables(lua_State* L) {
39734 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",1,"lldb::SBModule *");
39735 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",2,"lldb::SBTarget &");
39736 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",3,"char const *");
39737 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",4,"uint32_t");
39739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
39748 arg3 = (char *)lua_tostring(L, 3);
39749 arg4 = (uint32_t)lua_tointeger(L, 4);
39753 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
39759 lua_error(L);
39764 static int _wrap_SBModule_FindFirstGlobalVariable(lua_State* L) {
39773 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFirstGlobalVariable",1,"lldb::SBModule *");
39774 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::FindFirstGlobalVariable",2,"lldb::SBTarget &");
39775 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBModule::FindFirstGlobalVariable",3,"char const *");
39777 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
39786 arg3 = (char *)lua_tostring(L, 3);
39790 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
39796 lua_error(L);
39801 static int _wrap_SBModule_FindFirstType(lua_State* L) {
39809 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFirstType",1,"lldb::SBModule *");
39810 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindFirstType",2,"char const *");
39812 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39816 arg2 = (char *)lua_tostring(L, 2);
39820 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
39826 lua_error(L);
39831 static int _wrap_SBModule_FindTypes(lua_State* L) {
39839 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindTypes",1,"lldb::SBModule *");
39840 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindTypes",2,"char const *");
39842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39846 arg2 = (char *)lua_tostring(L, 2);
39850 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
39856 lua_error(L);
39861 static int _wrap_SBModule_GetTypeByID(lua_State* L) {
39869 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTypeByID",1,"lldb::SBModule *");
39870 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetTypeByID",2,"lldb::user_id_t");
39872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39876 arg2 = (lldb::user_id_t)lua_tointeger(L, 2);
39880 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
39886 lua_error(L);
39891 static int _wrap_SBModule_GetBasicType(lua_State* L) {
39899 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetBasicType",1,"lldb::SBModule *");
39900 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetBasicType",2,"lldb::BasicType");
39902 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39906 arg2 = (lldb::BasicType)lua_tointeger(L, 2);
39910 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
39916 lua_error(L);
39921 static int _wrap_SBModule_GetTypes__SWIG_0(lua_State* L) {
39929 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTypes",1,"lldb::SBModule *");
39930 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetTypes",2,"uint32_t");
39932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39936 arg2 = (uint32_t)lua_tointeger(L, 2);
39940 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
39946 lua_error(L);
39951 static int _wrap_SBModule_GetTypes__SWIG_1(lua_State* L) {
39958 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTypes",1,"lldb::SBModule *");
39960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
39967 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
39973 lua_error(L);
39978 static int _wrap_SBModule_GetTypes(lua_State* L) {
39984 argc = lua_gettop(L);
39989 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
39996 return _wrap_SBModule_GetTypes__SWIG_1(L);
40003 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, 0)) {
40011 _v = lua_isnumber(L,argv[1]);
40014 return _wrap_SBModule_GetTypes__SWIG_0(L);
40019 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_GetTypes'\n"
40023 lua_error(L);return 0;
40027 static int _wrap_SBModule_GetVersion(lua_State* L) {
40036 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetVersion",1,"lldb::SBModule *");
40038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
40047 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
40052 lua_newtable(L);
40055 lua_pushinteger(L, arg2[i - 1]);
40056 lua_seti(L, -2, i);
40065 lua_error(L);
40070 static int _wrap_SBModule_GetSymbolFileSpec(lua_State* L) {
40077 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetSymbolFileSpec",1,"lldb::SBModule const *");
40079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
40086 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
40092 lua_error(L);
40097 static int _wrap_SBModule_GetObjectFileHeaderAddress(lua_State* L) {
40104 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetObjectFileHeaderAddress",1,"lldb::SBModule const *");
40106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
40113 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
40119 lua_error(L);
40124 static int _wrap_SBModule_GetObjectFileEntryPointAddress(lua_State* L) {
40131 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetObjectFileEntryPointAddress",1,"lldb::SBModule const *");
40133 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
40140 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
40146 lua_error(L);
40151 static int _wrap_SBModule_GetNumberAllocatedModules(lua_State* L) {
40158 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
40163 lua_error(L);
40168 static int _wrap_SBModule_GarbageCollectAllocatedModules(lua_State* L) {
40179 lua_error(L);
40184 static int _wrap_SBModule___tostring(lua_State* L) {
40191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::__repr__",1,"lldb::SBModule *");
40193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){
40198 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
40203 lua_error(L);
40212 static int _proxy__wrap_new_SBModule(lua_State *L) {
40213 assert(lua_istable(L,1));
40214 lua_pushcfunction(L,_wrap_new_SBModule);
40215 assert(!lua_isnil(L,-1));
40216 lua_replace(L,1); /* replace our table with real constructor */
40217 lua_call(L,lua_gettop(L)-1,1);
40299 static int _wrap_new_SBModuleSpec__SWIG_0(lua_State* L) {
40306 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++;
40311 lua_error(L);
40316 static int _wrap_new_SBModuleSpec__SWIG_1(lua_State* L) {
40323 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SBModuleSpec",1,"lldb::SBModuleSpec const &");
40325 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40330 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++;
40335 lua_error(L);
40340 static int _wrap_new_SBModuleSpec(lua_State* L) {
40346 argc = lua_gettop(L);
40348 return _wrap_new_SBModuleSpec__SWIG_0(L);
40354 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpec, SWIG_POINTER_NO_NULL)) {
40361 return _wrap_new_SBModuleSpec__SWIG_1(L);
40365 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBModuleSpec'\n"
40369 lua_error(L);return 0;
40373 static int _wrap_SBModuleSpec_IsValid(lua_State* L) {
40380 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::IsValid",1,"lldb::SBModuleSpec const *");
40382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40387 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
40392 lua_error(L);
40397 static int _wrap_SBModuleSpec_Clear(lua_State* L) {
40403 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::Clear",1,"lldb::SBModuleSpec *");
40405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40415 lua_error(L);
40420 static int _wrap_SBModuleSpec_GetFileSpec(lua_State* L) {
40427 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetFileSpec",1,"lldb::SBModuleSpec *");
40429 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40436 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
40442 lua_error(L);
40447 static int _wrap_SBModuleSpec_SetFileSpec(lua_State* L) {
40454 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetFileSpec",1,"lldb::SBModuleSpec *");
40455 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetFileSpec",2,"lldb::SBFileSpec const &");
40457 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
40472 lua_error(L);
40477 static int _wrap_SBModuleSpec_GetPlatformFileSpec(lua_State* L) {
40484 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetPlatformFileSpec",1,"lldb::SBModuleSpec *");
40486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40493 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
40499 lua_error(L);
40504 static int _wrap_SBModuleSpec_SetPlatformFileSpec(lua_State* L) {
40511 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetPlatformFileSpec",1,"lldb::SBModuleSpec *");
40512 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetPlatformFileSpec",2,"lldb::SBFileSpec const &");
40514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40519 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
40529 lua_error(L);
40534 static int _wrap_SBModuleSpec_GetSymbolFileSpec(lua_State* L) {
40541 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetSymbolFileSpec",1,"lldb::SBModuleSpec *");
40543 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
40556 lua_error(L);
40561 static int _wrap_SBModuleSpec_SetSymbolFileSpec(lua_State* L) {
40568 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetSymbolFileSpec",1,"lldb::SBModuleSpec *");
40569 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetSymbolFileSpec",2,"lldb::SBFileSpec const &");
40571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
40586 lua_error(L);
40591 static int _wrap_SBModuleSpec_GetObjectName(lua_State* L) {
40598 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetObjectName",1,"lldb::SBModuleSpec *");
40600 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40605 lua_pushstring(L,(const char *)result); SWIG_arg++;
40610 lua_error(L);
40615 static int _wrap_SBModuleSpec_SetObjectName(lua_State* L) {
40622 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectName",1,"lldb::SBModuleSpec *");
40623 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectName",2,"char const *");
40625 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40629 arg2 = (char *)lua_tostring(L, 2);
40636 lua_error(L);
40641 static int _wrap_SBModuleSpec_GetTriple(lua_State* L) {
40648 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetTriple",1,"lldb::SBModuleSpec *");
40650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40655 lua_pushstring(L,(const char *)result); SWIG_arg++;
40660 lua_error(L);
40665 static int _wrap_SBModuleSpec_SetTriple(lua_State* L) {
40672 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetTriple",1,"lldb::SBModuleSpec *");
40673 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetTriple",2,"char const *");
40675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40679 arg2 = (char *)lua_tostring(L, 2);
40686 lua_error(L);
40691 static int _wrap_SBModuleSpec_GetUUIDBytes(lua_State* L) {
40698 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetUUIDBytes",1,"lldb::SBModuleSpec *");
40700 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40705 SWIG_NewPointerObj(L,result,SWIGTYPE_p_unsigned_char,0); SWIG_arg++;
40710 lua_error(L);
40715 static int _wrap_SBModuleSpec_GetUUIDLength(lua_State* L) {
40722 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetUUIDLength",1,"lldb::SBModuleSpec *");
40724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40729 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
40734 lua_error(L);
40739 static int _wrap_SBModuleSpec_SetUUIDBytes(lua_State* L) {
40748 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetUUIDBytes",1,"lldb::SBModuleSpec *");
40749 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetUUIDBytes",2,"uint8_t const *");
40750 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModuleSpec::SetUUIDBytes",3,"size_t");
40752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_unsigned_char,0))){
40761 arg3 = (size_t)lua_tointeger(L, 3);
40763 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
40768 lua_error(L);
40773 static int _wrap_SBModuleSpec_GetObjectOffset(lua_State* L) {
40780 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetObjectOffset",1,"lldb::SBModuleSpec *");
40782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40787 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
40792 lua_error(L);
40797 static int _wrap_SBModuleSpec_SetObjectOffset(lua_State* L) {
40804 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectOffset",1,"lldb::SBModuleSpec *");
40805 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectOffset",2,"uint64_t");
40807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40811 arg2 = (uint64_t)lua_tointeger(L, 2);
40818 lua_error(L);
40823 static int _wrap_SBModuleSpec_GetObjectSize(lua_State* L) {
40830 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetObjectSize",1,"lldb::SBModuleSpec *");
40832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40837 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
40842 lua_error(L);
40847 static int _wrap_SBModuleSpec_SetObjectSize(lua_State* L) {
40854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectSize",1,"lldb::SBModuleSpec *");
40855 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectSize",2,"uint64_t");
40857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40861 arg2 = (uint64_t)lua_tointeger(L, 2);
40868 lua_error(L);
40873 static int _wrap_SBModuleSpec_GetDescription(lua_State* L) {
40881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetDescription",1,"lldb::SBModuleSpec *");
40882 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::GetDescription",2,"lldb::SBStream &");
40884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40889 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
40894 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
40899 lua_error(L);
40904 static int _wrap_SBModuleSpec___tostring(lua_State* L) {
40911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::__repr__",1,"lldb::SBModuleSpec *");
40913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){
40918 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
40923 lua_error(L);
40932 static int _proxy__wrap_new_SBModuleSpec(lua_State *L) {
40933 assert(lua_istable(L,1));
40934 lua_pushcfunction(L,_wrap_new_SBModuleSpec);
40935 assert(!lua_isnil(L,-1));
40936 lua_replace(L,1); /* replace our table with real constructor */
40937 lua_call(L,lua_gettop(L)-1,1);
40997 static int _wrap_new_SBModuleSpecList__SWIG_0(lua_State* L) {
41004 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++;
41009 lua_error(L);
41014 static int _wrap_new_SBModuleSpecList__SWIG_1(lua_State* L) {
41021 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::SBModuleSpecList",1,"lldb::SBModuleSpecList const &");
41023 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41028 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++;
41033 lua_error(L);
41038 static int _wrap_new_SBModuleSpecList(lua_State* L) {
41044 argc = lua_gettop(L);
41046 return _wrap_new_SBModuleSpecList__SWIG_0(L);
41052 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpecList, SWIG_POINTER_NO_NULL)) {
41059 return _wrap_new_SBModuleSpecList__SWIG_1(L);
41063 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBModuleSpecList'\n"
41067 lua_error(L);return 0;
41071 static int _wrap_SBModuleSpecList_GetModuleSpecifications(lua_State* L) {
41078 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetModuleSpecifications",1,"char const *");
41079 arg1 = (char *)lua_tostring(L, 1);
41083 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++;
41089 lua_error(L);
41094 static int _wrap_SBModuleSpecList_Append__SWIG_0(lua_State* L) {
41101 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",1,"lldb::SBModuleSpecList *");
41102 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",2,"lldb::SBModuleSpec const &");
41104 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41109 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){
41119 lua_error(L);
41124 static int _wrap_SBModuleSpecList_Append__SWIG_1(lua_State* L) {
41131 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",1,"lldb::SBModuleSpecList *");
41132 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",2,"lldb::SBModuleSpecList const &");
41134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41149 lua_error(L);
41154 static int _wrap_SBModuleSpecList_Append(lua_State* L) {
41160 argc = lua_gettop(L);
41165 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpecList, 0)) {
41174 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpec, SWIG_POINTER_NO_NULL)) {
41181 return _wrap_SBModuleSpecList_Append__SWIG_0(L);
41189 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpecList, 0)) {
41198 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpecList, SWIG_POINTER_NO_NULL)) {
41205 return _wrap_SBModuleSpecList_Append__SWIG_1(L);
41210 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModuleSpecList_Append'\n"
41214 lua_error(L);return 0;
41218 static int _wrap_SBModuleSpecList_FindFirstMatchingSpec(lua_State* L) {
41226 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::FindFirstMatchingSpec",1,"lldb::SBModuleSpecList *");
41227 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::FindFirstMatchingSpec",2,"lldb::SBModuleSpec const &");
41229 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41234 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){
41241 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++;
41247 lua_error(L);
41252 static int _wrap_SBModuleSpecList_FindMatchingSpecs(lua_State* L) {
41260 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::FindMatchingSpecs",1,"lldb::SBModuleSpecList *");
41261 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::FindMatchingSpecs",2,"lldb::SBModuleSpec const &");
41263 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){
41275 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++;
41281 lua_error(L);
41286 static int _wrap_SBModuleSpecList_GetSize(lua_State* L) {
41293 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetSize",1,"lldb::SBModuleSpecList *");
41295 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41300 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
41305 lua_error(L);
41310 static int _wrap_SBModuleSpecList_GetSpecAtIndex(lua_State* L) {
41318 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetSpecAtIndex",1,"lldb::SBModuleSpecList *");
41319 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::GetSpecAtIndex",2,"size_t");
41321 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41325 arg2 = (size_t)lua_tointeger(L, 2);
41329 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++;
41335 lua_error(L);
41340 static int _wrap_SBModuleSpecList_GetDescription(lua_State* L) {
41348 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetDescription",1,"lldb::SBModuleSpecList *");
41349 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::GetDescription",2,"lldb::SBStream &");
41351 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
41361 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
41366 lua_error(L);
41371 static int _wrap_SBModuleSpecList___tostring(lua_State* L) {
41378 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::__repr__",1,"lldb::SBModuleSpecList *");
41380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){
41385 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
41390 lua_error(L);
41399 static int _proxy__wrap_new_SBModuleSpecList(lua_State *L) {
41400 assert(lua_istable(L,1));
41401 lua_pushcfunction(L,_wrap_new_SBModuleSpecList);
41402 assert(!lua_isnil(L,-1));
41403 lua_replace(L,1); /* replace our table with real constructor */
41404 lua_call(L,lua_gettop(L)-1,1);
41451 static int _wrap_new_SBPlatformConnectOptions__SWIG_0(lua_State* L) {
41458 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SBPlatformConnectOptions",1,"char const *");
41459 arg1 = (char *)lua_tostring(L, 1);
41461 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformConnectOptions,1); SWIG_arg++;
41466 lua_error(L);
41471 static int _wrap_new_SBPlatformConnectOptions__SWIG_1(lua_State* L) {
41478 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SBPlatformConnectOptions",1,"lldb::SBPlatformConnectOptions const &");
41480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41485 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformConnectOptions,1); SWIG_arg++;
41490 lua_error(L);
41495 static int _wrap_new_SBPlatformConnectOptions(lua_State* L) {
41501 argc = lua_gettop(L);
41506 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBPlatformConnectOptions, SWIG_POINTER_NO_NULL)) {
41513 return _wrap_new_SBPlatformConnectOptions__SWIG_1(L);
41519 _v = SWIG_lua_isnilstring(L,argv[0]);
41522 return _wrap_new_SBPlatformConnectOptions__SWIG_0(L);
41526 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBPlatformConnectOptions'\n"
41530 lua_error(L);return 0;
41534 static int _wrap_SBPlatformConnectOptions_GetURL(lua_State* L) {
41541 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::GetURL",1,"lldb::SBPlatformConnectOptions *");
41543 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41548 lua_pushstring(L,(const char *)result); SWIG_arg++;
41553 lua_error(L);
41558 static int _wrap_SBPlatformConnectOptions_SetURL(lua_State* L) {
41565 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetURL",1,"lldb::SBPlatformConnectOptions *");
41566 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetURL",2,"char const *");
41568 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41572 arg2 = (char *)lua_tostring(L, 2);
41579 lua_error(L);
41584 static int _wrap_SBPlatformConnectOptions_GetRsyncEnabled(lua_State* L) {
41591 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::GetRsyncEnabled",1,"lldb::SBPlatformConnectOptions *");
41593 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41598 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
41603 lua_error(L);
41608 static int _wrap_SBPlatformConnectOptions_EnableRsync(lua_State* L) {
41617 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",1,"lldb::SBPlatformConnectOptions *");
41618 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",2,"char const *");
41619 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",3,"char const *");
41620 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",4,"bool");
41622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41626 arg2 = (char *)lua_tostring(L, 2);
41627 arg3 = (char *)lua_tostring(L, 3);
41628 arg4 = (lua_toboolean(L, 4)!=0);
41635 lua_error(L);
41640 static int _wrap_SBPlatformConnectOptions_DisableRsync(lua_State* L) {
41646 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::DisableRsync",1,"lldb::SBPlatformConnectOptions *");
41648 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41658 lua_error(L);
41663 static int _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory(lua_State* L) {
41670 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::GetLocalCacheDirectory",1,"lldb::SBPlatformConnectOptions *");
41672 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41677 lua_pushstring(L,(const char *)result); SWIG_arg++;
41682 lua_error(L);
41687 static int _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory(lua_State* L) {
41694 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetLocalCacheDirectory",1,"lldb::SBPlatformConnectOptions *");
41695 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetLocalCacheDirectory",2,"char const *");
41697 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
41701 arg2 = (char *)lua_tostring(L, 2);
41708 lua_error(L);
41717 static int _proxy__wrap_new_SBPlatformConnectOptions(lua_State *L) {
41718 assert(lua_istable(L,1));
41719 lua_pushcfunction(L,_wrap_new_SBPlatformConnectOptions);
41720 assert(!lua_isnil(L,-1));
41721 lua_replace(L,1); /* replace our table with real constructor */
41722 lua_call(L,lua_gettop(L)-1,1);
41767 static int _wrap_new_SBPlatformShellCommand__SWIG_0(lua_State* L) {
41775 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand",1,"char const *");
41776 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand",2,"char const *");
41777 arg1 = (char *)lua_tostring(L, 1);
41778 arg2 = (char *)lua_tostring(L, 2);
41780 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformShellCommand,1); SWIG_arg++;
41785 lua_error(L);
41790 static int _wrap_new_SBPlatformShellCommand__SWIG_1(lua_State* L) {
41797 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand",1,"char const *");
41798 arg1 = (char *)lua_tostring(L, 1);
41800 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformShellCommand,1); SWIG_arg++;
41805 lua_error(L);
41810 static int _wrap_new_SBPlatformShellCommand__SWIG_2(lua_State* L) {
41817 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand",1,"lldb::SBPlatformShellCommand const &");
41819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
41824 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformShellCommand,1); SWIG_arg++;
41829 lua_error(L);
41834 static int _wrap_new_SBPlatformShellCommand(lua_State* L) {
41840 argc = lua_gettop(L);
41845 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBPlatformShellCommand, SWIG_POINTER_NO_NULL)) {
41852 return _wrap_new_SBPlatformShellCommand__SWIG_2(L);
41858 _v = SWIG_lua_isnilstring(L,argv[0]);
41861 return _wrap_new_SBPlatformShellCommand__SWIG_1(L);
41867 _v = SWIG_lua_isnilstring(L,argv[0]);
41871 _v = SWIG_lua_isnilstring(L,argv[1]);
41874 return _wrap_new_SBPlatformShellCommand__SWIG_0(L);
41879 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBPlatformShellCommand'\n"
41884 lua_error(L);return 0;
41888 static int _wrap_SBPlatformShellCommand_Clear(lua_State* L) {
41894 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::Clear",1,"lldb::SBPlatformShellCommand *");
41896 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
41906 lua_error(L);
41911 static int _wrap_SBPlatformShellCommand_GetShell(lua_State* L) {
41918 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetShell",1,"lldb::SBPlatformShellCommand *");
41920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
41925 lua_pushstring(L,(const char *)result); SWIG_arg++;
41930 lua_error(L);
41935 static int _wrap_SBPlatformShellCommand_SetShell(lua_State* L) {
41942 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetShell",1,"lldb::SBPlatformShellCommand *");
41943 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetShell",2,"char const *");
41945 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
41949 arg2 = (char *)lua_tostring(L, 2);
41956 lua_error(L);
41961 static int _wrap_SBPlatformShellCommand_GetCommand(lua_State* L) {
41968 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetCommand",1,"lldb::SBPlatformShellCommand *");
41970 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
41975 lua_pushstring(L,(const char *)result); SWIG_arg++;
41980 lua_error(L);
41985 static int _wrap_SBPlatformShellCommand_SetCommand(lua_State* L) {
41992 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetCommand",1,"lldb::SBPlatformShellCommand *");
41993 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetCommand",2,"char const *");
41995 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
41999 arg2 = (char *)lua_tostring(L, 2);
42006 lua_error(L);
42011 static int _wrap_SBPlatformShellCommand_GetWorkingDirectory(lua_State* L) {
42018 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetWorkingDirectory",1,"lldb::SBPlatformShellCommand *");
42020 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42025 lua_pushstring(L,(const char *)result); SWIG_arg++;
42030 lua_error(L);
42035 static int _wrap_SBPlatformShellCommand_SetWorkingDirectory(lua_State* L) {
42042 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetWorkingDirectory",1,"lldb::SBPlatformShellCommand *");
42043 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetWorkingDirectory",2,"char const *");
42045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42049 arg2 = (char *)lua_tostring(L, 2);
42056 lua_error(L);
42061 static int _wrap_SBPlatformShellCommand_GetTimeoutSeconds(lua_State* L) {
42068 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetTimeoutSeconds",1,"lldb::SBPlatformShellCommand *");
42070 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42075 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
42080 lua_error(L);
42085 static int _wrap_SBPlatformShellCommand_SetTimeoutSeconds(lua_State* L) {
42092 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetTimeoutSeconds",1,"lldb::SBPlatformShellCommand *");
42093 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetTimeoutSeconds",2,"uint32_t");
42095 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42099 arg2 = (uint32_t)lua_tointeger(L, 2);
42106 lua_error(L);
42111 static int _wrap_SBPlatformShellCommand_GetSignal(lua_State* L) {
42118 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetSignal",1,"lldb::SBPlatformShellCommand *");
42120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42125 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
42130 lua_error(L);
42135 static int _wrap_SBPlatformShellCommand_GetStatus(lua_State* L) {
42142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetStatus",1,"lldb::SBPlatformShellCommand *");
42144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42149 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
42154 lua_error(L);
42159 static int _wrap_SBPlatformShellCommand_GetOutput(lua_State* L) {
42166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetOutput",1,"lldb::SBPlatformShellCommand *");
42168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42173 lua_pushstring(L,(const char *)result); SWIG_arg++;
42178 lua_error(L);
42187 static int _proxy__wrap_new_SBPlatformShellCommand(lua_State *L) {
42188 assert(lua_istable(L,1));
42189 lua_pushcfunction(L,_wrap_new_SBPlatformShellCommand);
42190 assert(!lua_isnil(L,-1));
42191 lua_replace(L,1); /* replace our table with real constructor */
42192 lua_call(L,lua_gettop(L)-1,1);
42242 static int _wrap_new_SBPlatform__SWIG_0(lua_State* L) {
42249 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
42254 lua_error(L);
42259 static int _wrap_new_SBPlatform__SWIG_1(lua_State* L) {
42266 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatform::SBPlatform",1,"char const *");
42267 arg1 = (char *)lua_tostring(L, 1);
42269 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
42274 lua_error(L);
42279 static int _wrap_new_SBPlatform__SWIG_2(lua_State* L) {
42286 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBPlatform::SBPlatform",1,"lldb::SBPlatform const &");
42288 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42293 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
42298 lua_error(L);
42303 static int _wrap_new_SBPlatform(lua_State* L) {
42309 argc = lua_gettop(L);
42311 return _wrap_new_SBPlatform__SWIG_0(L);
42317 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBPlatform, SWIG_POINTER_NO_NULL)) {
42324 return _wrap_new_SBPlatform__SWIG_2(L);
42330 _v = SWIG_lua_isnilstring(L,argv[0]);
42333 return _wrap_new_SBPlatform__SWIG_1(L);
42337 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBPlatform'\n"
42342 lua_error(L);return 0;
42346 static int _wrap_SBPlatform_GetHostPlatform(lua_State* L) {
42355 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
42361 lua_error(L);
42366 static int _wrap_SBPlatform_IsValid(lua_State* L) {
42373 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::IsValid",1,"lldb::SBPlatform const *");
42375 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42380 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
42385 lua_error(L);
42390 static int _wrap_SBPlatform_Clear(lua_State* L) {
42396 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Clear",1,"lldb::SBPlatform *");
42398 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42408 lua_error(L);
42413 static int _wrap_SBPlatform_GetWorkingDirectory(lua_State* L) {
42420 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetWorkingDirectory",1,"lldb::SBPlatform *");
42422 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42427 lua_pushstring(L,(const char *)result); SWIG_arg++;
42432 lua_error(L);
42437 static int _wrap_SBPlatform_SetWorkingDirectory(lua_State* L) {
42445 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetWorkingDirectory",1,"lldb::SBPlatform *");
42446 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetWorkingDirectory",2,"char const *");
42448 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42452 arg2 = (char *)lua_tostring(L, 2);
42454 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
42459 lua_error(L);
42464 static int _wrap_SBPlatform_GetName(lua_State* L) {
42471 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetName",1,"lldb::SBPlatform *");
42473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42478 lua_pushstring(L,(const char *)result); SWIG_arg++;
42483 lua_error(L);
42488 static int _wrap_SBPlatform_ConnectRemote(lua_State* L) {
42496 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::ConnectRemote",1,"lldb::SBPlatform *");
42497 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::ConnectRemote",2,"lldb::SBPlatformConnectOptions &");
42499 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){
42511 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
42517 lua_error(L);
42522 static int _wrap_SBPlatform_DisconnectRemote(lua_State* L) {
42528 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::DisconnectRemote",1,"lldb::SBPlatform *");
42530 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42540 lua_error(L);
42545 static int _wrap_SBPlatform_IsConnected(lua_State* L) {
42552 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::IsConnected",1,"lldb::SBPlatform *");
42554 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42559 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
42564 lua_error(L);
42569 static int _wrap_SBPlatform_GetTriple(lua_State* L) {
42576 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetTriple",1,"lldb::SBPlatform *");
42578 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42583 lua_pushstring(L,(const char *)result); SWIG_arg++;
42588 lua_error(L);
42593 static int _wrap_SBPlatform_GetHostname(lua_State* L) {
42600 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetHostname",1,"lldb::SBPlatform *");
42602 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42607 lua_pushstring(L,(const char *)result); SWIG_arg++;
42612 lua_error(L);
42617 static int _wrap_SBPlatform_GetOSBuild(lua_State* L) {
42624 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSBuild",1,"lldb::SBPlatform *");
42626 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42631 lua_pushstring(L,(const char *)result); SWIG_arg++;
42636 lua_error(L);
42641 static int _wrap_SBPlatform_GetOSDescription(lua_State* L) {
42648 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSDescription",1,"lldb::SBPlatform *");
42650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42655 lua_pushstring(L,(const char *)result); SWIG_arg++;
42660 lua_error(L);
42665 static int _wrap_SBPlatform_GetOSMajorVersion(lua_State* L) {
42672 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSMajorVersion",1,"lldb::SBPlatform *");
42674 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42679 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
42684 lua_error(L);
42689 static int _wrap_SBPlatform_GetOSMinorVersion(lua_State* L) {
42696 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSMinorVersion",1,"lldb::SBPlatform *");
42698 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42703 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
42708 lua_error(L);
42713 static int _wrap_SBPlatform_GetOSUpdateVersion(lua_State* L) {
42720 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSUpdateVersion",1,"lldb::SBPlatform *");
42722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42727 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
42732 lua_error(L);
42737 static int _wrap_SBPlatform_SetSDKRoot(lua_State* L) {
42744 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetSDKRoot",1,"lldb::SBPlatform *");
42745 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetSDKRoot",2,"char const *");
42747 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42751 arg2 = (char *)lua_tostring(L, 2);
42758 lua_error(L);
42763 static int _wrap_SBPlatform_Put(lua_State* L) {
42772 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Put",1,"lldb::SBPlatform *");
42773 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Put",2,"lldb::SBFileSpec &");
42774 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Put",3,"lldb::SBFileSpec &");
42776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
42786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
42793 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
42799 lua_error(L);
42804 static int _wrap_SBPlatform_Get(lua_State* L) {
42813 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Get",1,"lldb::SBPlatform *");
42814 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Get",2,"lldb::SBFileSpec &");
42815 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Get",3,"lldb::SBFileSpec &");
42817 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42822 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
42827 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
42834 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
42840 lua_error(L);
42845 static int _wrap_SBPlatform_Install(lua_State* L) {
42854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Install",1,"lldb::SBPlatform *");
42855 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Install",2,"lldb::SBFileSpec &");
42856 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Install",3,"lldb::SBFileSpec &");
42858 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42863 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
42868 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
42875 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
42881 lua_error(L);
42886 static int _wrap_SBPlatform_Run(lua_State* L) {
42894 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Run",1,"lldb::SBPlatform *");
42895 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Run",2,"lldb::SBPlatformShellCommand &");
42897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42902 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){
42909 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
42915 lua_error(L);
42920 static int _wrap_SBPlatform_Launch(lua_State* L) {
42928 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Launch",1,"lldb::SBPlatform *");
42929 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Launch",2,"lldb::SBLaunchInfo &");
42931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
42943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
42949 lua_error(L);
42954 static int _wrap_SBPlatform_Attach(lua_State* L) {
42965 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Attach",1,"lldb::SBPlatform *");
42966 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Attach",2,"lldb::SBAttachInfo &");
42967 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Attach",3,"lldb::SBDebugger const &");
42968 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBPlatform::Attach",4,"lldb::SBTarget &");
42969 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBPlatform::Attach",5,"lldb::SBError &");
42971 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
42976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAttachInfo,0))){
42981 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBDebugger,0))){
42986 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBTarget,0))){
42991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
42998 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
43004 lua_error(L);
43009 static int _wrap_SBPlatform_GetAllProcesses(lua_State* L) {
43017 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetAllProcesses",1,"lldb::SBPlatform *");
43018 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::GetAllProcesses",2,"lldb::SBError &");
43020 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43025 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
43032 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcessInfoList,1); SWIG_arg++;
43038 lua_error(L);
43043 static int _wrap_SBPlatform_Kill(lua_State* L) {
43051 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Kill",1,"lldb::SBPlatform *");
43052 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBPlatform::Kill",2,"lldb::pid_t const");
43054 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43058 arg2 = (lldb::pid_t const)lua_tointeger(L, 2);
43062 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
43068 lua_error(L);
43073 static int _wrap_SBPlatform_MakeDirectory__SWIG_0(lua_State* L) {
43082 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",1,"lldb::SBPlatform *");
43083 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",2,"char const *");
43084 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",3,"uint32_t");
43086 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43090 arg2 = (char *)lua_tostring(L, 2);
43091 arg3 = (uint32_t)lua_tointeger(L, 3);
43095 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
43101 lua_error(L);
43106 static int _wrap_SBPlatform_MakeDirectory__SWIG_1(lua_State* L) {
43114 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",1,"lldb::SBPlatform *");
43115 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",2,"char const *");
43117 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43121 arg2 = (char *)lua_tostring(L, 2);
43125 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
43131 lua_error(L);
43136 static int _wrap_SBPlatform_MakeDirectory(lua_State* L) {
43142 argc = lua_gettop(L);
43147 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBPlatform, 0)) {
43155 _v = SWIG_lua_isnilstring(L,argv[1]);
43158 return _wrap_SBPlatform_MakeDirectory__SWIG_1(L);
43166 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBPlatform, 0)) {
43174 _v = SWIG_lua_isnilstring(L,argv[1]);
43178 _v = lua_isnumber(L,argv[2]);
43181 return _wrap_SBPlatform_MakeDirectory__SWIG_0(L);
43187 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBPlatform_MakeDirectory'\n"
43191 lua_error(L);return 0;
43195 static int _wrap_SBPlatform_GetFilePermissions(lua_State* L) {
43203 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetFilePermissions",1,"lldb::SBPlatform *");
43204 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::GetFilePermissions",2,"char const *");
43206 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43210 arg2 = (char *)lua_tostring(L, 2);
43212 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
43217 lua_error(L);
43222 static int _wrap_SBPlatform_SetFilePermissions(lua_State* L) {
43231 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetFilePermissions",1,"lldb::SBPlatform *");
43232 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetFilePermissions",2,"char const *");
43233 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBPlatform::SetFilePermissions",3,"uint32_t");
43235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43239 arg2 = (char *)lua_tostring(L, 2);
43240 arg3 = (uint32_t)lua_tointeger(L, 3);
43244 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
43250 lua_error(L);
43255 static int _wrap_SBPlatform_GetUnixSignals(lua_State* L) {
43262 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetUnixSignals",1,"lldb::SBPlatform const *");
43264 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43271 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++;
43277 lua_error(L);
43282 static int _wrap_SBPlatform_GetEnvironment(lua_State* L) {
43289 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetEnvironment",1,"lldb::SBPlatform *");
43291 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43298 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++;
43304 lua_error(L);
43309 static int _wrap_SBPlatform_SetLocateModuleCallback(lua_State* L) {
43318 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetLocateModuleCallback",1,"lldb::SBPlatform *");
43319 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetLocateModuleCallback",2,"lldb::SBPlatformLocateModuleCallback");
43320 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBPlatform::SetLocateModuleCallback",3,"void *");
43322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){
43327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_p_void_r_q_const__lldb__SBModuleSpec_r_lldb__SBFileSpec_r_lldb__SBFileSpec__lldb__SBError,0))){
43331 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBPlatform_SetLocateModuleCallback");
43335 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
43341 lua_error(L);
43350 static int _proxy__wrap_new_SBPlatform(lua_State *L) {
43351 assert(lua_istable(L,1));
43352 lua_pushcfunction(L,_wrap_new_SBPlatform);
43353 assert(!lua_isnil(L,-1));
43354 lua_replace(L,1); /* replace our table with real constructor */
43355 lua_call(L,lua_gettop(L)-1,1);
43424 static int _wrap_new_SBProcess__SWIG_0(lua_State* L) {
43431 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
43436 lua_error(L);
43441 static int _wrap_new_SBProcess__SWIG_1(lua_State* L) {
43448 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::SBProcess",1,"lldb::SBProcess const &");
43450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43455 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
43460 lua_error(L);
43465 static int _wrap_new_SBProcess(lua_State* L) {
43471 argc = lua_gettop(L);
43473 return _wrap_new_SBProcess__SWIG_0(L);
43479 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, SWIG_POINTER_NO_NULL)) {
43486 return _wrap_new_SBProcess__SWIG_1(L);
43490 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBProcess'\n"
43494 lua_error(L);return 0;
43498 static int _wrap_SBProcess_GetBroadcasterClassName(lua_State* L) {
43505 lua_pushstring(L,(const char *)result); SWIG_arg++;
43510 lua_error(L);
43515 static int _wrap_SBProcess_GetPluginName(lua_State* L) {
43522 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetPluginName",1,"lldb::SBProcess *");
43524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43529 lua_pushstring(L,(const char *)result); SWIG_arg++;
43534 lua_error(L);
43539 static int _wrap_SBProcess_GetShortPluginName(lua_State* L) {
43546 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetShortPluginName",1,"lldb::SBProcess *");
43548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43553 lua_pushstring(L,(const char *)result); SWIG_arg++;
43558 lua_error(L);
43563 static int _wrap_SBProcess_Clear(lua_State* L) {
43569 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Clear",1,"lldb::SBProcess *");
43571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43581 lua_error(L);
43586 static int _wrap_SBProcess_IsValid(lua_State* L) {
43593 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::IsValid",1,"lldb::SBProcess const *");
43595 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43600 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
43605 lua_error(L);
43610 static int _wrap_SBProcess_GetTarget(lua_State* L) {
43617 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetTarget",1,"lldb::SBProcess const *");
43619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43626 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
43632 lua_error(L);
43637 static int _wrap_SBProcess_GetByteOrder(lua_State* L) {
43644 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetByteOrder",1,"lldb::SBProcess const *");
43646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43651 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
43656 lua_error(L);
43661 static int _wrap_SBProcess_PutSTDIN(lua_State* L) {
43670 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::PutSTDIN",1,"lldb::SBProcess *");
43672 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43677 arg2 = (char *)luaL_checklstring(L, 2, &arg3);
43680 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
43685 lua_error(L);
43690 static int _wrap_SBProcess_GetSTDOUT(lua_State* L) {
43699 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetSTDOUT",1,"lldb::SBProcess const *");
43701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43706 arg3 = luaL_checkinteger(L, 2);
43708 return luaL_error(L, "Positive integer expected");
43713 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
43715 lua_pop(L, 1); // Blow away the previous result
43717 lua_pushliteral(L, "");
43719 lua_pushlstring(L, (const char *)arg2, result);
43728 lua_error(L);
43733 static int _wrap_SBProcess_GetSTDERR(lua_State* L) {
43742 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetSTDERR",1,"lldb::SBProcess const *");
43744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43749 arg3 = luaL_checkinteger(L, 2);
43751 return luaL_error(L, "Positive integer expected");
43756 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
43758 lua_pop(L, 1); // Blow away the previous result
43760 lua_pushliteral(L, "");
43762 lua_pushlstring(L, (const char *)arg2, result);
43771 lua_error(L);
43776 static int _wrap_SBProcess_GetAsyncProfileData(lua_State* L) {
43785 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAsyncProfileData",1,"lldb::SBProcess const *");
43787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43792 arg3 = luaL_checkinteger(L, 2);
43794 return luaL_error(L, "Positive integer expected");
43799 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
43801 lua_pop(L, 1); // Blow away the previous result
43803 lua_pushliteral(L, "");
43805 lua_pushlstring(L, (const char *)arg2, result);
43814 lua_error(L);
43819 static int _wrap_SBProcess_ReportEventState__SWIG_0(lua_State* L) {
43828 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",1,"lldb::SBProcess const *");
43829 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",2,"lldb::SBEvent const &");
43830 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",3,"lldb::SBFile");
43832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43837 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
43842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBFile,0))){
43853 lua_error(L);
43858 static int _wrap_SBProcess_ReportEventState__SWIG_1(lua_State* L) {
43866 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",1,"lldb::SBProcess const *");
43867 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",2,"lldb::SBEvent const &");
43869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43874 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
43879 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 3, LUA_FILEHANDLE);
43883 return luaL_error(L, "Invalid file");
43892 lua_error(L);
43897 static int _wrap_SBProcess_ReportEventState(lua_State* L) {
43903 argc = lua_gettop(L);
43908 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
43917 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
43926 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
43933 return _wrap_SBProcess_ReportEventState__SWIG_0(L);
43942 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
43951 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBEvent, SWIG_POINTER_NO_NULL)) {
43959 _v = (lua_isuserdata(L, argv[2])) &&
43960 (luaL_testudata(L, argv[2], LUA_FILEHANDLE) != nullptr);
43963 return _wrap_SBProcess_ReportEventState__SWIG_1(L);
43969 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_ReportEventState'\n"
43973 lua_error(L);return 0;
43977 static int _wrap_SBProcess_AppendEventStateReport(lua_State* L) {
43985 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::AppendEventStateReport",1,"lldb::SBProcess *");
43986 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::AppendEventStateReport",2,"lldb::SBEvent const &");
43987 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::AppendEventStateReport",3,"lldb::SBCommandReturnObject &");
43989 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
43994 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
43999 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){
44009 lua_error(L);
44014 static int _wrap_SBProcess_RemoteAttachToProcessWithID(lua_State* L) {
44023 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::RemoteAttachToProcessWithID",1,"lldb::SBProcess *");
44024 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::RemoteAttachToProcessWithID",2,"lldb::pid_t");
44025 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::RemoteAttachToProcessWithID",3,"lldb::SBError &");
44027 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44031 arg2 = (lldb::pid_t)lua_tointeger(L, 2);
44033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
44038 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
44043 lua_error(L);
44048 static int _wrap_SBProcess_RemoteLaunch(lua_State* L) {
44064 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",1,"lldb::SBProcess *");
44065 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",4,"char const *");
44066 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",5,"char const *");
44067 if(!SWIG_lua_isnilstring(L,6)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",6,"char const *");
44068 if(!SWIG_lua_isnilstring(L,7)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",7,"char const *");
44069 if(!lua_isinteger(L,8)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",8,"uint32_t");
44070 if(!lua_isboolean(L,9)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",9,"bool");
44071 if(!lua_isuserdata(L,10)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",10,"lldb::SBError &");
44073 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44078 if (lua_istable(L, 2)) {
44079 size_t size = lua_rawlen(L, 2);
44083 lua_rawgeti(L, 2, i);
44084 if (!lua_isstring(L, -1)) {
44086 lua_pop(L, 1);
44087 return luaL_error(L, "List should only contain strings");
44089 arg2[j++] = (char *)lua_tostring(L, -1);
44090 lua_pop(L, 1);
44093 } else if (lua_isnil(L, 2)) {
44097 return luaL_error(L, "A list of strings expected");
44101 if (lua_istable(L, 3)) {
44102 size_t size = lua_rawlen(L, 3);
44106 lua_rawgeti(L, 3, i);
44107 if (!lua_isstring(L, -1)) {
44109 lua_pop(L, 1);
44110 return luaL_error(L, "List should only contain strings");
44112 arg3[j++] = (char *)lua_tostring(L, -1);
44113 lua_pop(L, 1);
44116 } else if (lua_isnil(L, 3)) {
44120 return luaL_error(L, "A list of strings expected");
44123 arg4 = (char *)lua_tostring(L, 4);
44124 arg5 = (char *)lua_tostring(L, 5);
44125 arg6 = (char *)lua_tostring(L, 6);
44126 arg7 = (char *)lua_tostring(L, 7);
44127 arg8 = (uint32_t)lua_tointeger(L, 8);
44128 arg9 = (lua_toboolean(L, 9)!=0);
44130 if (!SWIG_IsOK(SWIG_ConvertPtr(L,10,(void**)&arg10,SWIGTYPE_p_lldb__SBError,0))){
44135 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
44152 lua_error(L);
44157 static int _wrap_SBProcess_GetNumThreads(lua_State* L) {
44164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumThreads",1,"lldb::SBProcess *");
44166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44171 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44176 lua_error(L);
44181 static int _wrap_SBProcess_GetThreadAtIndex(lua_State* L) {
44189 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetThreadAtIndex",1,"lldb::SBProcess *");
44190 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetThreadAtIndex",2,"size_t");
44192 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44196 arg2 = (size_t)lua_tointeger(L, 2);
44200 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
44206 lua_error(L);
44211 static int _wrap_SBProcess_GetThreadByID(lua_State* L) {
44219 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetThreadByID",1,"lldb::SBProcess *");
44220 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetThreadByID",2,"lldb::tid_t");
44222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44226 arg2 = (lldb::tid_t)lua_tointeger(L, 2);
44230 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
44236 lua_error(L);
44241 static int _wrap_SBProcess_GetThreadByIndexID(lua_State* L) {
44249 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetThreadByIndexID",1,"lldb::SBProcess *");
44250 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetThreadByIndexID",2,"uint32_t");
44252 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44256 arg2 = (uint32_t)lua_tointeger(L, 2);
44260 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
44266 lua_error(L);
44271 static int _wrap_SBProcess_GetSelectedThread(lua_State* L) {
44278 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetSelectedThread",1,"lldb::SBProcess const *");
44280 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44287 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
44293 lua_error(L);
44298 static int _wrap_SBProcess_CreateOSPluginThread(lua_State* L) {
44307 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::CreateOSPluginThread",1,"lldb::SBProcess *");
44308 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::CreateOSPluginThread",2,"lldb::tid_t");
44309 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::CreateOSPluginThread",3,"lldb::addr_t");
44311 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44315 arg2 = (lldb::tid_t)lua_tointeger(L, 2);
44316 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
44320 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
44326 lua_error(L);
44331 static int _wrap_SBProcess_SetSelectedThread(lua_State* L) {
44339 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThread",1,"lldb::SBProcess *");
44340 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThread",2,"lldb::SBThread const &");
44342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){
44352 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
44357 lua_error(L);
44362 static int _wrap_SBProcess_SetSelectedThreadByID(lua_State* L) {
44370 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByID",1,"lldb::SBProcess *");
44371 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByID",2,"lldb::tid_t");
44373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44377 arg2 = (lldb::tid_t)lua_tointeger(L, 2);
44379 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
44384 lua_error(L);
44389 static int _wrap_SBProcess_SetSelectedThreadByIndexID(lua_State* L) {
44397 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByIndexID",1,"lldb::SBProcess *");
44398 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByIndexID",2,"uint32_t");
44400 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44404 arg2 = (uint32_t)lua_tointeger(L, 2);
44406 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
44411 lua_error(L);
44416 static int _wrap_SBProcess_GetNumQueues(lua_State* L) {
44423 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumQueues",1,"lldb::SBProcess *");
44425 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44430 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44435 lua_error(L);
44440 static int _wrap_SBProcess_GetQueueAtIndex(lua_State* L) {
44448 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetQueueAtIndex",1,"lldb::SBProcess *");
44449 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetQueueAtIndex",2,"size_t");
44451 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44455 arg2 = (size_t)lua_tointeger(L, 2);
44459 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++;
44465 lua_error(L);
44470 static int _wrap_SBProcess_GetState(lua_State* L) {
44477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetState",1,"lldb::SBProcess *");
44479 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44484 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44489 lua_error(L);
44494 static int _wrap_SBProcess_GetExitStatus(lua_State* L) {
44501 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExitStatus",1,"lldb::SBProcess *");
44503 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44508 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44513 lua_error(L);
44518 static int _wrap_SBProcess_GetExitDescription(lua_State* L) {
44525 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExitDescription",1,"lldb::SBProcess *");
44527 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44532 lua_pushstring(L,(const char *)result); SWIG_arg++;
44537 lua_error(L);
44542 static int _wrap_SBProcess_GetProcessID(lua_State* L) {
44549 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetProcessID",1,"lldb::SBProcess *");
44551 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44556 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44561 lua_error(L);
44566 static int _wrap_SBProcess_GetUniqueID(lua_State* L) {
44573 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetUniqueID",1,"lldb::SBProcess *");
44575 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44580 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44585 lua_error(L);
44590 static int _wrap_SBProcess_GetAddressByteSize(lua_State* L) {
44597 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAddressByteSize",1,"lldb::SBProcess const *");
44599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44604 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44609 lua_error(L);
44614 static int _wrap_SBProcess_Destroy(lua_State* L) {
44621 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Destroy",1,"lldb::SBProcess *");
44623 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44630 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44636 lua_error(L);
44641 static int _wrap_SBProcess_Continue(lua_State* L) {
44648 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Continue",1,"lldb::SBProcess *");
44650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44657 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44663 lua_error(L);
44668 static int _wrap_SBProcess_Stop(lua_State* L) {
44675 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Stop",1,"lldb::SBProcess *");
44677 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44684 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44690 lua_error(L);
44695 static int _wrap_SBProcess_Kill(lua_State* L) {
44702 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Kill",1,"lldb::SBProcess *");
44704 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44711 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44717 lua_error(L);
44722 static int _wrap_SBProcess_Detach__SWIG_0(lua_State* L) {
44729 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Detach",1,"lldb::SBProcess *");
44731 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44738 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44744 lua_error(L);
44749 static int _wrap_SBProcess_Detach__SWIG_1(lua_State* L) {
44757 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Detach",1,"lldb::SBProcess *");
44758 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBProcess::Detach",2,"bool");
44760 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44764 arg2 = (lua_toboolean(L, 2)!=0);
44768 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44774 lua_error(L);
44779 static int _wrap_SBProcess_Detach(lua_State* L) {
44785 argc = lua_gettop(L);
44790 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
44797 return _wrap_SBProcess_Detach__SWIG_0(L);
44804 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
44812 _v = lua_isboolean(L,argv[1]);
44815 return _wrap_SBProcess_Detach__SWIG_1(L);
44820 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_Detach'\n"
44824 lua_error(L);return 0;
44828 static int _wrap_SBProcess_Signal(lua_State* L) {
44836 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Signal",1,"lldb::SBProcess *");
44837 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::Signal",2,"int");
44839 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44843 arg2 = (int)lua_tointeger(L, 2);
44847 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
44853 lua_error(L);
44858 static int _wrap_SBProcess_GetUnixSignals(lua_State* L) {
44865 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetUnixSignals",1,"lldb::SBProcess *");
44867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44874 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++;
44880 lua_error(L);
44885 static int _wrap_SBProcess_SendAsyncInterrupt(lua_State* L) {
44891 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SendAsyncInterrupt",1,"lldb::SBProcess *");
44893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44903 lua_error(L);
44908 static int _wrap_SBProcess_GetStopID__SWIG_0(lua_State* L) {
44916 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStopID",1,"lldb::SBProcess *");
44917 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBProcess::GetStopID",2,"bool");
44919 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44923 arg2 = (lua_toboolean(L, 2)!=0);
44925 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44930 lua_error(L);
44935 static int _wrap_SBProcess_GetStopID__SWIG_1(lua_State* L) {
44942 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStopID",1,"lldb::SBProcess *");
44944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
44949 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
44954 lua_error(L);
44959 static int _wrap_SBProcess_GetStopID(lua_State* L) {
44965 argc = lua_gettop(L);
44970 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
44977 return _wrap_SBProcess_GetStopID__SWIG_1(L);
44984 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
44992 _v = lua_isboolean(L,argv[1]);
44995 return _wrap_SBProcess_GetStopID__SWIG_0(L);
45000 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_GetStopID'\n"
45004 lua_error(L);return 0;
45008 static int _wrap_SBProcess_GetStopEventForStopID(lua_State* L) {
45016 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStopEventForStopID",1,"lldb::SBProcess *");
45017 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetStopEventForStopID",2,"uint32_t");
45019 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45023 arg2 = (uint32_t)lua_tointeger(L, 2);
45027 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++;
45033 lua_error(L);
45038 static int _wrap_SBProcess_ForceScriptedState(lua_State* L) {
45045 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ForceScriptedState",1,"lldb::SBProcess *");
45046 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ForceScriptedState",2,"lldb::StateType");
45048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45052 arg2 = (lldb::StateType)lua_tointeger(L, 2);
45059 lua_error(L);
45064 static int _wrap_SBProcess_ReadMemory(lua_State* L) {
45075 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadMemory",1,"lldb::SBProcess *");
45076 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadMemory",2,"lldb::addr_t");
45077 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::ReadMemory",4,"lldb::SBError &");
45079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45083 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
45085 arg4 = luaL_checkinteger(L, 3);
45087 return luaL_error(L, "Positive integer expected");
45092 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
45097 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45099 lua_pop(L, 1); // Blow away the previous result
45101 lua_pushliteral(L, "");
45103 lua_pushlstring(L, (const char *)arg3, result);
45112 lua_error(L);
45117 static int _wrap_SBProcess_WriteMemory(lua_State* L) {
45128 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::WriteMemory",1,"lldb::SBProcess *");
45129 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::WriteMemory",2,"lldb::addr_t");
45130 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::WriteMemory",4,"lldb::SBError &");
45132 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45136 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
45138 arg3 = (void *)luaL_checklstring(L, 3, &arg4);
45141 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
45146 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45151 lua_error(L);
45156 static int _wrap_SBProcess_ReadCStringFromMemory(lua_State* L) {
45167 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadCStringFromMemory",1,"lldb::SBProcess *");
45168 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadCStringFromMemory",2,"lldb::addr_t");
45169 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::ReadCStringFromMemory",4,"lldb::SBError &");
45171 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45175 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
45177 arg4 = luaL_checkinteger(L, 3);
45179 return luaL_error(L, "Positive integer expected");
45184 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
45189 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45191 lua_pop(L, 1); // Blow away the previous result
45193 lua_pushliteral(L, "");
45195 lua_pushlstring(L, (const char *)arg3, result);
45204 lua_error(L);
45209 static int _wrap_SBProcess_ReadUnsignedFromMemory(lua_State* L) {
45219 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",1,"lldb::SBProcess *");
45220 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",2,"lldb::addr_t");
45221 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",3,"uint32_t");
45222 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",4,"lldb::SBError &");
45224 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45228 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
45229 arg3 = (uint32_t)lua_tointeger(L, 3);
45231 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
45236 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45241 lua_error(L);
45246 static int _wrap_SBProcess_ReadPointerFromMemory(lua_State* L) {
45255 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadPointerFromMemory",1,"lldb::SBProcess *");
45256 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadPointerFromMemory",2,"lldb::addr_t");
45257 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::ReadPointerFromMemory",3,"lldb::SBError &");
45259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45263 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
45265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
45270 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45275 lua_error(L);
45280 static int _wrap_SBProcess_FindRangesInMemory(lua_State* L) {
45293 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",1,"lldb::SBProcess *");
45294 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",2,"void const *");
45295 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",3,"uint64_t");
45296 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",4,"lldb::SBAddressRangeList const &");
45297 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",5,"uint32_t");
45298 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",6,"uint32_t");
45299 if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",7,"lldb::SBError &");
45301 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45305 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBProcess_FindRangesInMemory");
45306 arg3 = (uint64_t)lua_tointeger(L, 3);
45308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBAddressRangeList,0))){
45312 arg5 = (uint32_t)lua_tointeger(L, 5);
45313 arg6 = (uint32_t)lua_tointeger(L, 6);
45315 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBError,0))){
45322 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++;
45328 lua_error(L);
45333 static int _wrap_SBProcess_FindInMemory(lua_State* L) {
45345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",1,"lldb::SBProcess *");
45346 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",2,"void const *");
45347 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",3,"uint64_t");
45348 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",4,"lldb::SBAddressRange const &");
45349 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",5,"uint32_t");
45350 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",6,"lldb::SBError &");
45352 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45356 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBProcess_FindInMemory");
45357 arg3 = (uint64_t)lua_tointeger(L, 3);
45359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBAddressRange,0))){
45363 arg5 = (uint32_t)lua_tointeger(L, 5);
45365 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBError,0))){
45370 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45375 lua_error(L);
45380 static int _wrap_SBProcess_GetStateFromEvent(lua_State* L) {
45387 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStateFromEvent",1,"lldb::SBEvent const &");
45389 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45394 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45399 lua_error(L);
45404 static int _wrap_SBProcess_GetRestartedFromEvent(lua_State* L) {
45411 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetRestartedFromEvent",1,"lldb::SBEvent const &");
45413 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45418 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
45423 lua_error(L);
45428 static int _wrap_SBProcess_GetNumRestartedReasonsFromEvent(lua_State* L) {
45435 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumRestartedReasonsFromEvent",1,"lldb::SBEvent const &");
45437 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45442 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45447 lua_error(L);
45452 static int _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent(lua_State* L) {
45460 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetRestartedReasonAtIndexFromEvent",1,"lldb::SBEvent const &");
45461 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetRestartedReasonAtIndexFromEvent",2,"size_t");
45463 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45467 arg2 = (size_t)lua_tointeger(L, 2);
45469 lua_pushstring(L,(const char *)result); SWIG_arg++;
45474 lua_error(L);
45479 static int _wrap_SBProcess_GetProcessFromEvent(lua_State* L) {
45486 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetProcessFromEvent",1,"lldb::SBEvent const &");
45488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45495 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
45501 lua_error(L);
45506 static int _wrap_SBProcess_GetInterruptedFromEvent(lua_State* L) {
45513 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetInterruptedFromEvent",1,"lldb::SBEvent const &");
45515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45520 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
45525 lua_error(L);
45530 static int _wrap_SBProcess_GetStructuredDataFromEvent(lua_State* L) {
45537 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStructuredDataFromEvent",1,"lldb::SBEvent const &");
45539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45546 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
45552 lua_error(L);
45557 static int _wrap_SBProcess_EventIsProcessEvent(lua_State* L) {
45564 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::EventIsProcessEvent",1,"lldb::SBEvent const &");
45566 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45571 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
45576 lua_error(L);
45581 static int _wrap_SBProcess_EventIsStructuredDataEvent(lua_State* L) {
45588 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::EventIsStructuredDataEvent",1,"lldb::SBEvent const &");
45590 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
45595 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
45600 lua_error(L);
45605 static int _wrap_SBProcess_GetBroadcaster(lua_State* L) {
45612 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetBroadcaster",1,"lldb::SBProcess const *");
45614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45621 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
45627 lua_error(L);
45632 static int _wrap_SBProcess_GetBroadcasterClass(lua_State* L) {
45639 lua_pushstring(L,(const char *)result); SWIG_arg++;
45644 lua_error(L);
45649 static int _wrap_SBProcess_GetDescription(lua_State* L) {
45657 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetDescription",1,"lldb::SBProcess *");
45658 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::GetDescription",2,"lldb::SBStream &");
45660 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45665 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
45670 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
45675 lua_error(L);
45680 static int _wrap_SBProcess_GetExtendedCrashInformation(lua_State* L) {
45687 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExtendedCrashInformation",1,"lldb::SBProcess *");
45689 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45696 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
45702 lua_error(L);
45707 static int _wrap_SBProcess_GetNumSupportedHardwareWatchpoints(lua_State* L) {
45715 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumSupportedHardwareWatchpoints",1,"lldb::SBProcess const *");
45716 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::GetNumSupportedHardwareWatchpoints",2,"lldb::SBError &");
45718 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
45728 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45733 lua_error(L);
45738 static int _wrap_SBProcess_LoadImage__SWIG_0(lua_State* L) {
45747 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::LoadImage",1,"lldb::SBProcess *");
45748 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::LoadImage",2,"lldb::SBFileSpec &");
45749 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::LoadImage",3,"lldb::SBError &");
45751 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45756 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
45761 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
45766 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45771 lua_error(L);
45776 static int _wrap_SBProcess_LoadImage__SWIG_1(lua_State* L) {
45786 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::LoadImage",1,"lldb::SBProcess *");
45787 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::LoadImage",2,"lldb::SBFileSpec const &");
45788 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::LoadImage",3,"lldb::SBFileSpec const &");
45789 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::LoadImage",4,"lldb::SBError &");
45791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45796 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
45801 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
45806 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
45811 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45816 lua_error(L);
45821 static int _wrap_SBProcess_LoadImage(lua_State* L) {
45827 argc = lua_gettop(L);
45832 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
45841 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
45850 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
45857 return _wrap_SBProcess_LoadImage__SWIG_0(L);
45866 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
45875 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
45884 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
45893 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
45900 return _wrap_SBProcess_LoadImage__SWIG_1(L);
45907 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_LoadImage'\n"
45911 lua_error(L);return 0;
45915 static int _wrap_SBProcess_LoadImageUsingPaths(lua_State* L) {
45926 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",1,"lldb::SBProcess *");
45927 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",2,"lldb::SBFileSpec const &");
45928 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",3,"lldb::SBStringList &");
45929 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",4,"lldb::SBFileSpec &");
45930 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",5,"lldb::SBError &");
45932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
45942 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStringList,0))){
45947 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpec,0))){
45952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
45957 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
45962 lua_error(L);
45967 static int _wrap_SBProcess_UnloadImage(lua_State* L) {
45975 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::UnloadImage",1,"lldb::SBProcess *");
45976 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::UnloadImage",2,"uint32_t");
45978 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
45982 arg2 = (uint32_t)lua_tointeger(L, 2);
45986 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
45992 lua_error(L);
45997 static int _wrap_SBProcess_SendEventData(lua_State* L) {
46005 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SendEventData",1,"lldb::SBProcess *");
46006 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBProcess::SendEventData",2,"char const *");
46008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46012 arg2 = (char *)lua_tostring(L, 2);
46016 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
46022 lua_error(L);
46027 static int _wrap_SBProcess_GetNumExtendedBacktraceTypes(lua_State* L) {
46034 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumExtendedBacktraceTypes",1,"lldb::SBProcess *");
46036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46041 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
46046 lua_error(L);
46051 static int _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex(lua_State* L) {
46059 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExtendedBacktraceTypeAtIndex",1,"lldb::SBProcess *");
46060 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetExtendedBacktraceTypeAtIndex",2,"uint32_t");
46062 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46066 arg2 = (uint32_t)lua_tointeger(L, 2);
46068 lua_pushstring(L,(const char *)result); SWIG_arg++;
46073 lua_error(L);
46078 static int _wrap_SBProcess_GetHistoryThreads(lua_State* L) {
46086 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetHistoryThreads",1,"lldb::SBProcess *");
46087 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetHistoryThreads",2,"lldb::addr_t");
46089 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46093 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
46097 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++;
46103 lua_error(L);
46108 static int _wrap_SBProcess_IsInstrumentationRuntimePresent(lua_State* L) {
46116 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::IsInstrumentationRuntimePresent",1,"lldb::SBProcess *");
46117 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::IsInstrumentationRuntimePresent",2,"lldb::InstrumentationRuntimeType");
46119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46123 arg2 = (lldb::InstrumentationRuntimeType)lua_tointeger(L, 2);
46125 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
46130 lua_error(L);
46135 static int _wrap_SBProcess_SaveCore__SWIG_0(lua_State* L) {
46145 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SaveCore",1,"lldb::SBProcess *");
46146 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBProcess::SaveCore",2,"char const *");
46147 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBProcess::SaveCore",3,"char const *");
46148 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBProcess::SaveCore",4,"lldb::SaveCoreStyle");
46150 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46154 arg2 = (char *)lua_tostring(L, 2);
46155 arg3 = (char *)lua_tostring(L, 3);
46156 arg4 = (lldb::SaveCoreStyle)lua_tointeger(L, 4);
46160 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
46166 lua_error(L);
46171 static int _wrap_SBProcess_SaveCore__SWIG_1(lua_State* L) {
46179 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SaveCore",1,"lldb::SBProcess *");
46180 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBProcess::SaveCore",2,"char const *");
46182 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46186 arg2 = (char *)lua_tostring(L, 2);
46190 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
46196 lua_error(L);
46201 static int _wrap_SBProcess_SaveCore__SWIG_2(lua_State* L) {
46209 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SaveCore",1,"lldb::SBProcess *");
46210 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::SaveCore",2,"lldb::SBSaveCoreOptions &");
46212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46217 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){
46224 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
46230 lua_error(L);
46235 static int _wrap_SBProcess_SaveCore(lua_State* L) {
46241 argc = lua_gettop(L);
46246 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46255 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBSaveCoreOptions, SWIG_POINTER_NO_NULL)) {
46262 return _wrap_SBProcess_SaveCore__SWIG_2(L);
46270 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46278 _v = SWIG_lua_isnilstring(L,argv[1]);
46281 return _wrap_SBProcess_SaveCore__SWIG_1(L);
46289 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46297 _v = SWIG_lua_isnilstring(L,argv[1]);
46301 _v = SWIG_lua_isnilstring(L,argv[2]);
46305 _v = lua_isnumber(L,argv[3]);
46308 return _wrap_SBProcess_SaveCore__SWIG_0(L);
46315 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_SaveCore'\n"
46320 lua_error(L);return 0;
46324 static int _wrap_SBProcess_GetMemoryRegionInfo(lua_State* L) {
46333 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegionInfo",1,"lldb::SBProcess *");
46334 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegionInfo",2,"lldb::addr_t");
46335 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegionInfo",3,"lldb::SBMemoryRegionInfo &");
46337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46341 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
46343 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){
46350 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
46356 lua_error(L);
46361 static int _wrap_SBProcess_GetMemoryRegions(lua_State* L) {
46368 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegions",1,"lldb::SBProcess *");
46370 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46377 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,1); SWIG_arg++;
46383 lua_error(L);
46388 static int _wrap_SBProcess_GetProcessInfo(lua_State* L) {
46395 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetProcessInfo",1,"lldb::SBProcess *");
46397 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46404 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcessInfo,1); SWIG_arg++;
46410 lua_error(L);
46415 static int _wrap_SBProcess_GetCoreFile(lua_State* L) {
46422 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetCoreFile",1,"lldb::SBProcess *");
46424 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46431 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
46437 lua_error(L);
46442 static int _wrap_SBProcess_GetAddressMask__SWIG_0(lua_State* L) {
46451 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",1,"lldb::SBProcess *");
46452 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",2,"lldb::AddressMaskType");
46453 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",3,"lldb::AddressMaskRange");
46455 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46459 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2);
46460 arg3 = (lldb::AddressMaskRange)lua_tointeger(L, 3);
46462 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
46467 lua_error(L);
46472 static int _wrap_SBProcess_GetAddressMask__SWIG_1(lua_State* L) {
46480 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",1,"lldb::SBProcess *");
46481 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",2,"lldb::AddressMaskType");
46483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46487 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2);
46489 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
46494 lua_error(L);
46499 static int _wrap_SBProcess_GetAddressMask(lua_State* L) {
46505 argc = lua_gettop(L);
46510 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46518 _v = lua_isnumber(L,argv[1]);
46521 return _wrap_SBProcess_GetAddressMask__SWIG_1(L);
46529 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46537 _v = lua_isnumber(L,argv[1]);
46541 _v = lua_isnumber(L,argv[2]);
46544 return _wrap_SBProcess_GetAddressMask__SWIG_0(L);
46550 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_GetAddressMask'\n"
46554 lua_error(L);return 0;
46558 static int _wrap_SBProcess_SetAddressMask__SWIG_0(lua_State* L) {
46567 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",1,"lldb::SBProcess *");
46568 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",2,"lldb::AddressMaskType");
46569 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",3,"lldb::addr_t");
46570 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",4,"lldb::AddressMaskRange");
46572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46576 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2);
46577 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
46578 arg4 = (lldb::AddressMaskRange)lua_tointeger(L, 4);
46585 lua_error(L);
46590 static int _wrap_SBProcess_SetAddressMask__SWIG_1(lua_State* L) {
46598 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",1,"lldb::SBProcess *");
46599 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",2,"lldb::AddressMaskType");
46600 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",3,"lldb::addr_t");
46602 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46606 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2);
46607 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
46614 lua_error(L);
46619 static int _wrap_SBProcess_SetAddressMask(lua_State* L) {
46625 argc = lua_gettop(L);
46630 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46638 _v = lua_isnumber(L,argv[1]);
46642 _v = lua_isnumber(L,argv[2]);
46645 return _wrap_SBProcess_SetAddressMask__SWIG_1(L);
46654 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46662 _v = lua_isnumber(L,argv[1]);
46666 _v = lua_isnumber(L,argv[2]);
46670 _v = lua_isnumber(L,argv[3]);
46673 return _wrap_SBProcess_SetAddressMask__SWIG_0(L);
46680 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_SetAddressMask'\n"
46684 lua_error(L);return 0;
46688 static int _wrap_SBProcess_SetAddressableBits__SWIG_0(lua_State* L) {
46697 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",1,"lldb::SBProcess *");
46698 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",2,"lldb::AddressMaskType");
46699 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",3,"uint32_t");
46700 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",4,"lldb::AddressMaskRange");
46702 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46706 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2);
46707 arg3 = (uint32_t)lua_tointeger(L, 3);
46708 arg4 = (lldb::AddressMaskRange)lua_tointeger(L, 4);
46715 lua_error(L);
46720 static int _wrap_SBProcess_SetAddressableBits__SWIG_1(lua_State* L) {
46728 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",1,"lldb::SBProcess *");
46729 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",2,"lldb::AddressMaskType");
46730 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",3,"uint32_t");
46732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46736 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2);
46737 arg3 = (uint32_t)lua_tointeger(L, 3);
46744 lua_error(L);
46749 static int _wrap_SBProcess_SetAddressableBits(lua_State* L) {
46755 argc = lua_gettop(L);
46760 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46768 _v = lua_isnumber(L,argv[1]);
46772 _v = lua_isnumber(L,argv[2]);
46775 return _wrap_SBProcess_SetAddressableBits__SWIG_1(L);
46784 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46792 _v = lua_isnumber(L,argv[1]);
46796 _v = lua_isnumber(L,argv[2]);
46800 _v = lua_isnumber(L,argv[3]);
46803 return _wrap_SBProcess_SetAddressableBits__SWIG_0(L);
46810 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_SetAddressableBits'\n"
46814 lua_error(L);return 0;
46818 static int _wrap_SBProcess_FixAddress__SWIG_0(lua_State* L) {
46827 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FixAddress",1,"lldb::SBProcess *");
46828 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::FixAddress",2,"lldb::addr_t");
46829 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::FixAddress",3,"lldb::AddressMaskType");
46831 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46835 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
46836 arg3 = (lldb::AddressMaskType)lua_tointeger(L, 3);
46838 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
46843 lua_error(L);
46848 static int _wrap_SBProcess_FixAddress__SWIG_1(lua_State* L) {
46856 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FixAddress",1,"lldb::SBProcess *");
46857 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::FixAddress",2,"lldb::addr_t");
46859 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46863 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
46865 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
46870 lua_error(L);
46875 static int _wrap_SBProcess_FixAddress(lua_State* L) {
46881 argc = lua_gettop(L);
46886 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46894 _v = lua_isnumber(L,argv[1]);
46897 return _wrap_SBProcess_FixAddress__SWIG_1(L);
46905 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcess, 0)) {
46913 _v = lua_isnumber(L,argv[1]);
46917 _v = lua_isnumber(L,argv[2]);
46920 return _wrap_SBProcess_FixAddress__SWIG_0(L);
46926 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_FixAddress'\n"
46930 lua_error(L);return 0;
46934 static int _wrap_SBProcess_AllocateMemory(lua_State* L) {
46944 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",1,"lldb::SBProcess *");
46945 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",2,"size_t");
46946 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",3,"uint32_t");
46947 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",4,"lldb::SBError &");
46949 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46953 arg2 = (size_t)lua_tointeger(L, 2);
46954 arg3 = (uint32_t)lua_tointeger(L, 3);
46956 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
46961 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
46966 lua_error(L);
46971 static int _wrap_SBProcess_DeallocateMemory(lua_State* L) {
46979 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::DeallocateMemory",1,"lldb::SBProcess *");
46980 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::DeallocateMemory",2,"lldb::addr_t");
46982 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
46986 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
46990 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
46996 lua_error(L);
47001 static int _wrap_SBProcess_GetScriptedImplementation(lua_State* L) {
47008 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetScriptedImplementation",1,"lldb::SBProcess *");
47010 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
47017 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++;
47023 lua_error(L);
47028 static int _wrap_SBProcess_GetStatus(lua_State* L) {
47035 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStatus",1,"lldb::SBProcess *");
47036 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::GetStatus",2,"lldb::SBStream &");
47038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
47043 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
47053 lua_error(L);
47058 static int _wrap_SBProcess___tostring(lua_State* L) {
47065 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::__repr__",1,"lldb::SBProcess *");
47067 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){
47072 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
47077 lua_error(L);
47086 static int _proxy__wrap_new_SBProcess(lua_State *L) {
47087 assert(lua_istable(L,1));
47088 lua_pushcfunction(L,_wrap_new_SBProcess);
47089 assert(!lua_isnil(L,-1));
47090 lua_replace(L,1); /* replace our table with real constructor */
47091 lua_call(L,lua_gettop(L)-1,1);
47222 static int _wrap_new_SBProcessInfo__SWIG_0(lua_State* L) {
47229 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfo,1); SWIG_arg++;
47234 lua_error(L);
47239 static int _wrap_new_SBProcessInfo__SWIG_1(lua_State* L) {
47246 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::SBProcessInfo",1,"lldb::SBProcessInfo const &");
47248 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47253 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfo,1); SWIG_arg++;
47258 lua_error(L);
47263 static int _wrap_new_SBProcessInfo(lua_State* L) {
47269 argc = lua_gettop(L);
47271 return _wrap_new_SBProcessInfo__SWIG_0(L);
47277 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcessInfo, SWIG_POINTER_NO_NULL)) {
47284 return _wrap_new_SBProcessInfo__SWIG_1(L);
47288 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBProcessInfo'\n"
47292 lua_error(L);return 0;
47296 static int _wrap_SBProcessInfo_IsValid(lua_State* L) {
47303 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::IsValid",1,"lldb::SBProcessInfo const *");
47305 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47310 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47315 lua_error(L);
47320 static int _wrap_SBProcessInfo_GetName(lua_State* L) {
47327 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetName",1,"lldb::SBProcessInfo *");
47329 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47334 lua_pushstring(L,(const char *)result); SWIG_arg++;
47339 lua_error(L);
47344 static int _wrap_SBProcessInfo_GetExecutableFile(lua_State* L) {
47351 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetExecutableFile",1,"lldb::SBProcessInfo *");
47353 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47360 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
47366 lua_error(L);
47371 static int _wrap_SBProcessInfo_GetProcessID(lua_State* L) {
47378 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetProcessID",1,"lldb::SBProcessInfo *");
47380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47385 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47390 lua_error(L);
47395 static int _wrap_SBProcessInfo_GetUserID(lua_State* L) {
47402 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetUserID",1,"lldb::SBProcessInfo *");
47404 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47409 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47414 lua_error(L);
47419 static int _wrap_SBProcessInfo_GetGroupID(lua_State* L) {
47426 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetGroupID",1,"lldb::SBProcessInfo *");
47428 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47433 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47438 lua_error(L);
47443 static int _wrap_SBProcessInfo_UserIDIsValid(lua_State* L) {
47450 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::UserIDIsValid",1,"lldb::SBProcessInfo *");
47452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47457 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47462 lua_error(L);
47467 static int _wrap_SBProcessInfo_GroupIDIsValid(lua_State* L) {
47474 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GroupIDIsValid",1,"lldb::SBProcessInfo *");
47476 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47481 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47486 lua_error(L);
47491 static int _wrap_SBProcessInfo_GetEffectiveUserID(lua_State* L) {
47498 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetEffectiveUserID",1,"lldb::SBProcessInfo *");
47500 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47505 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47510 lua_error(L);
47515 static int _wrap_SBProcessInfo_GetEffectiveGroupID(lua_State* L) {
47522 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetEffectiveGroupID",1,"lldb::SBProcessInfo *");
47524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47529 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47534 lua_error(L);
47539 static int _wrap_SBProcessInfo_EffectiveUserIDIsValid(lua_State* L) {
47546 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::EffectiveUserIDIsValid",1,"lldb::SBProcessInfo *");
47548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47553 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47558 lua_error(L);
47563 static int _wrap_SBProcessInfo_EffectiveGroupIDIsValid(lua_State* L) {
47570 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::EffectiveGroupIDIsValid",1,"lldb::SBProcessInfo *");
47572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47577 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47582 lua_error(L);
47587 static int _wrap_SBProcessInfo_GetParentProcessID(lua_State* L) {
47594 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetParentProcessID",1,"lldb::SBProcessInfo *");
47596 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47601 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47606 lua_error(L);
47611 static int _wrap_SBProcessInfo_GetTriple(lua_State* L) {
47618 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetTriple",1,"lldb::SBProcessInfo *");
47620 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47625 lua_pushstring(L,(const char *)result); SWIG_arg++;
47630 lua_error(L);
47639 static int _proxy__wrap_new_SBProcessInfo(lua_State *L) {
47640 assert(lua_istable(L,1));
47641 lua_pushcfunction(L,_wrap_new_SBProcessInfo);
47642 assert(!lua_isnil(L,-1));
47643 lua_replace(L,1); /* replace our table with real constructor */
47644 lua_call(L,lua_gettop(L)-1,1);
47696 static int _wrap_new_SBProcessInfoList__SWIG_0(lua_State* L) {
47703 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfoList,1); SWIG_arg++;
47708 lua_error(L);
47713 static int _wrap_new_SBProcessInfoList__SWIG_1(lua_State* L) {
47720 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::SBProcessInfoList",1,"lldb::SBProcessInfoList const &");
47722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){
47727 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfoList,1); SWIG_arg++;
47732 lua_error(L);
47737 static int _wrap_new_SBProcessInfoList(lua_State* L) {
47743 argc = lua_gettop(L);
47745 return _wrap_new_SBProcessInfoList__SWIG_0(L);
47751 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBProcessInfoList, SWIG_POINTER_NO_NULL)) {
47758 return _wrap_new_SBProcessInfoList__SWIG_1(L);
47762 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBProcessInfoList'\n"
47766 lua_error(L);return 0;
47770 static int _wrap_SBProcessInfoList_GetSize(lua_State* L) {
47777 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::GetSize",1,"lldb::SBProcessInfoList const *");
47779 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){
47784 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
47789 lua_error(L);
47794 static int _wrap_SBProcessInfoList_GetProcessInfoAtIndex(lua_State* L) {
47803 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::GetProcessInfoAtIndex",1,"lldb::SBProcessInfoList *");
47804 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcessInfoList::GetProcessInfoAtIndex",2,"uint32_t");
47805 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcessInfoList::GetProcessInfoAtIndex",3,"lldb::SBProcessInfo &");
47807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){
47811 arg2 = (uint32_t)lua_tointeger(L, 2);
47813 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBProcessInfo,0))){
47818 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47823 lua_error(L);
47828 static int _wrap_SBProcessInfoList_Clear(lua_State* L) {
47834 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::Clear",1,"lldb::SBProcessInfoList *");
47836 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){
47846 lua_error(L);
47855 static int _proxy__wrap_new_SBProcessInfoList(lua_State *L) {
47856 assert(lua_istable(L,1));
47857 lua_pushcfunction(L,_wrap_new_SBProcessInfoList);
47858 assert(!lua_isnil(L,-1));
47859 lua_replace(L,1); /* replace our table with real constructor */
47860 lua_call(L,lua_gettop(L)-1,1);
47901 static int _wrap_new_SBQueue__SWIG_0(lua_State* L) {
47908 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++;
47913 lua_error(L);
47918 static int _wrap_new_SBQueue__SWIG_1(lua_State* L) {
47925 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBQueue::SBQueue",1,"lldb::SBQueue const &");
47927 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
47932 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++;
47937 lua_error(L);
47942 static int _wrap_new_SBQueue(lua_State* L) {
47948 argc = lua_gettop(L);
47950 return _wrap_new_SBQueue__SWIG_0(L);
47956 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBQueue, SWIG_POINTER_NO_NULL)) {
47963 return _wrap_new_SBQueue__SWIG_1(L);
47967 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBQueue'\n"
47971 lua_error(L);return 0;
47975 static int _wrap_SBQueue_IsValid(lua_State* L) {
47982 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::IsValid",1,"lldb::SBQueue const *");
47984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
47989 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
47994 lua_error(L);
47999 static int _wrap_SBQueue_Clear(lua_State* L) {
48005 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::Clear",1,"lldb::SBQueue *");
48007 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48017 lua_error(L);
48022 static int _wrap_SBQueue_GetProcess(lua_State* L) {
48029 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetProcess",1,"lldb::SBQueue *");
48031 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48038 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
48044 lua_error(L);
48049 static int _wrap_SBQueue_GetQueueID(lua_State* L) {
48056 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetQueueID",1,"lldb::SBQueue const *");
48058 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48063 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48068 lua_error(L);
48073 static int _wrap_SBQueue_GetName(lua_State* L) {
48080 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetName",1,"lldb::SBQueue const *");
48082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48087 lua_pushstring(L,(const char *)result); SWIG_arg++;
48092 lua_error(L);
48097 static int _wrap_SBQueue_GetIndexID(lua_State* L) {
48104 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetIndexID",1,"lldb::SBQueue const *");
48106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48111 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48116 lua_error(L);
48121 static int _wrap_SBQueue_GetNumThreads(lua_State* L) {
48128 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetNumThreads",1,"lldb::SBQueue *");
48130 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48135 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48140 lua_error(L);
48145 static int _wrap_SBQueue_GetThreadAtIndex(lua_State* L) {
48153 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetThreadAtIndex",1,"lldb::SBQueue *");
48154 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBQueue::GetThreadAtIndex",2,"uint32_t");
48156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48160 arg2 = (uint32_t)lua_tointeger(L, 2);
48164 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
48170 lua_error(L);
48175 static int _wrap_SBQueue_GetNumPendingItems(lua_State* L) {
48182 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetNumPendingItems",1,"lldb::SBQueue *");
48184 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48189 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48194 lua_error(L);
48199 static int _wrap_SBQueue_GetPendingItemAtIndex(lua_State* L) {
48207 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetPendingItemAtIndex",1,"lldb::SBQueue *");
48208 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBQueue::GetPendingItemAtIndex",2,"uint32_t");
48210 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48214 arg2 = (uint32_t)lua_tointeger(L, 2);
48218 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBQueueItem,1); SWIG_arg++;
48224 lua_error(L);
48229 static int _wrap_SBQueue_GetNumRunningItems(lua_State* L) {
48236 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetNumRunningItems",1,"lldb::SBQueue *");
48238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48243 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48248 lua_error(L);
48253 static int _wrap_SBQueue_GetKind(lua_State* L) {
48260 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetKind",1,"lldb::SBQueue *");
48262 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){
48267 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48272 lua_error(L);
48281 static int _proxy__wrap_new_SBQueue(lua_State *L) {
48282 assert(lua_istable(L,1));
48283 lua_pushcfunction(L,_wrap_new_SBQueue);
48284 assert(!lua_isnil(L,-1));
48285 lua_replace(L,1); /* replace our table with real constructor */
48286 lua_call(L,lua_gettop(L)-1,1);
48336 static int _wrap_new_SBQueueItem(lua_State* L) {
48343 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBQueueItem,1); SWIG_arg++;
48348 lua_error(L);
48353 static int _wrap_SBQueueItem_IsValid(lua_State* L) {
48360 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::IsValid",1,"lldb::SBQueueItem const *");
48362 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48367 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
48372 lua_error(L);
48377 static int _wrap_SBQueueItem_Clear(lua_State* L) {
48383 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::Clear",1,"lldb::SBQueueItem *");
48385 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48395 lua_error(L);
48400 static int _wrap_SBQueueItem_GetKind(lua_State* L) {
48407 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::GetKind",1,"lldb::SBQueueItem const *");
48409 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48414 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48419 lua_error(L);
48424 static int _wrap_SBQueueItem_SetKind(lua_State* L) {
48431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::SetKind",1,"lldb::SBQueueItem *");
48432 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBQueueItem::SetKind",2,"lldb::QueueItemKind");
48434 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48438 arg2 = (lldb::QueueItemKind)lua_tointeger(L, 2);
48445 lua_error(L);
48450 static int _wrap_SBQueueItem_GetAddress(lua_State* L) {
48457 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::GetAddress",1,"lldb::SBQueueItem const *");
48459 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48466 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
48472 lua_error(L);
48477 static int _wrap_SBQueueItem_SetAddress(lua_State* L) {
48485 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::SetAddress",1,"lldb::SBQueueItem *");
48486 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBQueueItem::SetAddress",2,"lldb::SBAddress");
48488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48493 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
48504 lua_error(L);
48509 static int _wrap_SBQueueItem_GetExtendedBacktraceThread(lua_State* L) {
48517 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::GetExtendedBacktraceThread",1,"lldb::SBQueueItem *");
48518 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBQueueItem::GetExtendedBacktraceThread",2,"char const *");
48520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){
48524 arg2 = (char *)lua_tostring(L, 2);
48528 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
48534 lua_error(L);
48543 static int _proxy__wrap_new_SBQueueItem(lua_State *L) {
48544 assert(lua_istable(L,1));
48545 lua_pushcfunction(L,_wrap_new_SBQueueItem);
48546 assert(!lua_isnil(L,-1));
48547 lua_replace(L,1); /* replace our table with real constructor */
48548 lua_call(L,lua_gettop(L)-1,1);
48593 static int _wrap_SBReproducer_Capture(lua_State* L) {
48600 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBReproducer::Capture",1,"char const *");
48601 arg1 = (char *)lua_tostring(L, 1);
48603 lua_pushstring(L,(const char *)result); SWIG_arg++;
48608 lua_error(L);
48613 static int _wrap_SBReproducer_PassiveReplay(lua_State* L) {
48620 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBReproducer::PassiveReplay",1,"char const *");
48621 arg1 = (char *)lua_tostring(L, 1);
48623 lua_pushstring(L,(const char *)result); SWIG_arg++;
48628 lua_error(L);
48633 static int _wrap_SBReproducer_SetAutoGenerate(lua_State* L) {
48640 if(!lua_isboolean(L,1)) SWIG_fail_arg("lldb::SBReproducer::SetAutoGenerate",1,"bool");
48641 arg1 = (lua_toboolean(L, 1)!=0);
48643 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
48648 lua_error(L);
48653 static int _wrap_SBReproducer_SetWorkingDirectory(lua_State* L) {
48659 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBReproducer::SetWorkingDirectory",1,"char const *");
48660 arg1 = (char *)lua_tostring(L, 1);
48667 lua_error(L);
48672 static int _wrap_new_SBReproducer(lua_State* L) {
48679 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBReproducer,1); SWIG_arg++;
48684 lua_error(L);
48693 static int _proxy__wrap_new_SBReproducer(lua_State *L) {
48694 assert(lua_istable(L,1));
48695 lua_pushcfunction(L,_wrap_new_SBReproducer);
48696 assert(!lua_isnil(L,-1));
48697 lua_replace(L,1); /* replace our table with real constructor */
48698 lua_call(L,lua_gettop(L)-1,1);
48740 static int _wrap_new_SBScriptObject__SWIG_0(lua_State* L) {
48748 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::SBScriptObject",1,"lldb::ScriptObjectPtr const");
48749 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBScriptObject::SBScriptObject",2,"lldb::ScriptLanguage");
48750 arg1=(lldb::ScriptObjectPtr)SWIG_MustGetPtr(L,1,0,0,1,"new_SBScriptObject");
48751 arg2 = (lldb::ScriptLanguage)lua_tointeger(L, 2);
48753 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++;
48758 lua_error(L);
48763 static int _wrap_new_SBScriptObject__SWIG_1(lua_State* L) {
48770 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBScriptObject::SBScriptObject",1,"lldb::SBScriptObject const &");
48772 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){
48777 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++;
48782 lua_error(L);
48787 static int _wrap_new_SBScriptObject(lua_State* L) {
48793 argc = lua_gettop(L);
48798 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBScriptObject, SWIG_POINTER_NO_NULL)) {
48805 return _wrap_new_SBScriptObject__SWIG_1(L);
48812 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, 0, 0)) {
48820 _v = lua_isnumber(L,argv[1]);
48823 return _wrap_new_SBScriptObject__SWIG_0(L);
48828 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBScriptObject'\n"
48832 lua_error(L);return 0;
48836 static int _wrap_SBScriptObject_IsValid(lua_State* L) {
48843 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::IsValid",1,"lldb::SBScriptObject const *");
48845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){
48850 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
48855 lua_error(L);
48860 static int _wrap_SBScriptObject_GetPointer(lua_State* L) {
48867 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::GetPointer",1,"lldb::SBScriptObject const *");
48869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){
48874 SWIG_NewPointerObj(L,result,SWIGTYPE_p_void,0); SWIG_arg++;
48879 lua_error(L);
48884 static int _wrap_SBScriptObject_GetLanguage(lua_State* L) {
48891 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::GetLanguage",1,"lldb::SBScriptObject const *");
48893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){
48898 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
48903 lua_error(L);
48912 static int _proxy__wrap_new_SBScriptObject(lua_State *L) {
48913 assert(lua_istable(L,1));
48914 lua_pushcfunction(L,_wrap_new_SBScriptObject);
48915 assert(!lua_isnil(L,-1));
48916 lua_replace(L,1); /* replace our table with real constructor */
48917 lua_call(L,lua_gettop(L)-1,1);
48958 static int _wrap_new_SBSection__SWIG_0(lua_State* L) {
48965 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
48970 lua_error(L);
48975 static int _wrap_new_SBSection__SWIG_1(lua_State* L) {
48982 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSection::SBSection",1,"lldb::SBSection const &");
48984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
48989 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
48994 lua_error(L);
48999 static int _wrap_new_SBSection(lua_State* L) {
49005 argc = lua_gettop(L);
49007 return _wrap_new_SBSection__SWIG_0(L);
49013 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSection, SWIG_POINTER_NO_NULL)) {
49020 return _wrap_new_SBSection__SWIG_1(L);
49024 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSection'\n"
49028 lua_error(L);return 0;
49032 static int _wrap_SBSection_IsValid(lua_State* L) {
49039 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::IsValid",1,"lldb::SBSection const *");
49041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49046 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
49051 lua_error(L);
49056 static int _wrap_SBSection_GetName(lua_State* L) {
49063 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetName",1,"lldb::SBSection *");
49065 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49070 lua_pushstring(L,(const char *)result); SWIG_arg++;
49075 lua_error(L);
49080 static int _wrap_SBSection_GetParent(lua_State* L) {
49087 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetParent",1,"lldb::SBSection *");
49089 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49096 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
49102 lua_error(L);
49107 static int _wrap_SBSection_FindSubSection(lua_State* L) {
49115 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::FindSubSection",1,"lldb::SBSection *");
49116 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBSection::FindSubSection",2,"char const *");
49118 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49122 arg2 = (char *)lua_tostring(L, 2);
49126 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
49132 lua_error(L);
49137 static int _wrap_SBSection_GetNumSubSections(lua_State* L) {
49144 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetNumSubSections",1,"lldb::SBSection *");
49146 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49151 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49156 lua_error(L);
49161 static int _wrap_SBSection_GetSubSectionAtIndex(lua_State* L) {
49169 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSubSectionAtIndex",1,"lldb::SBSection *");
49170 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSection::GetSubSectionAtIndex",2,"size_t");
49172 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49176 arg2 = (size_t)lua_tointeger(L, 2);
49180 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++;
49186 lua_error(L);
49191 static int _wrap_SBSection_GetFileAddress(lua_State* L) {
49198 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetFileAddress",1,"lldb::SBSection *");
49200 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49205 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49210 lua_error(L);
49215 static int _wrap_SBSection_GetLoadAddress(lua_State* L) {
49223 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetLoadAddress",1,"lldb::SBSection *");
49224 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSection::GetLoadAddress",2,"lldb::SBTarget &");
49226 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49231 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
49236 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49241 lua_error(L);
49246 static int _wrap_SBSection_GetByteSize(lua_State* L) {
49253 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetByteSize",1,"lldb::SBSection *");
49255 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49260 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49265 lua_error(L);
49270 static int _wrap_SBSection_GetFileOffset(lua_State* L) {
49277 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetFileOffset",1,"lldb::SBSection *");
49279 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49284 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49289 lua_error(L);
49294 static int _wrap_SBSection_GetFileByteSize(lua_State* L) {
49301 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetFileByteSize",1,"lldb::SBSection *");
49303 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49308 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49313 lua_error(L);
49318 static int _wrap_SBSection_GetSectionData__SWIG_0(lua_State* L) {
49325 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSectionData",1,"lldb::SBSection *");
49327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49334 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
49340 lua_error(L);
49345 static int _wrap_SBSection_GetSectionData__SWIG_1(lua_State* L) {
49354 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSectionData",1,"lldb::SBSection *");
49355 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSection::GetSectionData",2,"uint64_t");
49356 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBSection::GetSectionData",3,"uint64_t");
49358 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49362 arg2 = (uint64_t)lua_tointeger(L, 2);
49363 arg3 = (uint64_t)lua_tointeger(L, 3);
49367 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
49373 lua_error(L);
49378 static int _wrap_SBSection_GetSectionData(lua_State* L) {
49384 argc = lua_gettop(L);
49389 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSection, 0)) {
49396 return _wrap_SBSection_GetSectionData__SWIG_0(L);
49403 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSection, 0)) {
49411 _v = lua_isnumber(L,argv[1]);
49415 _v = lua_isnumber(L,argv[2]);
49418 return _wrap_SBSection_GetSectionData__SWIG_1(L);
49424 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBSection_GetSectionData'\n"
49428 lua_error(L);return 0;
49432 static int _wrap_SBSection_GetSectionType(lua_State* L) {
49439 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSectionType",1,"lldb::SBSection *");
49441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49446 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49451 lua_error(L);
49456 static int _wrap_SBSection_GetPermissions(lua_State* L) {
49463 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetPermissions",1,"lldb::SBSection const *");
49465 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49470 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49475 lua_error(L);
49480 static int _wrap_SBSection_GetTargetByteSize(lua_State* L) {
49487 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetTargetByteSize",1,"lldb::SBSection *");
49489 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49494 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49499 lua_error(L);
49504 static int _wrap_SBSection_GetAlignment(lua_State* L) {
49511 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetAlignment",1,"lldb::SBSection *");
49513 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49518 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49523 lua_error(L);
49528 static int _wrap_SBSection___eq(lua_State* L) {
49536 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::operator ==",1,"lldb::SBSection *");
49537 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSection::operator ==",2,"lldb::SBSection const &");
49539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49544 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSection,0))){
49549 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
49554 lua_error(L);
49559 static int _wrap_SBSection_GetDescription(lua_State* L) {
49567 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetDescription",1,"lldb::SBSection *");
49568 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSection::GetDescription",2,"lldb::SBStream &");
49570 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49575 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
49580 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
49585 lua_error(L);
49590 static int _wrap_SBSection___tostring(lua_State* L) {
49597 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::__repr__",1,"lldb::SBSection *");
49599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){
49604 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
49609 lua_error(L);
49618 static int _proxy__wrap_new_SBSection(lua_State *L) {
49619 assert(lua_istable(L,1));
49620 lua_pushcfunction(L,_wrap_new_SBSection);
49621 assert(!lua_isnil(L,-1));
49622 lua_replace(L,1); /* replace our table with real constructor */
49623 lua_call(L,lua_gettop(L)-1,1);
49682 static int _wrap_new_SBSourceManager__SWIG_0(lua_State* L) {
49689 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSourceManager::SBSourceManager",1,"lldb::SBDebugger const &");
49691 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){
49696 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++;
49701 lua_error(L);
49706 static int _wrap_new_SBSourceManager__SWIG_1(lua_State* L) {
49713 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSourceManager::SBSourceManager",1,"lldb::SBTarget const &");
49715 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
49720 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++;
49725 lua_error(L);
49730 static int _wrap_new_SBSourceManager__SWIG_2(lua_State* L) {
49737 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSourceManager::SBSourceManager",1,"lldb::SBSourceManager const &");
49739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSourceManager,0))){
49744 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++;
49749 lua_error(L);
49754 static int _wrap_new_SBSourceManager(lua_State* L) {
49760 argc = lua_gettop(L);
49765 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, SWIG_POINTER_NO_NULL)) {
49772 return _wrap_new_SBSourceManager__SWIG_0(L);
49779 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
49786 return _wrap_new_SBSourceManager__SWIG_1(L);
49793 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSourceManager, SWIG_POINTER_NO_NULL)) {
49800 return _wrap_new_SBSourceManager__SWIG_2(L);
49804 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSourceManager'\n"
49809 lua_error(L);return 0;
49813 static int _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers(lua_State* L) {
49826 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",1,"lldb::SBSourceManager *");
49827 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",2,"lldb::SBFileSpec const &");
49828 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",3,"uint32_t");
49829 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",4,"uint32_t");
49830 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",5,"uint32_t");
49831 if(!SWIG_lua_isnilstring(L,6)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",6,"char const *");
49832 if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",7,"lldb::SBStream &");
49834 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSourceManager,0))){
49839 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
49843 arg3 = (uint32_t)lua_tointeger(L, 3);
49844 arg4 = (uint32_t)lua_tointeger(L, 4);
49845 arg5 = (uint32_t)lua_tointeger(L, 5);
49846 arg6 = (char *)lua_tostring(L, 6);
49848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBStream,0))){
49853 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49858 lua_error(L);
49863 static int _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn(lua_State* L) {
49877 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",1,"lldb::SBSourceManager *");
49878 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",2,"lldb::SBFileSpec const &");
49879 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",3,"uint32_t");
49880 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",4,"uint32_t");
49881 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",5,"uint32_t");
49882 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",6,"uint32_t");
49883 if(!SWIG_lua_isnilstring(L,7)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",7,"char const *");
49884 if(!lua_isuserdata(L,8)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAndColumn",8,"lldb::SBStream &");
49886 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSourceManager,0))){
49891 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
49895 arg3 = (uint32_t)lua_tointeger(L, 3);
49896 arg4 = (uint32_t)lua_tointeger(L, 4);
49897 arg5 = (uint32_t)lua_tointeger(L, 5);
49898 arg6 = (uint32_t)lua_tointeger(L, 6);
49899 arg7 = (char *)lua_tostring(L, 7);
49901 if (!SWIG_IsOK(SWIG_ConvertPtr(L,8,(void**)&arg8,SWIGTYPE_p_lldb__SBStream,0))){
49906 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
49911 lua_error(L);
49920 static int _proxy__wrap_new_SBSourceManager(lua_State *L) {
49921 assert(lua_istable(L,1));
49922 lua_pushcfunction(L,_wrap_new_SBSourceManager);
49923 assert(!lua_isnil(L,-1));
49924 lua_replace(L,1); /* replace our table with real constructor */
49925 lua_call(L,lua_gettop(L)-1,1);
49965 static int _wrap_new_SBStatisticsOptions__SWIG_0(lua_State* L) {
49972 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStatisticsOptions,1); SWIG_arg++;
49977 lua_error(L);
49982 static int _wrap_new_SBStatisticsOptions__SWIG_1(lua_State* L) {
49989 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SBStatisticsOptions",1,"lldb::SBStatisticsOptions const &");
49991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
49996 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStatisticsOptions,1); SWIG_arg++;
50001 lua_error(L);
50006 static int _wrap_new_SBStatisticsOptions(lua_State* L) {
50012 argc = lua_gettop(L);
50014 return _wrap_new_SBStatisticsOptions__SWIG_0(L);
50020 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStatisticsOptions, SWIG_POINTER_NO_NULL)) {
50027 return _wrap_new_SBStatisticsOptions__SWIG_1(L);
50031 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBStatisticsOptions'\n"
50035 lua_error(L);return 0;
50039 static int _wrap_SBStatisticsOptions_SetSummaryOnly(lua_State* L) {
50046 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetSummaryOnly",1,"lldb::SBStatisticsOptions *");
50047 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetSummaryOnly",2,"bool");
50049 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50053 arg2 = (lua_toboolean(L, 2)!=0);
50060 lua_error(L);
50065 static int _wrap_SBStatisticsOptions_GetSummaryOnly(lua_State* L) {
50072 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetSummaryOnly",1,"lldb::SBStatisticsOptions *");
50074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50079 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50084 lua_error(L);
50089 static int _wrap_SBStatisticsOptions_SetIncludeTargets(lua_State* L) {
50096 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTargets",1,"lldb::SBStatisticsOptions *");
50097 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTargets",2,"bool");
50099 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50103 arg2 = (lua_toboolean(L, 2)!=0);
50110 lua_error(L);
50115 static int _wrap_SBStatisticsOptions_GetIncludeTargets(lua_State* L) {
50122 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetIncludeTargets",1,"lldb::SBStatisticsOptions const *");
50124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50129 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50134 lua_error(L);
50139 static int _wrap_SBStatisticsOptions_SetIncludeModules(lua_State* L) {
50146 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeModules",1,"lldb::SBStatisticsOptions *");
50147 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeModules",2,"bool");
50149 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50153 arg2 = (lua_toboolean(L, 2)!=0);
50160 lua_error(L);
50165 static int _wrap_SBStatisticsOptions_GetIncludeModules(lua_State* L) {
50172 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetIncludeModules",1,"lldb::SBStatisticsOptions const *");
50174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50179 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50184 lua_error(L);
50189 static int _wrap_SBStatisticsOptions_SetIncludeTranscript(lua_State* L) {
50196 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTranscript",1,"lldb::SBStatisticsOptions *");
50197 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTranscript",2,"bool");
50199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50203 arg2 = (lua_toboolean(L, 2)!=0);
50210 lua_error(L);
50215 static int _wrap_SBStatisticsOptions_GetIncludeTranscript(lua_State* L) {
50222 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetIncludeTranscript",1,"lldb::SBStatisticsOptions const *");
50224 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50229 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50234 lua_error(L);
50239 static int _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo(lua_State* L) {
50246 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetReportAllAvailableDebugInfo",1,"lldb::SBStatisticsOptions *");
50247 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetReportAllAvailableDebugInfo",2,"bool");
50249 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50253 arg2 = (lua_toboolean(L, 2)!=0);
50260 lua_error(L);
50265 static int _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo(lua_State* L) {
50272 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetReportAllAvailableDebugInfo",1,"lldb::SBStatisticsOptions *");
50274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
50279 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50284 lua_error(L);
50293 static int _proxy__wrap_new_SBStatisticsOptions(lua_State *L) {
50294 assert(lua_istable(L,1));
50295 lua_pushcfunction(L,_wrap_new_SBStatisticsOptions);
50296 assert(!lua_isnil(L,-1));
50297 lua_replace(L,1); /* replace our table with real constructor */
50298 lua_call(L,lua_gettop(L)-1,1);
50346 static int _wrap_new_SBStream(lua_State* L) {
50353 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStream,1); SWIG_arg++;
50358 lua_error(L);
50363 static int _wrap_SBStream_IsValid(lua_State* L) {
50370 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::IsValid",1,"lldb::SBStream const *");
50372 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50377 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50382 lua_error(L);
50387 static int _wrap_SBStream_GetData(lua_State* L) {
50394 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::GetData",1,"lldb::SBStream *");
50396 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50401 lua_pushstring(L,(const char *)result); SWIG_arg++;
50406 lua_error(L);
50411 static int _wrap_SBStream_GetSize(lua_State* L) {
50418 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::GetSize",1,"lldb::SBStream *");
50420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50425 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
50430 lua_error(L);
50435 static int _wrap_SBStream_Print(lua_State* L) {
50442 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::Print",1,"lldb::SBStream *");
50443 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStream::Print",2,"char const *");
50445 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50449 arg2 = (char *)lua_tostring(L, 2);
50456 lua_error(L);
50461 static int _wrap_SBStream_RedirectToFile__SWIG_0(lua_State* L) {
50469 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",1,"lldb::SBStream *");
50470 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",2,"char const *");
50471 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",3,"bool");
50473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50477 arg2 = (char *)lua_tostring(L, 2);
50478 arg3 = (lua_toboolean(L, 3)!=0);
50485 lua_error(L);
50490 static int _wrap_SBStream_RedirectToFile__SWIG_1(lua_State* L) {
50498 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",1,"lldb::SBStream *");
50499 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",2,"lldb::SBFile");
50501 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50506 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){
50517 lua_error(L);
50522 static int _wrap_SBStream_RedirectToFile__SWIG_2(lua_State* L) {
50529 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",1,"lldb::SBStream *");
50531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50536 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
50540 return luaL_error(L, "Invalid file");
50549 lua_error(L);
50554 static int _wrap_SBStream_RedirectToFile(lua_State* L) {
50560 argc = lua_gettop(L);
50565 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, 0)) {
50574 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFile, SWIG_POINTER_NO_NULL)) {
50581 return _wrap_SBStream_RedirectToFile__SWIG_1(L);
50589 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, 0)) {
50597 _v = (lua_isuserdata(L, argv[1])) &&
50598 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr);
50601 return _wrap_SBStream_RedirectToFile__SWIG_2(L);
50609 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, 0)) {
50617 _v = SWIG_lua_isnilstring(L,argv[1]);
50621 _v = lua_isboolean(L,argv[2]);
50624 return _wrap_SBStream_RedirectToFile__SWIG_0(L);
50630 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStream_RedirectToFile'\n"
50635 lua_error(L);return 0;
50639 static int _wrap_SBStream_RedirectToFileDescriptor(lua_State* L) {
50647 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFileDescriptor",1,"lldb::SBStream *");
50648 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStream::RedirectToFileDescriptor",2,"int");
50649 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBStream::RedirectToFileDescriptor",3,"bool");
50651 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50655 arg2 = (int)lua_tointeger(L, 2);
50656 arg3 = (lua_toboolean(L, 3)!=0);
50663 lua_error(L);
50668 static int _wrap_SBStream_Clear(lua_State* L) {
50674 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::Clear",1,"lldb::SBStream *");
50676 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50686 lua_error(L);
50691 static int _wrap_SBStream_RedirectToFileHandle(lua_State* L) {
50699 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFileHandle",1,"lldb::SBStream *");
50700 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBStream::RedirectToFileHandle",3,"bool");
50702 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){
50707 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE);
50711 return luaL_error(L, "Invalid file");
50714 arg3 = (lua_toboolean(L, 3)!=0);
50721 lua_error(L);
50730 static int _proxy__wrap_new_SBStream(lua_State *L) {
50731 assert(lua_istable(L,1));
50732 lua_pushcfunction(L,_wrap_new_SBStream);
50733 assert(!lua_isnil(L,-1));
50734 lua_replace(L,1); /* replace our table with real constructor */
50735 lua_call(L,lua_gettop(L)-1,1);
50781 static int _wrap_new_SBStringList__SWIG_0(lua_State* L) {
50788 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++;
50793 lua_error(L);
50798 static int _wrap_new_SBStringList__SWIG_1(lua_State* L) {
50805 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStringList::SBStringList",1,"lldb::SBStringList const &");
50807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
50812 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++;
50817 lua_error(L);
50822 static int _wrap_new_SBStringList(lua_State* L) {
50828 argc = lua_gettop(L);
50830 return _wrap_new_SBStringList__SWIG_0(L);
50836 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, SWIG_POINTER_NO_NULL)) {
50843 return _wrap_new_SBStringList__SWIG_1(L);
50847 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBStringList'\n"
50851 lua_error(L);return 0;
50855 static int _wrap_SBStringList_IsValid(lua_State* L) {
50862 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::IsValid",1,"lldb::SBStringList const *");
50864 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
50869 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
50874 lua_error(L);
50879 static int _wrap_SBStringList_AppendString(lua_State* L) {
50886 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::AppendString",1,"lldb::SBStringList *");
50887 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStringList::AppendString",2,"char const *");
50889 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
50893 arg2 = (char *)lua_tostring(L, 2);
50900 lua_error(L);
50905 static int _wrap_SBStringList_AppendList__SWIG_0(lua_State* L) {
50913 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::AppendList",1,"lldb::SBStringList *");
50914 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBStringList::AppendList",3,"int");
50916 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
50921 if (lua_istable(L, 2)) {
50922 size_t size = lua_rawlen(L, 2);
50926 lua_rawgeti(L, 2, i);
50927 if (!lua_isstring(L, -1)) {
50929 lua_pop(L, 1);
50930 return luaL_error(L, "List should only contain strings");
50932 arg2[j++] = (char *)lua_tostring(L, -1);
50933 lua_pop(L, 1);
50936 } else if (lua_isnil(L, 2)) {
50940 return luaL_error(L, "A list of strings expected");
50943 arg3 = (int)lua_tointeger(L, 3);
50956 lua_error(L);
50961 static int _wrap_SBStringList_AppendList__SWIG_1(lua_State* L) {
50968 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::AppendList",1,"lldb::SBStringList *");
50969 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStringList::AppendList",2,"lldb::SBStringList const &");
50971 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
50976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
50986 lua_error(L);
50991 static int _wrap_SBStringList_AppendList(lua_State* L) {
50997 argc = lua_gettop(L);
51002 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, 0)) {
51011 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, SWIG_POINTER_NO_NULL)) {
51018 return _wrap_SBStringList_AppendList__SWIG_1(L);
51026 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, 0)) {
51034 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1]));
51038 _v = lua_isnumber(L,argv[2]);
51041 return _wrap_SBStringList_AppendList__SWIG_0(L);
51047 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStringList_AppendList'\n"
51051 lua_error(L);return 0;
51055 static int _wrap_SBStringList_GetSize(lua_State* L) {
51062 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::GetSize",1,"lldb::SBStringList const *");
51064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
51069 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51074 lua_error(L);
51079 static int _wrap_SBStringList_GetStringAtIndex__SWIG_0(lua_State* L) {
51087 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",1,"lldb::SBStringList *");
51088 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",2,"size_t");
51090 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
51094 arg2 = (size_t)lua_tointeger(L, 2);
51096 lua_pushstring(L,(const char *)result); SWIG_arg++;
51101 lua_error(L);
51106 static int _wrap_SBStringList_GetStringAtIndex__SWIG_1(lua_State* L) {
51114 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",1,"lldb::SBStringList const *");
51115 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",2,"size_t");
51117 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
51121 arg2 = (size_t)lua_tointeger(L, 2);
51123 lua_pushstring(L,(const char *)result); SWIG_arg++;
51128 lua_error(L);
51133 static int _wrap_SBStringList_GetStringAtIndex(lua_State* L) {
51139 argc = lua_gettop(L);
51144 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, 0)) {
51152 _v = lua_isnumber(L,argv[1]);
51155 return _wrap_SBStringList_GetStringAtIndex__SWIG_0(L);
51163 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, 0)) {
51171 _v = lua_isnumber(L,argv[1]);
51174 return _wrap_SBStringList_GetStringAtIndex__SWIG_1(L);
51179 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStringList_GetStringAtIndex'\n"
51183 lua_error(L);return 0;
51187 static int _wrap_SBStringList_Clear(lua_State* L) {
51193 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::Clear",1,"lldb::SBStringList *");
51195 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){
51205 lua_error(L);
51214 static int _proxy__wrap_new_SBStringList(lua_State *L) {
51215 assert(lua_istable(L,1));
51216 lua_pushcfunction(L,_wrap_new_SBStringList);
51217 assert(!lua_isnil(L,-1));
51218 lua_replace(L,1); /* replace our table with real constructor */
51219 lua_call(L,lua_gettop(L)-1,1);
51263 static int _wrap_new_SBStructuredData__SWIG_0(lua_State* L) {
51270 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
51275 lua_error(L);
51280 static int _wrap_new_SBStructuredData__SWIG_1(lua_State* L) {
51287 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SBStructuredData",1,"lldb::SBStructuredData const &");
51289 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51294 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
51299 lua_error(L);
51304 static int _wrap_new_SBStructuredData__SWIG_2(lua_State* L) {
51313 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SBStructuredData",1,"lldb::SBScriptObject const");
51314 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::SBStructuredData",2,"lldb::SBDebugger const &");
51316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBScriptObject,0))){
51322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){
51327 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
51332 lua_error(L);
51337 static int _wrap_new_SBStructuredData(lua_State* L) {
51343 argc = lua_gettop(L);
51345 return _wrap_new_SBStructuredData__SWIG_0(L);
51351 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
51358 return _wrap_new_SBStructuredData__SWIG_1(L);
51365 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBScriptObject, SWIG_POINTER_NO_NULL)) {
51374 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBDebugger, SWIG_POINTER_NO_NULL)) {
51381 return _wrap_new_SBStructuredData__SWIG_2(L);
51386 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBStructuredData'\n"
51391 lua_error(L);return 0;
51395 static int _wrap_SBStructuredData_IsValid(lua_State* L) {
51402 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::IsValid",1,"lldb::SBStructuredData const *");
51404 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51409 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
51414 lua_error(L);
51419 static int _wrap_SBStructuredData_SetFromJSON__SWIG_0(lua_State* L) {
51427 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",1,"lldb::SBStructuredData *");
51428 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",2,"lldb::SBStream &");
51430 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
51442 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
51448 lua_error(L);
51453 static int _wrap_SBStructuredData_SetFromJSON__SWIG_1(lua_State* L) {
51461 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",1,"lldb::SBStructuredData *");
51462 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",2,"char const *");
51464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51468 arg2 = (char *)lua_tostring(L, 2);
51472 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
51478 lua_error(L);
51483 static int _wrap_SBStructuredData_SetFromJSON(lua_State* L) {
51489 argc = lua_gettop(L);
51494 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
51503 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
51510 return _wrap_SBStructuredData_SetFromJSON__SWIG_0(L);
51518 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
51526 _v = SWIG_lua_isnilstring(L,argv[1]);
51529 return _wrap_SBStructuredData_SetFromJSON__SWIG_1(L);
51534 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_SetFromJSON'\n"
51538 lua_error(L);return 0;
51542 static int _wrap_SBStructuredData_Clear(lua_State* L) {
51548 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::Clear",1,"lldb::SBStructuredData *");
51550 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51560 lua_error(L);
51565 static int _wrap_SBStructuredData_GetAsJSON(lua_State* L) {
51573 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetAsJSON",1,"lldb::SBStructuredData const *");
51574 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetAsJSON",2,"lldb::SBStream &");
51576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51581 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
51588 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
51594 lua_error(L);
51599 static int _wrap_SBStructuredData_GetDescription(lua_State* L) {
51607 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetDescription",1,"lldb::SBStructuredData const *");
51608 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetDescription",2,"lldb::SBStream &");
51610 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51615 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
51622 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
51628 lua_error(L);
51633 static int _wrap_SBStructuredData_GetType(lua_State* L) {
51640 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetType",1,"lldb::SBStructuredData const *");
51642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51647 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51652 lua_error(L);
51657 static int _wrap_SBStructuredData_GetSize(lua_State* L) {
51664 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetSize",1,"lldb::SBStructuredData const *");
51666 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51671 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51676 lua_error(L);
51681 static int _wrap_SBStructuredData_GetKeys(lua_State* L) {
51689 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetKeys",1,"lldb::SBStructuredData const *");
51690 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetKeys",2,"lldb::SBStringList &");
51692 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51697 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
51702 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
51707 lua_error(L);
51712 static int _wrap_SBStructuredData_GetValueForKey(lua_State* L) {
51720 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetValueForKey",1,"lldb::SBStructuredData const *");
51721 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetValueForKey",2,"char const *");
51723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51727 arg2 = (char *)lua_tostring(L, 2);
51731 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
51737 lua_error(L);
51742 static int _wrap_SBStructuredData_GetItemAtIndex(lua_State* L) {
51750 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetItemAtIndex",1,"lldb::SBStructuredData const *");
51751 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetItemAtIndex",2,"size_t");
51753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51757 arg2 = (size_t)lua_tointeger(L, 2);
51761 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
51767 lua_error(L);
51772 static int _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0(lua_State* L) {
51780 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetUnsignedIntegerValue",1,"lldb::SBStructuredData const *");
51781 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetUnsignedIntegerValue",2,"uint64_t");
51783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51787 arg2 = (uint64_t)lua_tointeger(L, 2);
51789 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51794 lua_error(L);
51799 static int _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1(lua_State* L) {
51806 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetUnsignedIntegerValue",1,"lldb::SBStructuredData const *");
51808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51813 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51818 lua_error(L);
51823 static int _wrap_SBStructuredData_GetUnsignedIntegerValue(lua_State* L) {
51829 argc = lua_gettop(L);
51834 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
51841 return _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1(L);
51848 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
51856 _v = lua_isnumber(L,argv[1]);
51859 return _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0(L);
51864 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetUnsignedIntegerValue'\n"
51868 lua_error(L);return 0;
51872 static int _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0(lua_State* L) {
51880 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetSignedIntegerValue",1,"lldb::SBStructuredData const *");
51881 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetSignedIntegerValue",2,"int64_t");
51883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51887 arg2 = (int64_t)lua_tointeger(L, 2);
51889 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51894 lua_error(L);
51899 static int _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1(lua_State* L) {
51906 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetSignedIntegerValue",1,"lldb::SBStructuredData const *");
51908 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51913 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51918 lua_error(L);
51923 static int _wrap_SBStructuredData_GetSignedIntegerValue(lua_State* L) {
51929 argc = lua_gettop(L);
51934 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
51941 return _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1(L);
51948 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
51956 _v = lua_isnumber(L,argv[1]);
51959 return _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0(L);
51964 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetSignedIntegerValue'\n"
51968 lua_error(L);return 0;
51972 static int _wrap_SBStructuredData_GetIntegerValue__SWIG_0(lua_State* L) {
51980 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetIntegerValue",1,"lldb::SBStructuredData const *");
51981 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetIntegerValue",2,"uint64_t");
51983 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
51987 arg2 = (uint64_t)lua_tointeger(L, 2);
51989 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
51994 lua_error(L);
51999 static int _wrap_SBStructuredData_GetIntegerValue__SWIG_1(lua_State* L) {
52006 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetIntegerValue",1,"lldb::SBStructuredData const *");
52008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52013 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
52018 lua_error(L);
52023 static int _wrap_SBStructuredData_GetIntegerValue(lua_State* L) {
52029 argc = lua_gettop(L);
52034 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
52041 return _wrap_SBStructuredData_GetIntegerValue__SWIG_1(L);
52048 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
52056 _v = lua_isnumber(L,argv[1]);
52059 return _wrap_SBStructuredData_GetIntegerValue__SWIG_0(L);
52064 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetIntegerValue'\n"
52068 lua_error(L);return 0;
52072 static int _wrap_SBStructuredData_GetFloatValue__SWIG_0(lua_State* L) {
52080 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetFloatValue",1,"lldb::SBStructuredData const *");
52081 if(!lua_isnumber(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetFloatValue",2,"double");
52083 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52087 arg2 = (double)lua_tonumber(L, 2);
52089 lua_pushnumber(L, (lua_Number) result); SWIG_arg++;
52094 lua_error(L);
52099 static int _wrap_SBStructuredData_GetFloatValue__SWIG_1(lua_State* L) {
52106 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetFloatValue",1,"lldb::SBStructuredData const *");
52108 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52113 lua_pushnumber(L, (lua_Number) result); SWIG_arg++;
52118 lua_error(L);
52123 static int _wrap_SBStructuredData_GetFloatValue(lua_State* L) {
52129 argc = lua_gettop(L);
52134 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
52141 return _wrap_SBStructuredData_GetFloatValue__SWIG_1(L);
52148 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
52156 _v = lua_isnumber(L,argv[1]);
52159 return _wrap_SBStructuredData_GetFloatValue__SWIG_0(L);
52164 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetFloatValue'\n"
52168 lua_error(L);return 0;
52172 static int _wrap_SBStructuredData_GetBooleanValue__SWIG_0(lua_State* L) {
52180 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetBooleanValue",1,"lldb::SBStructuredData const *");
52181 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetBooleanValue",2,"bool");
52183 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52187 arg2 = (lua_toboolean(L, 2)!=0);
52189 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
52194 lua_error(L);
52199 static int _wrap_SBStructuredData_GetBooleanValue__SWIG_1(lua_State* L) {
52206 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetBooleanValue",1,"lldb::SBStructuredData const *");
52208 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52213 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
52218 lua_error(L);
52223 static int _wrap_SBStructuredData_GetBooleanValue(lua_State* L) {
52229 argc = lua_gettop(L);
52234 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
52241 return _wrap_SBStructuredData_GetBooleanValue__SWIG_1(L);
52248 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, 0)) {
52256 _v = lua_isboolean(L,argv[1]);
52259 return _wrap_SBStructuredData_GetBooleanValue__SWIG_0(L);
52264 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetBooleanValue'\n"
52268 lua_error(L);return 0;
52272 static int _wrap_SBStructuredData_GetStringValue(lua_State* L) {
52281 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetStringValue",1,"lldb::SBStructuredData const *");
52283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52288 arg3 = luaL_checkinteger(L, 2);
52290 return luaL_error(L, "Positive integer expected");
52295 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
52297 lua_pop(L, 1); // Blow away the previous result
52299 lua_pushliteral(L, "");
52301 lua_pushlstring(L, (const char *)arg2, result);
52310 lua_error(L);
52315 static int _wrap_SBStructuredData_GetGenericValue(lua_State* L) {
52322 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetGenericValue",1,"lldb::SBStructuredData const *");
52324 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52331 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++;
52337 lua_error(L);
52342 static int _wrap_SBStructuredData___tostring(lua_State* L) {
52349 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::__repr__",1,"lldb::SBStructuredData *");
52351 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){
52356 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
52361 lua_error(L);
52370 static int _proxy__wrap_new_SBStructuredData(lua_State *L) {
52371 assert(lua_istable(L,1));
52372 lua_pushcfunction(L,_wrap_new_SBStructuredData);
52373 assert(!lua_isnil(L,-1));
52374 lua_replace(L,1); /* replace our table with real constructor */
52375 lua_call(L,lua_gettop(L)-1,1);
52432 static int _wrap_new_SBSymbol__SWIG_0(lua_State* L) {
52439 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
52444 lua_error(L);
52449 static int _wrap_new_SBSymbol__SWIG_1(lua_State* L) {
52456 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSymbol::SBSymbol",1,"lldb::SBSymbol const &");
52458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52463 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
52468 lua_error(L);
52473 static int _wrap_new_SBSymbol(lua_State* L) {
52479 argc = lua_gettop(L);
52481 return _wrap_new_SBSymbol__SWIG_0(L);
52487 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbol, SWIG_POINTER_NO_NULL)) {
52494 return _wrap_new_SBSymbol__SWIG_1(L);
52498 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSymbol'\n"
52502 lua_error(L);return 0;
52506 static int _wrap_SBSymbol_IsValid(lua_State* L) {
52513 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::IsValid",1,"lldb::SBSymbol const *");
52515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52520 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
52525 lua_error(L);
52530 static int _wrap_SBSymbol_GetName(lua_State* L) {
52537 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetName",1,"lldb::SBSymbol const *");
52539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52544 lua_pushstring(L,(const char *)result); SWIG_arg++;
52549 lua_error(L);
52554 static int _wrap_SBSymbol_GetDisplayName(lua_State* L) {
52561 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetDisplayName",1,"lldb::SBSymbol const *");
52563 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52568 lua_pushstring(L,(const char *)result); SWIG_arg++;
52573 lua_error(L);
52578 static int _wrap_SBSymbol_GetMangledName(lua_State* L) {
52585 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetMangledName",1,"lldb::SBSymbol const *");
52587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52592 lua_pushstring(L,(const char *)result); SWIG_arg++;
52597 lua_error(L);
52602 static int _wrap_SBSymbol_GetInstructions__SWIG_0(lua_State* L) {
52611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",1,"lldb::SBSymbol *");
52612 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",2,"lldb::SBTarget");
52614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
52627 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
52633 lua_error(L);
52638 static int _wrap_SBSymbol_GetInstructions__SWIG_1(lua_State* L) {
52648 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",1,"lldb::SBSymbol *");
52649 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",2,"lldb::SBTarget");
52650 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",3,"char const *");
52652 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52657 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
52662 arg3 = (char *)lua_tostring(L, 3);
52666 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
52672 lua_error(L);
52677 static int _wrap_SBSymbol_GetInstructions(lua_State* L) {
52683 argc = lua_gettop(L);
52688 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbol, 0)) {
52697 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
52704 return _wrap_SBSymbol_GetInstructions__SWIG_0(L);
52712 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbol, 0)) {
52721 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
52729 _v = SWIG_lua_isnilstring(L,argv[2]);
52732 return _wrap_SBSymbol_GetInstructions__SWIG_1(L);
52738 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBSymbol_GetInstructions'\n"
52742 lua_error(L);return 0;
52746 static int _wrap_SBSymbol_GetStartAddress(lua_State* L) {
52753 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetStartAddress",1,"lldb::SBSymbol *");
52755 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52762 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
52768 lua_error(L);
52773 static int _wrap_SBSymbol_GetEndAddress(lua_State* L) {
52780 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetEndAddress",1,"lldb::SBSymbol *");
52782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52789 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
52795 lua_error(L);
52800 static int _wrap_SBSymbol_GetValue(lua_State* L) {
52807 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetValue",1,"lldb::SBSymbol *");
52809 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52814 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
52819 lua_error(L);
52824 static int _wrap_SBSymbol_GetSize(lua_State* L) {
52831 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetSize",1,"lldb::SBSymbol *");
52833 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52838 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
52843 lua_error(L);
52848 static int _wrap_SBSymbol_GetPrologueByteSize(lua_State* L) {
52855 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetPrologueByteSize",1,"lldb::SBSymbol *");
52857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52862 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
52867 lua_error(L);
52872 static int _wrap_SBSymbol_GetType(lua_State* L) {
52879 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetType",1,"lldb::SBSymbol *");
52881 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52886 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
52891 lua_error(L);
52896 static int _wrap_SBSymbol___eq(lua_State* L) {
52904 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::operator ==",1,"lldb::SBSymbol const *");
52905 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::operator ==",2,"lldb::SBSymbol const &");
52907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52912 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSymbol,0))){
52917 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
52922 lua_error(L);
52927 static int _wrap_SBSymbol_GetDescription(lua_State* L) {
52935 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetDescription",1,"lldb::SBSymbol *");
52936 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::GetDescription",2,"lldb::SBStream &");
52938 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52943 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
52948 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
52953 lua_error(L);
52958 static int _wrap_SBSymbol_IsExternal(lua_State* L) {
52965 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::IsExternal",1,"lldb::SBSymbol *");
52967 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52972 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
52977 lua_error(L);
52982 static int _wrap_SBSymbol_IsSynthetic(lua_State* L) {
52989 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::IsSynthetic",1,"lldb::SBSymbol *");
52991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
52996 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
53001 lua_error(L);
53006 static int _wrap_SBSymbol___tostring(lua_State* L) {
53013 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::__repr__",1,"lldb::SBSymbol *");
53015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){
53020 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
53025 lua_error(L);
53034 static int _proxy__wrap_new_SBSymbol(lua_State *L) {
53035 assert(lua_istable(L,1));
53036 lua_pushcfunction(L,_wrap_new_SBSymbol);
53037 assert(!lua_isnil(L,-1));
53038 lua_replace(L,1); /* replace our table with real constructor */
53039 lua_call(L,lua_gettop(L)-1,1);
53095 static int _wrap_new_SBSymbolContext__SWIG_0(lua_State* L) {
53102 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
53107 lua_error(L);
53112 static int _wrap_new_SBSymbolContext__SWIG_1(lua_State* L) {
53119 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SBSymbolContext",1,"lldb::SBSymbolContext const &");
53121 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53126 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
53131 lua_error(L);
53136 static int _wrap_new_SBSymbolContext(lua_State* L) {
53142 argc = lua_gettop(L);
53144 return _wrap_new_SBSymbolContext__SWIG_0(L);
53150 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbolContext, SWIG_POINTER_NO_NULL)) {
53157 return _wrap_new_SBSymbolContext__SWIG_1(L);
53161 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSymbolContext'\n"
53165 lua_error(L);return 0;
53169 static int _wrap_SBSymbolContext_IsValid(lua_State* L) {
53176 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::IsValid",1,"lldb::SBSymbolContext const *");
53178 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53183 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
53188 lua_error(L);
53193 static int _wrap_SBSymbolContext_GetModule(lua_State* L) {
53200 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetModule",1,"lldb::SBSymbolContext *");
53202 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53209 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
53215 lua_error(L);
53220 static int _wrap_SBSymbolContext_GetCompileUnit(lua_State* L) {
53227 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetCompileUnit",1,"lldb::SBSymbolContext *");
53229 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53236 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++;
53242 lua_error(L);
53247 static int _wrap_SBSymbolContext_GetFunction(lua_State* L) {
53254 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetFunction",1,"lldb::SBSymbolContext *");
53256 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53263 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++;
53269 lua_error(L);
53274 static int _wrap_SBSymbolContext_GetBlock(lua_State* L) {
53281 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetBlock",1,"lldb::SBSymbolContext *");
53283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53290 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++;
53296 lua_error(L);
53301 static int _wrap_SBSymbolContext_GetLineEntry(lua_State* L) {
53308 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetLineEntry",1,"lldb::SBSymbolContext *");
53310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53317 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++;
53323 lua_error(L);
53328 static int _wrap_SBSymbolContext_GetSymbol(lua_State* L) {
53335 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetSymbol",1,"lldb::SBSymbolContext *");
53337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53344 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++;
53350 lua_error(L);
53355 static int _wrap_SBSymbolContext_SetModule(lua_State* L) {
53363 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetModule",1,"lldb::SBSymbolContext *");
53364 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetModule",2,"lldb::SBModule");
53366 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53371 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){
53382 lua_error(L);
53387 static int _wrap_SBSymbolContext_SetCompileUnit(lua_State* L) {
53395 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetCompileUnit",1,"lldb::SBSymbolContext *");
53396 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetCompileUnit",2,"lldb::SBCompileUnit");
53398 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53403 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBCompileUnit,0))){
53414 lua_error(L);
53419 static int _wrap_SBSymbolContext_SetFunction(lua_State* L) {
53427 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetFunction",1,"lldb::SBSymbolContext *");
53428 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetFunction",2,"lldb::SBFunction");
53430 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFunction,0))){
53446 lua_error(L);
53451 static int _wrap_SBSymbolContext_SetBlock(lua_State* L) {
53459 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetBlock",1,"lldb::SBSymbolContext *");
53460 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetBlock",2,"lldb::SBBlock");
53462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53467 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBBlock,0))){
53478 lua_error(L);
53483 static int _wrap_SBSymbolContext_SetLineEntry(lua_State* L) {
53491 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetLineEntry",1,"lldb::SBSymbolContext *");
53492 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetLineEntry",2,"lldb::SBLineEntry");
53494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53499 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBLineEntry,0))){
53510 lua_error(L);
53515 static int _wrap_SBSymbolContext_SetSymbol(lua_State* L) {
53523 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetSymbol",1,"lldb::SBSymbolContext *");
53524 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetSymbol",2,"lldb::SBSymbol");
53526 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSymbol,0))){
53542 lua_error(L);
53547 static int _wrap_SBSymbolContext_GetParentOfInlinedScope(lua_State* L) {
53556 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetParentOfInlinedScope",1,"lldb::SBSymbolContext const *");
53557 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::GetParentOfInlinedScope",2,"lldb::SBAddress const &");
53558 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBSymbolContext::GetParentOfInlinedScope",3,"lldb::SBAddress &");
53560 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
53570 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBAddress,0))){
53577 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
53583 lua_error(L);
53588 static int _wrap_SBSymbolContext_GetDescription(lua_State* L) {
53596 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetDescription",1,"lldb::SBSymbolContext *");
53597 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::GetDescription",2,"lldb::SBStream &");
53599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
53609 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
53614 lua_error(L);
53619 static int _wrap_SBSymbolContext___tostring(lua_State* L) {
53626 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::__repr__",1,"lldb::SBSymbolContext *");
53628 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53633 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
53638 lua_error(L);
53647 static int _proxy__wrap_new_SBSymbolContext(lua_State *L) {
53648 assert(lua_istable(L,1));
53649 lua_pushcfunction(L,_wrap_new_SBSymbolContext);
53650 assert(!lua_isnil(L,-1));
53651 lua_replace(L,1); /* replace our table with real constructor */
53652 lua_call(L,lua_gettop(L)-1,1);
53707 static int _wrap_new_SBSymbolContextList__SWIG_0(lua_State* L) {
53714 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
53719 lua_error(L);
53724 static int _wrap_new_SBSymbolContextList__SWIG_1(lua_State* L) {
53731 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::SBSymbolContextList",1,"lldb::SBSymbolContextList const &");
53733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53738 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
53743 lua_error(L);
53748 static int _wrap_new_SBSymbolContextList(lua_State* L) {
53754 argc = lua_gettop(L);
53756 return _wrap_new_SBSymbolContextList__SWIG_0(L);
53762 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbolContextList, SWIG_POINTER_NO_NULL)) {
53769 return _wrap_new_SBSymbolContextList__SWIG_1(L);
53773 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSymbolContextList'\n"
53777 lua_error(L);return 0;
53781 static int _wrap_SBSymbolContextList_IsValid(lua_State* L) {
53788 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::IsValid",1,"lldb::SBSymbolContextList const *");
53790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53795 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
53800 lua_error(L);
53805 static int _wrap_SBSymbolContextList_GetSize(lua_State* L) {
53812 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::GetSize",1,"lldb::SBSymbolContextList const *");
53814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53819 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
53824 lua_error(L);
53829 static int _wrap_SBSymbolContextList_GetContextAtIndex(lua_State* L) {
53837 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::GetContextAtIndex",1,"lldb::SBSymbolContextList *");
53838 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::GetContextAtIndex",2,"uint32_t");
53840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53844 arg2 = (uint32_t)lua_tointeger(L, 2);
53848 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
53854 lua_error(L);
53859 static int _wrap_SBSymbolContextList_GetDescription(lua_State* L) {
53867 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::GetDescription",1,"lldb::SBSymbolContextList *");
53868 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::GetDescription",2,"lldb::SBStream &");
53870 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53875 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
53880 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
53885 lua_error(L);
53890 static int _wrap_SBSymbolContextList_Append__SWIG_0(lua_State* L) {
53897 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",1,"lldb::SBSymbolContextList *");
53898 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",2,"lldb::SBSymbolContext &");
53900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53905 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSymbolContext,0))){
53915 lua_error(L);
53920 static int _wrap_SBSymbolContextList_Append__SWIG_1(lua_State* L) {
53927 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",1,"lldb::SBSymbolContextList *");
53928 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",2,"lldb::SBSymbolContextList &");
53930 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
53945 lua_error(L);
53950 static int _wrap_SBSymbolContextList_Append(lua_State* L) {
53956 argc = lua_gettop(L);
53961 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbolContextList, 0)) {
53970 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbolContext, SWIG_POINTER_NO_NULL)) {
53977 return _wrap_SBSymbolContextList_Append__SWIG_0(L);
53985 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbolContextList, 0)) {
53994 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBSymbolContextList, SWIG_POINTER_NO_NULL)) {
54001 return _wrap_SBSymbolContextList_Append__SWIG_1(L);
54006 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBSymbolContextList_Append'\n"
54010 lua_error(L);return 0;
54014 static int _wrap_SBSymbolContextList_Clear(lua_State* L) {
54020 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::Clear",1,"lldb::SBSymbolContextList *");
54022 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
54032 lua_error(L);
54037 static int _wrap_SBSymbolContextList___tostring(lua_State* L) {
54044 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::__repr__",1,"lldb::SBSymbolContextList *");
54046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){
54051 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
54056 lua_error(L);
54065 static int _proxy__wrap_new_SBSymbolContextList(lua_State *L) {
54066 assert(lua_istable(L,1));
54067 lua_pushcfunction(L,_wrap_new_SBSymbolContextList);
54068 assert(!lua_isnil(L,-1));
54069 lua_replace(L,1); /* replace our table with real constructor */
54070 lua_call(L,lua_gettop(L)-1,1);
54116 static int _wrap_new_SBTarget__SWIG_0(lua_State* L) {
54123 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
54128 lua_error(L);
54133 static int _wrap_new_SBTarget__SWIG_1(lua_State* L) {
54140 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::SBTarget",1,"lldb::SBTarget const &");
54142 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54147 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
54152 lua_error(L);
54157 static int _wrap_new_SBTarget(lua_State* L) {
54163 argc = lua_gettop(L);
54165 return _wrap_new_SBTarget__SWIG_0(L);
54171 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, SWIG_POINTER_NO_NULL)) {
54178 return _wrap_new_SBTarget__SWIG_1(L);
54182 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTarget'\n"
54186 lua_error(L);return 0;
54190 static int _wrap_SBTarget_IsValid(lua_State* L) {
54197 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::IsValid",1,"lldb::SBTarget const *");
54199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54204 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
54209 lua_error(L);
54214 static int _wrap_SBTarget_EventIsTargetEvent(lua_State* L) {
54221 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::EventIsTargetEvent",1,"lldb::SBEvent const &");
54223 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
54228 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
54233 lua_error(L);
54238 static int _wrap_SBTarget_GetTargetFromEvent(lua_State* L) {
54245 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::GetTargetFromEvent",1,"lldb::SBEvent const &");
54247 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
54254 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
54260 lua_error(L);
54265 static int _wrap_SBTarget_GetNumModulesFromEvent(lua_State* L) {
54272 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumModulesFromEvent",1,"lldb::SBEvent const &");
54274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
54279 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
54284 lua_error(L);
54289 static int _wrap_SBTarget_GetModuleAtIndexFromEvent(lua_State* L) {
54297 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndexFromEvent",1,"uint32_t const");
54298 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndexFromEvent",2,"lldb::SBEvent const &");
54299 arg1 = (uint32_t const)lua_tointeger(L, 1);
54301 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){
54308 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
54314 lua_error(L);
54319 static int _wrap_SBTarget_GetBroadcasterClassName(lua_State* L) {
54326 lua_pushstring(L,(const char *)result); SWIG_arg++;
54331 lua_error(L);
54336 static int _wrap_SBTarget_GetProcess(lua_State* L) {
54343 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetProcess",1,"lldb::SBTarget *");
54345 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54352 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
54358 lua_error(L);
54363 static int _wrap_SBTarget_SetCollectingStats(lua_State* L) {
54370 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetCollectingStats",1,"lldb::SBTarget *");
54371 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTarget::SetCollectingStats",2,"bool");
54373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54377 arg2 = (lua_toboolean(L, 2)!=0);
54384 lua_error(L);
54389 static int _wrap_SBTarget_GetCollectingStats(lua_State* L) {
54396 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetCollectingStats",1,"lldb::SBTarget *");
54398 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54403 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
54408 lua_error(L);
54413 static int _wrap_SBTarget_GetStatistics__SWIG_0(lua_State* L) {
54420 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetStatistics",1,"lldb::SBTarget *");
54422 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54429 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
54435 lua_error(L);
54440 static int _wrap_SBTarget_GetStatistics__SWIG_1(lua_State* L) {
54449 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetStatistics",1,"lldb::SBTarget *");
54450 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetStatistics",2,"lldb::SBStatisticsOptions");
54452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54457 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){
54465 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++;
54471 lua_error(L);
54476 static int _wrap_SBTarget_GetStatistics(lua_State* L) {
54482 argc = lua_gettop(L);
54487 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
54494 return _wrap_SBTarget_GetStatistics__SWIG_0(L);
54501 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
54510 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStatisticsOptions, SWIG_POINTER_NO_NULL)) {
54517 return _wrap_SBTarget_GetStatistics__SWIG_1(L);
54522 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_GetStatistics'\n"
54526 lua_error(L);return 0;
54530 static int _wrap_SBTarget_GetPlatform(lua_State* L) {
54537 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetPlatform",1,"lldb::SBTarget *");
54539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54546 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++;
54552 lua_error(L);
54557 static int _wrap_SBTarget_GetEnvironment(lua_State* L) {
54564 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetEnvironment",1,"lldb::SBTarget *");
54566 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54573 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++;
54579 lua_error(L);
54584 static int _wrap_SBTarget_Install(lua_State* L) {
54591 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Install",1,"lldb::SBTarget *");
54593 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54600 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
54606 lua_error(L);
54611 static int _wrap_SBTarget_Launch__SWIG_0(lua_State* L) {
54628 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Launch",1,"lldb::SBTarget *");
54629 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::Launch",2,"lldb::SBListener &");
54630 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBTarget::Launch",5,"char const *");
54631 if(!SWIG_lua_isnilstring(L,6)) SWIG_fail_arg("lldb::SBTarget::Launch",6,"char const *");
54632 if(!SWIG_lua_isnilstring(L,7)) SWIG_fail_arg("lldb::SBTarget::Launch",7,"char const *");
54633 if(!SWIG_lua_isnilstring(L,8)) SWIG_fail_arg("lldb::SBTarget::Launch",8,"char const *");
54634 if(!lua_isinteger(L,9)) SWIG_fail_arg("lldb::SBTarget::Launch",9,"uint32_t");
54635 if(!lua_isboolean(L,10)) SWIG_fail_arg("lldb::SBTarget::Launch",10,"bool");
54636 if(!lua_isuserdata(L,11)) SWIG_fail_arg("lldb::SBTarget::Launch",11,"lldb::SBError &");
54638 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54643 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
54648 if (lua_istable(L, 3)) {
54649 size_t size = lua_rawlen(L, 3);
54653 lua_rawgeti(L, 3, i);
54654 if (!lua_isstring(L, -1)) {
54656 lua_pop(L, 1);
54657 return luaL_error(L, "List should only contain strings");
54659 arg3[j++] = (char *)lua_tostring(L, -1);
54660 lua_pop(L, 1);
54663 } else if (lua_isnil(L, 3)) {
54667 return luaL_error(L, "A list of strings expected");
54671 if (lua_istable(L, 4)) {
54672 size_t size = lua_rawlen(L, 4);
54676 lua_rawgeti(L, 4, i);
54677 if (!lua_isstring(L, -1)) {
54679 lua_pop(L, 1);
54680 return luaL_error(L, "List should only contain strings");
54682 arg4[j++] = (char *)lua_tostring(L, -1);
54683 lua_pop(L, 1);
54686 } else if (lua_isnil(L, 4)) {
54690 return luaL_error(L, "A list of strings expected");
54693 arg5 = (char *)lua_tostring(L, 5);
54694 arg6 = (char *)lua_tostring(L, 6);
54695 arg7 = (char *)lua_tostring(L, 7);
54696 arg8 = (char *)lua_tostring(L, 8);
54697 arg9 = (uint32_t)lua_tointeger(L, 9);
54698 arg10 = (lua_toboolean(L, 10)!=0);
54700 if (!SWIG_IsOK(SWIG_ConvertPtr(L,11,(void**)&arg11,SWIGTYPE_p_lldb__SBError,0))){
54707 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
54725 lua_error(L);
54730 static int _wrap_SBTarget_LoadCore__SWIG_0(lua_State* L) {
54738 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::LoadCore",1,"lldb::SBTarget *");
54739 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::LoadCore",2,"char const *");
54741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54745 arg2 = (char *)lua_tostring(L, 2);
54749 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
54755 lua_error(L);
54760 static int _wrap_SBTarget_LoadCore__SWIG_1(lua_State* L) {
54769 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::LoadCore",1,"lldb::SBTarget *");
54770 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::LoadCore",2,"char const *");
54771 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::LoadCore",3,"lldb::SBError &");
54773 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54777 arg2 = (char *)lua_tostring(L, 2);
54779 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
54786 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
54792 lua_error(L);
54797 static int _wrap_SBTarget_LoadCore(lua_State* L) {
54803 argc = lua_gettop(L);
54808 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
54816 _v = SWIG_lua_isnilstring(L,argv[1]);
54819 return _wrap_SBTarget_LoadCore__SWIG_0(L);
54827 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
54835 _v = SWIG_lua_isnilstring(L,argv[1]);
54840 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
54847 return _wrap_SBTarget_LoadCore__SWIG_1(L);
54853 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_LoadCore'\n"
54857 lua_error(L);return 0;
54861 static int _wrap_SBTarget_LaunchSimple(lua_State* L) {
54871 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::LaunchSimple",1,"lldb::SBTarget *");
54872 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::LaunchSimple",4,"char const *");
54874 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54879 if (lua_istable(L, 2)) {
54880 size_t size = lua_rawlen(L, 2);
54884 lua_rawgeti(L, 2, i);
54885 if (!lua_isstring(L, -1)) {
54887 lua_pop(L, 1);
54888 return luaL_error(L, "List should only contain strings");
54890 arg2[j++] = (char *)lua_tostring(L, -1);
54891 lua_pop(L, 1);
54894 } else if (lua_isnil(L, 2)) {
54898 return luaL_error(L, "A list of strings expected");
54902 if (lua_istable(L, 3)) {
54903 size_t size = lua_rawlen(L, 3);
54907 lua_rawgeti(L, 3, i);
54908 if (!lua_isstring(L, -1)) {
54910 lua_pop(L, 1);
54911 return luaL_error(L, "List should only contain strings");
54913 arg3[j++] = (char *)lua_tostring(L, -1);
54914 lua_pop(L, 1);
54917 } else if (lua_isnil(L, 3)) {
54921 return luaL_error(L, "A list of strings expected");
54924 arg4 = (char *)lua_tostring(L, 4);
54928 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
54946 lua_error(L);
54951 static int _wrap_SBTarget_Launch__SWIG_1(lua_State* L) {
54960 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Launch",1,"lldb::SBTarget *");
54961 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::Launch",2,"lldb::SBLaunchInfo &");
54962 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::Launch",3,"lldb::SBError &");
54964 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
54969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
54974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
54981 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
54987 lua_error(L);
54992 static int _wrap_SBTarget_Launch(lua_State* L) {
54998 argc = lua_gettop(L);
55003 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
55012 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBLaunchInfo, SWIG_POINTER_NO_NULL)) {
55021 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
55028 return _wrap_SBTarget_Launch__SWIG_1(L);
55037 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
55046 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBListener, SWIG_POINTER_NO_NULL)) {
55054 _v = (lua_istable(L, argv[2]) || lua_isnil(L, argv[2]));
55058 _v = (lua_istable(L, argv[3]) || lua_isnil(L, argv[3]));
55062 _v = SWIG_lua_isnilstring(L,argv[4]);
55066 _v = SWIG_lua_isnilstring(L,argv[5]);
55070 _v = SWIG_lua_isnilstring(L,argv[6]);
55074 _v = SWIG_lua_isnilstring(L,argv[7]);
55078 _v = lua_isnumber(L,argv[8]);
55082 _v = lua_isboolean(L,argv[9]);
55087 if (lua_isuserdata(L,argv[10])==0 || SWIG_ConvertPtr(L,argv[10], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
55094 return _wrap_SBTarget_Launch__SWIG_0(L);
55108 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_Launch'\n"
55112 lua_error(L);return 0;
55116 static int _wrap_SBTarget_Attach(lua_State* L) {
55125 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Attach",1,"lldb::SBTarget *");
55126 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::Attach",2,"lldb::SBAttachInfo &");
55127 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::Attach",3,"lldb::SBError &");
55129 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAttachInfo,0))){
55139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
55146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
55152 lua_error(L);
55157 static int _wrap_SBTarget_AttachToProcessWithID(lua_State* L) {
55167 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",1,"lldb::SBTarget *");
55168 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",2,"lldb::SBListener &");
55169 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",3,"lldb::pid_t");
55170 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",4,"lldb::SBError &");
55172 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55177 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
55181 arg3 = (lldb::pid_t)lua_tointeger(L, 3);
55183 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
55190 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
55196 lua_error(L);
55201 static int _wrap_SBTarget_AttachToProcessWithName(lua_State* L) {
55212 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",1,"lldb::SBTarget *");
55213 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",2,"lldb::SBListener &");
55214 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",3,"char const *");
55215 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",4,"bool");
55216 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",5,"lldb::SBError &");
55218 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55223 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
55227 arg3 = (char *)lua_tostring(L, 3);
55228 arg4 = (lua_toboolean(L, 4)!=0);
55230 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
55237 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
55243 lua_error(L);
55248 static int _wrap_SBTarget_ConnectRemote(lua_State* L) {
55259 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",1,"lldb::SBTarget *");
55260 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",2,"lldb::SBListener &");
55261 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",3,"char const *");
55262 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",4,"char const *");
55263 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",5,"lldb::SBError &");
55265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){
55274 arg3 = (char *)lua_tostring(L, 3);
55275 arg4 = (char *)lua_tostring(L, 4);
55277 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
55284 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
55290 lua_error(L);
55295 static int _wrap_SBTarget_GetExecutable(lua_State* L) {
55302 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetExecutable",1,"lldb::SBTarget *");
55304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55311 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
55317 lua_error(L);
55322 static int _wrap_SBTarget_AppendImageSearchPath(lua_State* L) {
55331 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",1,"lldb::SBTarget *");
55332 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",2,"char const *");
55333 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",3,"char const *");
55334 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",4,"lldb::SBError &");
55336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55340 arg2 = (char *)lua_tostring(L, 2);
55341 arg3 = (char *)lua_tostring(L, 3);
55343 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
55353 lua_error(L);
55358 static int _wrap_SBTarget_AddModule__SWIG_0(lua_State* L) {
55366 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *");
55367 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"lldb::SBModule &");
55369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModule,0))){
55379 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
55384 lua_error(L);
55389 static int _wrap_SBTarget_AddModule__SWIG_1(lua_State* L) {
55399 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *");
55400 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"char const *");
55401 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AddModule",3,"char const *");
55402 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::AddModule",4,"char const *");
55404 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55408 arg2 = (char *)lua_tostring(L, 2);
55409 arg3 = (char *)lua_tostring(L, 3);
55410 arg4 = (char *)lua_tostring(L, 4);
55414 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
55420 lua_error(L);
55425 static int _wrap_SBTarget_AddModule__SWIG_2(lua_State* L) {
55436 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *");
55437 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"char const *");
55438 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AddModule",3,"char const *");
55439 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::AddModule",4,"char const *");
55440 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBTarget::AddModule",5,"char const *");
55442 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55446 arg2 = (char *)lua_tostring(L, 2);
55447 arg3 = (char *)lua_tostring(L, 3);
55448 arg4 = (char *)lua_tostring(L, 4);
55449 arg5 = (char *)lua_tostring(L, 5);
55453 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
55459 lua_error(L);
55464 static int _wrap_SBTarget_AddModule__SWIG_3(lua_State* L) {
55472 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *");
55473 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"lldb::SBModuleSpec const &");
55475 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){
55487 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
55493 lua_error(L);
55498 static int _wrap_SBTarget_AddModule(lua_State* L) {
55504 argc = lua_gettop(L);
55509 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
55518 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBModule, SWIG_POINTER_NO_NULL)) {
55525 return _wrap_SBTarget_AddModule__SWIG_0(L);
55533 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
55542 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBModuleSpec, SWIG_POINTER_NO_NULL)) {
55549 return _wrap_SBTarget_AddModule__SWIG_3(L);
55557 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
55565 _v = SWIG_lua_isnilstring(L,argv[1]);
55569 _v = SWIG_lua_isnilstring(L,argv[2]);
55573 _v = SWIG_lua_isnilstring(L,argv[3]);
55576 return _wrap_SBTarget_AddModule__SWIG_1(L);
55586 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
55594 _v = SWIG_lua_isnilstring(L,argv[1]);
55598 _v = SWIG_lua_isnilstring(L,argv[2]);
55602 _v = SWIG_lua_isnilstring(L,argv[3]);
55606 _v = SWIG_lua_isnilstring(L,argv[4]);
55609 return _wrap_SBTarget_AddModule__SWIG_2(L);
55617 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_AddModule'\n"
55623 lua_error(L);return 0;
55627 static int _wrap_SBTarget_GetNumModules(lua_State* L) {
55634 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumModules",1,"lldb::SBTarget const *");
55636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55641 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
55646 lua_error(L);
55651 static int _wrap_SBTarget_GetModuleAtIndex(lua_State* L) {
55659 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndex",1,"lldb::SBTarget *");
55660 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndex",2,"uint32_t");
55662 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55666 arg2 = (uint32_t)lua_tointeger(L, 2);
55670 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
55676 lua_error(L);
55681 static int _wrap_SBTarget_RemoveModule(lua_State* L) {
55690 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::RemoveModule",1,"lldb::SBTarget *");
55691 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::RemoveModule",2,"lldb::SBModule");
55693 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55698 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){
55704 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
55709 lua_error(L);
55714 static int _wrap_SBTarget_GetDebugger(lua_State* L) {
55721 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetDebugger",1,"lldb::SBTarget const *");
55723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55730 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++;
55736 lua_error(L);
55741 static int _wrap_SBTarget_FindModule(lua_State* L) {
55749 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindModule",1,"lldb::SBTarget *");
55750 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::FindModule",2,"lldb::SBFileSpec const &");
55752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
55764 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
55770 lua_error(L);
55775 static int _wrap_SBTarget_FindCompileUnits(lua_State* L) {
55783 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindCompileUnits",1,"lldb::SBTarget *");
55784 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::FindCompileUnits",2,"lldb::SBFileSpec const &");
55786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
55798 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
55804 lua_error(L);
55809 static int _wrap_SBTarget_GetByteOrder(lua_State* L) {
55816 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetByteOrder",1,"lldb::SBTarget *");
55818 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55823 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
55828 lua_error(L);
55833 static int _wrap_SBTarget_GetAddressByteSize(lua_State* L) {
55840 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetAddressByteSize",1,"lldb::SBTarget *");
55842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55847 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
55852 lua_error(L);
55857 static int _wrap_SBTarget_GetTriple(lua_State* L) {
55864 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetTriple",1,"lldb::SBTarget *");
55866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55871 lua_pushstring(L,(const char *)result); SWIG_arg++;
55876 lua_error(L);
55881 static int _wrap_SBTarget_GetABIName(lua_State* L) {
55888 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetABIName",1,"lldb::SBTarget *");
55890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55895 lua_pushstring(L,(const char *)result); SWIG_arg++;
55900 lua_error(L);
55905 static int _wrap_SBTarget_GetLabel(lua_State* L) {
55912 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetLabel",1,"lldb::SBTarget const *");
55914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55919 lua_pushstring(L,(const char *)result); SWIG_arg++;
55924 lua_error(L);
55929 static int _wrap_SBTarget_SetLabel(lua_State* L) {
55937 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetLabel",1,"lldb::SBTarget *");
55938 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::SetLabel",2,"char const *");
55940 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55944 arg2 = (char *)lua_tostring(L, 2);
55948 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
55954 lua_error(L);
55959 static int _wrap_SBTarget_GetDataByteSize(lua_State* L) {
55966 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetDataByteSize",1,"lldb::SBTarget *");
55968 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55973 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
55978 lua_error(L);
55983 static int _wrap_SBTarget_GetCodeByteSize(lua_State* L) {
55990 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetCodeByteSize",1,"lldb::SBTarget *");
55992 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
55997 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
56002 lua_error(L);
56007 static int _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay(lua_State* L) {
56014 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetMaximumNumberOfChildrenToDisplay",1,"lldb::SBTarget const *");
56016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56021 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
56026 lua_error(L);
56031 static int _wrap_SBTarget_SetSectionLoadAddress(lua_State* L) {
56041 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetSectionLoadAddress",1,"lldb::SBTarget *");
56042 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::SetSectionLoadAddress",2,"lldb::SBSection");
56043 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::SetSectionLoadAddress",3,"lldb::addr_t");
56045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56050 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSection,0))){
56055 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
56059 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
56065 lua_error(L);
56070 static int _wrap_SBTarget_ClearSectionLoadAddress(lua_State* L) {
56079 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ClearSectionLoadAddress",1,"lldb::SBTarget *");
56080 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ClearSectionLoadAddress",2,"lldb::SBSection");
56082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSection,0))){
56095 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
56101 lua_error(L);
56106 static int _wrap_SBTarget_SetModuleLoadAddress(lua_State* L) {
56116 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetModuleLoadAddress",1,"lldb::SBTarget *");
56117 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::SetModuleLoadAddress",2,"lldb::SBModule");
56118 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::SetModuleLoadAddress",3,"uint64_t");
56120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56125 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){
56130 arg3 = (uint64_t)lua_tointeger(L, 3);
56134 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
56140 lua_error(L);
56145 static int _wrap_SBTarget_ClearModuleLoadAddress(lua_State* L) {
56154 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ClearModuleLoadAddress",1,"lldb::SBTarget *");
56155 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ClearModuleLoadAddress",2,"lldb::SBModule");
56157 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){
56170 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
56176 lua_error(L);
56181 static int _wrap_SBTarget_FindFunctions__SWIG_0(lua_State* L) {
56190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",1,"lldb::SBTarget *");
56191 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",2,"char const *");
56192 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",3,"uint32_t");
56194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56198 arg2 = (char *)lua_tostring(L, 2);
56199 arg3 = (uint32_t)lua_tointeger(L, 3);
56203 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
56209 lua_error(L);
56214 static int _wrap_SBTarget_FindFunctions__SWIG_1(lua_State* L) {
56222 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",1,"lldb::SBTarget *");
56223 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",2,"char const *");
56225 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56229 arg2 = (char *)lua_tostring(L, 2);
56233 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
56239 lua_error(L);
56244 static int _wrap_SBTarget_FindFunctions(lua_State* L) {
56250 argc = lua_gettop(L);
56255 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
56263 _v = SWIG_lua_isnilstring(L,argv[1]);
56266 return _wrap_SBTarget_FindFunctions__SWIG_1(L);
56274 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
56282 _v = SWIG_lua_isnilstring(L,argv[1]);
56286 _v = lua_isnumber(L,argv[2]);
56289 return _wrap_SBTarget_FindFunctions__SWIG_0(L);
56295 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_FindFunctions'\n"
56299 lua_error(L);return 0;
56303 static int _wrap_SBTarget_FindGlobalVariables__SWIG_0(lua_State* L) {
56312 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",1,"lldb::SBTarget *");
56313 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",2,"char const *");
56314 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",3,"uint32_t");
56316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56320 arg2 = (char *)lua_tostring(L, 2);
56321 arg3 = (uint32_t)lua_tointeger(L, 3);
56325 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
56331 lua_error(L);
56336 static int _wrap_SBTarget_FindFirstGlobalVariable(lua_State* L) {
56344 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFirstGlobalVariable",1,"lldb::SBTarget *");
56345 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFirstGlobalVariable",2,"char const *");
56347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56351 arg2 = (char *)lua_tostring(L, 2);
56355 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
56361 lua_error(L);
56366 static int _wrap_SBTarget_FindGlobalVariables__SWIG_1(lua_State* L) {
56376 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",1,"lldb::SBTarget *");
56377 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",2,"char const *");
56378 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",3,"uint32_t");
56379 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",4,"lldb::MatchType");
56381 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56385 arg2 = (char *)lua_tostring(L, 2);
56386 arg3 = (uint32_t)lua_tointeger(L, 3);
56387 arg4 = (lldb::MatchType)lua_tointeger(L, 4);
56391 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
56397 lua_error(L);
56402 static int _wrap_SBTarget_FindGlobalVariables(lua_State* L) {
56408 argc = lua_gettop(L);
56413 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
56421 _v = SWIG_lua_isnilstring(L,argv[1]);
56425 _v = lua_isnumber(L,argv[2]);
56428 return _wrap_SBTarget_FindGlobalVariables__SWIG_0(L);
56437 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
56445 _v = SWIG_lua_isnilstring(L,argv[1]);
56449 _v = lua_isnumber(L,argv[2]);
56453 _v = lua_isnumber(L,argv[3]);
56456 return _wrap_SBTarget_FindGlobalVariables__SWIG_1(L);
56463 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_FindGlobalVariables'\n"
56467 lua_error(L);return 0;
56471 static int _wrap_SBTarget_FindGlobalFunctions(lua_State* L) {
56481 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",1,"lldb::SBTarget *");
56482 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",2,"char const *");
56483 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",3,"uint32_t");
56484 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",4,"lldb::MatchType");
56486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56490 arg2 = (char *)lua_tostring(L, 2);
56491 arg3 = (uint32_t)lua_tointeger(L, 3);
56492 arg4 = (lldb::MatchType)lua_tointeger(L, 4);
56496 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
56502 lua_error(L);
56507 static int _wrap_SBTarget_Clear(lua_State* L) {
56513 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Clear",1,"lldb::SBTarget *");
56515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56525 lua_error(L);
56530 static int _wrap_SBTarget_ResolveFileAddress(lua_State* L) {
56538 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolveFileAddress",1,"lldb::SBTarget *");
56539 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolveFileAddress",2,"lldb::addr_t");
56541 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56545 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
56549 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
56555 lua_error(L);
56560 static int _wrap_SBTarget_ResolveLoadAddress(lua_State* L) {
56568 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolveLoadAddress",1,"lldb::SBTarget *");
56569 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolveLoadAddress",2,"lldb::addr_t");
56571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56575 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
56579 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
56585 lua_error(L);
56590 static int _wrap_SBTarget_ResolvePastLoadAddress(lua_State* L) {
56599 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolvePastLoadAddress",1,"lldb::SBTarget *");
56600 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolvePastLoadAddress",2,"uint32_t");
56601 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ResolvePastLoadAddress",3,"lldb::addr_t");
56603 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56607 arg2 = (uint32_t)lua_tointeger(L, 2);
56608 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
56612 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
56618 lua_error(L);
56623 static int _wrap_SBTarget_ResolveSymbolContextForAddress(lua_State* L) {
56632 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolveSymbolContextForAddress",1,"lldb::SBTarget *");
56633 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolveSymbolContextForAddress",2,"lldb::SBAddress const &");
56634 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ResolveSymbolContextForAddress",3,"uint32_t");
56636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56641 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
56645 arg3 = (uint32_t)lua_tointeger(L, 3);
56649 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++;
56655 lua_error(L);
56660 static int _wrap_SBTarget_ReadMemory(lua_State* L) {
56672 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadMemory",1,"lldb::SBTarget *");
56673 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadMemory",2,"lldb::SBAddress const");
56674 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::ReadMemory",4,"lldb::SBError &");
56676 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56681 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
56687 arg4 = luaL_checkinteger(L, 3);
56689 return luaL_error(L, "Positive integer expected");
56694 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
56699 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
56701 lua_pop(L, 1); // Blow away the previous result
56703 lua_pushliteral(L, "");
56705 lua_pushlstring(L, (const char *)arg3, result);
56714 lua_error(L);
56719 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0(lua_State* L) {
56728 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTarget *");
56729 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"char const *");
56730 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t");
56732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56736 arg2 = (char *)lua_tostring(L, 2);
56737 arg3 = (uint32_t)lua_tointeger(L, 3);
56741 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
56747 lua_error(L);
56752 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1(lua_State* L) {
56761 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTarget *");
56762 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFileSpec const &");
56763 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t");
56765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56770 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
56774 arg3 = (uint32_t)lua_tointeger(L, 3);
56778 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
56784 lua_error(L);
56789 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2(lua_State* L) {
56799 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTarget *");
56800 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFileSpec const &");
56801 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t");
56802 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"lldb::addr_t");
56804 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56809 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
56813 arg3 = (uint32_t)lua_tointeger(L, 3);
56814 arg4 = (lldb::addr_t)lua_tointeger(L, 4);
56818 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
56824 lua_error(L);
56829 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3(lua_State* L) {
56840 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTarget *");
56841 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFileSpec const &");
56842 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t");
56843 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"lldb::addr_t");
56844 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",5,"lldb::SBFileSpecList &");
56846 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56851 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
56855 arg3 = (uint32_t)lua_tointeger(L, 3);
56856 arg4 = (lldb::addr_t)lua_tointeger(L, 4);
56858 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
56865 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
56871 lua_error(L);
56876 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4(lua_State* L) {
56888 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTarget *");
56889 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFileSpec const &");
56890 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t");
56891 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"uint32_t");
56892 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",5,"lldb::addr_t");
56893 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",6,"lldb::SBFileSpecList &");
56895 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
56904 arg3 = (uint32_t)lua_tointeger(L, 3);
56905 arg4 = (uint32_t)lua_tointeger(L, 4);
56906 arg5 = (lldb::addr_t)lua_tointeger(L, 5);
56908 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){
56915 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
56921 lua_error(L);
56926 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5(lua_State* L) {
56939 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTarget *");
56940 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFileSpec const &");
56941 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t");
56942 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"uint32_t");
56943 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",5,"lldb::addr_t");
56944 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",6,"lldb::SBFileSpecList &");
56945 if(!lua_isboolean(L,7)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",7,"bool");
56947 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
56952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
56956 arg3 = (uint32_t)lua_tointeger(L, 3);
56957 arg4 = (uint32_t)lua_tointeger(L, 4);
56958 arg5 = (lldb::addr_t)lua_tointeger(L, 5);
56960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){
56964 arg7 = (lua_toboolean(L, 7)!=0);
56968 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
56974 lua_error(L);
56979 static int _wrap_SBTarget_BreakpointCreateByLocation(lua_State* L) {
56985 argc = lua_gettop(L);
56990 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
56999 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
57007 _v = lua_isnumber(L,argv[2]);
57010 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1(L);
57019 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57027 _v = SWIG_lua_isnilstring(L,argv[1]);
57031 _v = lua_isnumber(L,argv[2]);
57034 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0(L);
57043 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57052 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
57060 _v = lua_isnumber(L,argv[2]);
57064 _v = lua_isnumber(L,argv[3]);
57067 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2(L);
57077 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57086 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
57094 _v = lua_isnumber(L,argv[2]);
57098 _v = lua_isnumber(L,argv[3]);
57103 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57110 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3(L);
57121 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57130 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
57138 _v = lua_isnumber(L,argv[2]);
57142 _v = lua_isnumber(L,argv[3]);
57146 _v = lua_isnumber(L,argv[4]);
57151 if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57158 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4(L);
57170 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57179 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
57187 _v = lua_isnumber(L,argv[2]);
57191 _v = lua_isnumber(L,argv[3]);
57195 _v = lua_isnumber(L,argv[4]);
57200 if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57208 _v = lua_isboolean(L,argv[6]);
57211 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5(L);
57221 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByLocation'\n"
57229 lua_error(L);return 0;
57233 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_0(lua_State* L) {
57242 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget *");
57243 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char const *");
57244 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"char const *");
57246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57250 arg2 = (char *)lua_tostring(L, 2);
57251 arg3 = (char *)lua_tostring(L, 3);
57255 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57261 lua_error(L);
57266 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_1(lua_State* L) {
57274 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget *");
57275 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char const *");
57277 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57281 arg2 = (char *)lua_tostring(L, 2);
57285 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57291 lua_error(L);
57296 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_2(lua_State* L) {
57306 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget *");
57307 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char const *");
57308 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"lldb::SBFileSpecList const &");
57309 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",4,"lldb::SBFileSpecList const &");
57311 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57315 arg2 = (char *)lua_tostring(L, 2);
57317 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57329 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57335 lua_error(L);
57340 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_3(lua_State* L) {
57351 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget *");
57352 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char const *");
57353 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"uint32_t");
57354 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",4,"lldb::SBFileSpecList const &");
57355 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",5,"lldb::SBFileSpecList const &");
57357 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57361 arg2 = (char *)lua_tostring(L, 2);
57362 arg3 = (uint32_t)lua_tointeger(L, 3);
57364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57376 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57382 lua_error(L);
57387 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_4(lua_State* L) {
57399 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget *");
57400 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char const *");
57401 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"uint32_t");
57402 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",4,"lldb::LanguageType");
57403 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",5,"lldb::SBFileSpecList const &");
57404 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",6,"lldb::SBFileSpecList const &");
57406 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57410 arg2 = (char *)lua_tostring(L, 2);
57411 arg3 = (uint32_t)lua_tointeger(L, 3);
57412 arg4 = (lldb::LanguageType)lua_tointeger(L, 4);
57414 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57426 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57432 lua_error(L);
57437 static int _wrap_SBTarget_BreakpointCreateByName(lua_State* L) {
57443 argc = lua_gettop(L);
57448 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57456 _v = SWIG_lua_isnilstring(L,argv[1]);
57459 return _wrap_SBTarget_BreakpointCreateByName__SWIG_1(L);
57467 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57475 _v = SWIG_lua_isnilstring(L,argv[1]);
57479 _v = SWIG_lua_isnilstring(L,argv[2]);
57482 return _wrap_SBTarget_BreakpointCreateByName__SWIG_0(L);
57491 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57499 _v = SWIG_lua_isnilstring(L,argv[1]);
57504 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57513 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57520 return _wrap_SBTarget_BreakpointCreateByName__SWIG_2(L);
57530 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57538 _v = SWIG_lua_isnilstring(L,argv[1]);
57542 _v = lua_isnumber(L,argv[2]);
57547 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57556 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57563 return _wrap_SBTarget_BreakpointCreateByName__SWIG_3(L);
57574 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57582 _v = SWIG_lua_isnilstring(L,argv[1]);
57586 _v = lua_isnumber(L,argv[2]);
57590 _v = lua_isnumber(L,argv[3]);
57595 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57604 if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57611 return _wrap_SBTarget_BreakpointCreateByName__SWIG_4(L);
57620 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByName'\n"
57627 lua_error(L);return 0;
57631 static int _wrap_SBTarget_BreakpointCreateByNames__SWIG_0(lua_State* L) {
57643 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",1,"lldb::SBTarget *");
57644 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",3,"uint32_t");
57645 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",4,"uint32_t");
57646 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",5,"lldb::SBFileSpecList const &");
57647 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",6,"lldb::SBFileSpecList const &");
57649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57654 if (lua_istable(L, 2)) {
57655 size_t size = lua_rawlen(L, 2);
57659 lua_rawgeti(L, 2, i);
57660 if (!lua_isstring(L, -1)) {
57662 lua_pop(L, 1);
57663 return luaL_error(L, "List should only contain strings");
57665 arg2[j++] = (char *)lua_tostring(L, -1);
57666 lua_pop(L, 1);
57669 } else if (lua_isnil(L, 2)) {
57673 return luaL_error(L, "A list of strings expected");
57676 arg3 = (uint32_t)lua_tointeger(L, 3);
57677 arg4 = (uint32_t)lua_tointeger(L, 4);
57679 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57691 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57703 lua_error(L);
57708 static int _wrap_SBTarget_BreakpointCreateByNames__SWIG_1(lua_State* L) {
57721 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",1,"lldb::SBTarget *");
57722 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",3,"uint32_t");
57723 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",4,"uint32_t");
57724 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",5,"lldb::LanguageType");
57725 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",6,"lldb::SBFileSpecList const &");
57726 if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",7,"lldb::SBFileSpecList const &");
57728 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57733 if (lua_istable(L, 2)) {
57734 size_t size = lua_rawlen(L, 2);
57738 lua_rawgeti(L, 2, i);
57739 if (!lua_isstring(L, -1)) {
57741 lua_pop(L, 1);
57742 return luaL_error(L, "List should only contain strings");
57744 arg2[j++] = (char *)lua_tostring(L, -1);
57745 lua_pop(L, 1);
57748 } else if (lua_isnil(L, 2)) {
57752 return luaL_error(L, "A list of strings expected");
57755 arg3 = (uint32_t)lua_tointeger(L, 3);
57756 arg4 = (uint32_t)lua_tointeger(L, 4);
57757 arg5 = (lldb::LanguageType)lua_tointeger(L, 5);
57759 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57764 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57771 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57783 lua_error(L);
57788 static int _wrap_SBTarget_BreakpointCreateByNames__SWIG_2(lua_State* L) {
57802 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",1,"lldb::SBTarget *");
57803 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",3,"uint32_t");
57804 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",4,"uint32_t");
57805 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",5,"lldb::LanguageType");
57806 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",6,"lldb::addr_t");
57807 if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",7,"lldb::SBFileSpecList const &");
57808 if(!lua_isuserdata(L,8)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",8,"lldb::SBFileSpecList const &");
57810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
57815 if (lua_istable(L, 2)) {
57816 size_t size = lua_rawlen(L, 2);
57820 lua_rawgeti(L, 2, i);
57821 if (!lua_isstring(L, -1)) {
57823 lua_pop(L, 1);
57824 return luaL_error(L, "List should only contain strings");
57826 arg2[j++] = (char *)lua_tostring(L, -1);
57827 lua_pop(L, 1);
57830 } else if (lua_isnil(L, 2)) {
57834 return luaL_error(L, "A list of strings expected");
57837 arg3 = (uint32_t)lua_tointeger(L, 3);
57838 arg4 = (uint32_t)lua_tointeger(L, 4);
57839 arg5 = (lldb::LanguageType)lua_tointeger(L, 5);
57840 arg6 = (lldb::addr_t)lua_tointeger(L, 6);
57842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57847 if (!SWIG_IsOK(SWIG_ConvertPtr(L,8,(void**)&arg8,SWIGTYPE_p_lldb__SBFileSpecList,0))){
57854 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
57866 lua_error(L);
57871 static int _wrap_SBTarget_BreakpointCreateByNames(lua_State* L) {
57877 argc = lua_gettop(L);
57882 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57890 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1]));
57894 _v = lua_isnumber(L,argv[2]);
57898 _v = lua_isnumber(L,argv[3]);
57903 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57912 if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57919 return _wrap_SBTarget_BreakpointCreateByNames__SWIG_0(L);
57931 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57939 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1]));
57943 _v = lua_isnumber(L,argv[2]);
57947 _v = lua_isnumber(L,argv[3]);
57951 _v = lua_isnumber(L,argv[4]);
57956 if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57965 if (lua_isuserdata(L,argv[6])==0 || SWIG_ConvertPtr(L,argv[6], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
57972 return _wrap_SBTarget_BreakpointCreateByNames__SWIG_1(L);
57985 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
57993 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1]));
57997 _v = lua_isnumber(L,argv[2]);
58001 _v = lua_isnumber(L,argv[3]);
58005 _v = lua_isnumber(L,argv[4]);
58009 _v = lua_isnumber(L,argv[5]);
58014 if (lua_isuserdata(L,argv[6])==0 || SWIG_ConvertPtr(L,argv[6], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58023 if (lua_isuserdata(L,argv[7])==0 || SWIG_ConvertPtr(L,argv[7], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58030 return _wrap_SBTarget_BreakpointCreateByNames__SWIG_2(L);
58041 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByNames'\n"
58046 lua_error(L);return 0;
58050 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0(lua_State* L) {
58059 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget *");
58060 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char const *");
58061 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",3,"char const *");
58063 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58067 arg2 = (char *)lua_tostring(L, 2);
58068 arg3 = (char *)lua_tostring(L, 3);
58072 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58078 lua_error(L);
58083 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1(lua_State* L) {
58091 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget *");
58092 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char const *");
58094 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58098 arg2 = (char *)lua_tostring(L, 2);
58102 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58108 lua_error(L);
58113 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2(lua_State* L) {
58123 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget *");
58124 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char const *");
58125 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",3,"lldb::SBFileSpecList const &");
58126 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",4,"lldb::SBFileSpecList const &");
58128 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58132 arg2 = (char *)lua_tostring(L, 2);
58134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58152 lua_error(L);
58157 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3(lua_State* L) {
58168 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget *");
58169 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char const *");
58170 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",3,"lldb::LanguageType");
58171 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",4,"lldb::SBFileSpecList const &");
58172 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",5,"lldb::SBFileSpecList const &");
58174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58178 arg2 = (char *)lua_tostring(L, 2);
58179 arg3 = (lldb::LanguageType)lua_tointeger(L, 3);
58181 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58186 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58193 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58199 lua_error(L);
58204 static int _wrap_SBTarget_BreakpointCreateByRegex(lua_State* L) {
58210 argc = lua_gettop(L);
58215 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58223 _v = SWIG_lua_isnilstring(L,argv[1]);
58226 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1(L);
58234 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58242 _v = SWIG_lua_isnilstring(L,argv[1]);
58246 _v = SWIG_lua_isnilstring(L,argv[2]);
58249 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0(L);
58258 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58266 _v = SWIG_lua_isnilstring(L,argv[1]);
58271 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58280 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58287 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2(L);
58297 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58305 _v = SWIG_lua_isnilstring(L,argv[1]);
58309 _v = lua_isnumber(L,argv[2]);
58314 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58323 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58330 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3(L);
58338 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByRegex'\n"
58344 lua_error(L);return 0;
58348 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0(lua_State* L) {
58358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SBTarget *");
58359 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"char const *");
58360 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SBFileSpec const &");
58361 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",4,"char const *");
58363 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58367 arg2 = (char *)lua_tostring(L, 2);
58369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
58373 arg4 = (char *)lua_tostring(L, 4);
58377 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58383 lua_error(L);
58388 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1(lua_State* L) {
58397 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SBTarget *");
58398 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"char const *");
58399 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SBFileSpec const &");
58401 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58405 arg2 = (char *)lua_tostring(L, 2);
58407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
58414 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58420 lua_error(L);
58425 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2(lua_State* L) {
58435 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SBTarget *");
58436 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"char const *");
58437 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SBFileSpecList const &");
58438 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",4,"lldb::SBFileSpecList const &");
58440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58444 arg2 = (char *)lua_tostring(L, 2);
58446 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58451 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58458 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58464 lua_error(L);
58469 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3(lua_State* L) {
58480 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SBTarget *");
58481 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"char const *");
58482 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SBFileSpecList const &");
58483 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",4,"lldb::SBFileSpecList const &");
58484 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",5,"lldb::SBStringList const &");
58486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58490 arg2 = (char *)lua_tostring(L, 2);
58492 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58497 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58502 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBStringList,0))){
58509 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58515 lua_error(L);
58520 static int _wrap_SBTarget_BreakpointCreateBySourceRegex(lua_State* L) {
58526 argc = lua_gettop(L);
58531 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58539 _v = SWIG_lua_isnilstring(L,argv[1]);
58544 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
58551 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1(L);
58560 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58568 _v = SWIG_lua_isnilstring(L,argv[1]);
58573 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
58581 _v = SWIG_lua_isnilstring(L,argv[3]);
58584 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0(L);
58594 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58602 _v = SWIG_lua_isnilstring(L,argv[1]);
58607 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58616 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58623 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2(L);
58633 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58641 _v = SWIG_lua_isnilstring(L,argv[1]);
58646 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58655 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58664 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, SWIG_POINTER_NO_NULL)) {
58671 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3(L);
58679 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateBySourceRegex'\n"
58685 lua_error(L);return 0;
58689 static int _wrap_SBTarget_BreakpointCreateForException(lua_State* L) {
58699 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",1,"lldb::SBTarget *");
58700 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",2,"lldb::LanguageType");
58701 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",3,"bool");
58702 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",4,"bool");
58704 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58708 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
58709 arg3 = (lua_toboolean(L, 3)!=0);
58710 arg4 = (lua_toboolean(L, 4)!=0);
58714 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58720 lua_error(L);
58725 static int _wrap_SBTarget_BreakpointCreateByAddress(lua_State* L) {
58733 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByAddress",1,"lldb::SBTarget *");
58734 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByAddress",2,"lldb::addr_t");
58736 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58740 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
58744 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58750 lua_error(L);
58755 static int _wrap_SBTarget_BreakpointCreateBySBAddress(lua_State* L) {
58763 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySBAddress",1,"lldb::SBTarget *");
58764 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySBAddress",2,"lldb::SBAddress &");
58766 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58771 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
58778 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58784 lua_error(L);
58789 static int _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0(lua_State* L) {
58801 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",1,"lldb::SBTarget *");
58802 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",2,"char const *");
58803 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",3,"lldb::SBStructuredData &");
58804 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",4,"lldb::SBFileSpecList const &");
58805 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",5,"lldb::SBFileSpecList const &");
58806 if(!lua_isboolean(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",6,"bool");
58808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58812 arg2 = (char *)lua_tostring(L, 2);
58814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
58819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58824 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58828 arg6 = (lua_toboolean(L, 6)!=0);
58832 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58838 lua_error(L);
58843 static int _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1(lua_State* L) {
58854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",1,"lldb::SBTarget *");
58855 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",2,"char const *");
58856 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",3,"lldb::SBStructuredData &");
58857 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",4,"lldb::SBFileSpecList const &");
58858 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",5,"lldb::SBFileSpecList const &");
58860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
58864 arg2 = (char *)lua_tostring(L, 2);
58866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
58871 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58876 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){
58883 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
58889 lua_error(L);
58894 static int _wrap_SBTarget_BreakpointCreateFromScript(lua_State* L) {
58900 argc = lua_gettop(L);
58905 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58913 _v = SWIG_lua_isnilstring(L,argv[1]);
58918 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
58927 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58936 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58943 return _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1(L);
58954 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
58962 _v = SWIG_lua_isnilstring(L,argv[1]);
58967 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
58976 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58985 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpecList, SWIG_POINTER_NO_NULL)) {
58993 _v = lua_isboolean(L,argv[5]);
58996 return _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0(L);
59005 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateFromScript'\n"
59009 lua_error(L);return 0;
59013 static int _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0(lua_State* L) {
59022 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",1,"lldb::SBTarget *");
59023 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",2,"lldb::SBFileSpec &");
59024 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",3,"lldb::SBBreakpointList &");
59026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59031 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
59036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){
59043 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
59049 lua_error(L);
59054 static int _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1(lua_State* L) {
59064 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",1,"lldb::SBTarget *");
59065 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",2,"lldb::SBFileSpec &");
59066 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",3,"lldb::SBStringList &");
59067 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",4,"lldb::SBBreakpointList &");
59069 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
59079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStringList,0))){
59084 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBBreakpointList,0))){
59091 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
59097 lua_error(L);
59102 static int _wrap_SBTarget_BreakpointsCreateFromFile(lua_State* L) {
59108 argc = lua_gettop(L);
59113 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
59122 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
59131 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointList, SWIG_POINTER_NO_NULL)) {
59138 return _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0(L);
59147 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
59156 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
59165 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStringList, SWIG_POINTER_NO_NULL)) {
59174 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointList, SWIG_POINTER_NO_NULL)) {
59181 return _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1(L);
59188 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointsCreateFromFile'\n"
59192 lua_error(L);return 0;
59196 static int _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0(lua_State* L) {
59204 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",1,"lldb::SBTarget *");
59205 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",2,"lldb::SBFileSpec &");
59207 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
59219 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
59225 lua_error(L);
59230 static int _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1(lua_State* L) {
59240 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",1,"lldb::SBTarget *");
59241 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",2,"lldb::SBFileSpec &");
59242 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",3,"lldb::SBBreakpointList &");
59243 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",4,"bool");
59245 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59250 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
59255 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){
59259 arg4 = (lua_toboolean(L, 4)!=0);
59263 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
59269 lua_error(L);
59274 static int _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2(lua_State* L) {
59283 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",1,"lldb::SBTarget *");
59284 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",2,"lldb::SBFileSpec &");
59285 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",3,"lldb::SBBreakpointList &");
59287 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
59297 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){
59304 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
59310 lua_error(L);
59315 static int _wrap_SBTarget_BreakpointsWriteToFile(lua_State* L) {
59321 argc = lua_gettop(L);
59326 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
59335 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
59342 return _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0(L);
59350 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
59359 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
59368 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointList, SWIG_POINTER_NO_NULL)) {
59375 return _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2(L);
59384 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
59393 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
59402 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBBreakpointList, SWIG_POINTER_NO_NULL)) {
59410 _v = lua_isboolean(L,argv[3]);
59413 return _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1(L);
59420 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointsWriteToFile'\n"
59425 lua_error(L);return 0;
59429 static int _wrap_SBTarget_GetNumBreakpoints(lua_State* L) {
59436 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumBreakpoints",1,"lldb::SBTarget const *");
59438 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59443 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
59448 lua_error(L);
59453 static int _wrap_SBTarget_GetBreakpointAtIndex(lua_State* L) {
59461 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointAtIndex",1,"lldb::SBTarget const *");
59462 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointAtIndex",2,"uint32_t");
59464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59468 arg2 = (uint32_t)lua_tointeger(L, 2);
59472 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
59478 lua_error(L);
59483 static int _wrap_SBTarget_BreakpointDelete(lua_State* L) {
59491 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointDelete",1,"lldb::SBTarget *");
59492 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointDelete",2,"lldb::break_id_t");
59494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59498 arg2 = (lldb::break_id_t)lua_tointeger(L, 2);
59500 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59505 lua_error(L);
59510 static int _wrap_SBTarget_FindBreakpointByID(lua_State* L) {
59518 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointByID",1,"lldb::SBTarget *");
59519 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointByID",2,"lldb::break_id_t");
59521 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59525 arg2 = (lldb::break_id_t)lua_tointeger(L, 2);
59529 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++;
59535 lua_error(L);
59540 static int _wrap_SBTarget_FindBreakpointsByName(lua_State* L) {
59549 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointsByName",1,"lldb::SBTarget *");
59550 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointsByName",2,"char const *");
59551 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointsByName",3,"lldb::SBBreakpointList &");
59553 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59557 arg2 = (char *)lua_tostring(L, 2);
59559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){
59564 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59569 lua_error(L);
59574 static int _wrap_SBTarget_GetBreakpointNames(lua_State* L) {
59581 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointNames",1,"lldb::SBTarget *");
59582 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointNames",2,"lldb::SBStringList &");
59584 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59589 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){
59599 lua_error(L);
59604 static int _wrap_SBTarget_DeleteBreakpointName(lua_State* L) {
59611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteBreakpointName",1,"lldb::SBTarget *");
59612 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::DeleteBreakpointName",2,"char const *");
59614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59618 arg2 = (char *)lua_tostring(L, 2);
59625 lua_error(L);
59630 static int _wrap_SBTarget_EnableAllBreakpoints(lua_State* L) {
59637 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EnableAllBreakpoints",1,"lldb::SBTarget *");
59639 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59644 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59649 lua_error(L);
59654 static int _wrap_SBTarget_DisableAllBreakpoints(lua_State* L) {
59661 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DisableAllBreakpoints",1,"lldb::SBTarget *");
59663 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59668 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59673 lua_error(L);
59678 static int _wrap_SBTarget_DeleteAllBreakpoints(lua_State* L) {
59685 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteAllBreakpoints",1,"lldb::SBTarget *");
59687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59692 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59697 lua_error(L);
59702 static int _wrap_SBTarget_GetNumWatchpoints(lua_State* L) {
59709 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumWatchpoints",1,"lldb::SBTarget const *");
59711 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59716 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
59721 lua_error(L);
59726 static int _wrap_SBTarget_GetWatchpointAtIndex(lua_State* L) {
59734 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetWatchpointAtIndex",1,"lldb::SBTarget const *");
59735 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetWatchpointAtIndex",2,"uint32_t");
59737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59741 arg2 = (uint32_t)lua_tointeger(L, 2);
59745 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
59751 lua_error(L);
59756 static int _wrap_SBTarget_DeleteWatchpoint(lua_State* L) {
59764 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteWatchpoint",1,"lldb::SBTarget *");
59765 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::DeleteWatchpoint",2,"lldb::watch_id_t");
59767 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59771 arg2 = (lldb::watch_id_t)lua_tointeger(L, 2);
59773 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59778 lua_error(L);
59783 static int _wrap_SBTarget_FindWatchpointByID(lua_State* L) {
59791 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindWatchpointByID",1,"lldb::SBTarget *");
59792 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::FindWatchpointByID",2,"lldb::watch_id_t");
59794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59798 arg2 = (lldb::watch_id_t)lua_tointeger(L, 2);
59802 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
59808 lua_error(L);
59813 static int _wrap_SBTarget_WatchAddress(lua_State* L) {
59825 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",1,"lldb::SBTarget *");
59826 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",2,"lldb::addr_t");
59827 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",3,"size_t");
59828 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",4,"bool");
59829 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",5,"bool");
59830 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",6,"lldb::SBError &");
59832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59836 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
59837 arg3 = (size_t)lua_tointeger(L, 3);
59838 arg4 = (lua_toboolean(L, 4)!=0);
59839 arg5 = (lua_toboolean(L, 5)!=0);
59841 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBError,0))){
59848 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
59854 lua_error(L);
59859 static int _wrap_SBTarget_WatchpointCreateByAddress(lua_State* L) {
59871 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",1,"lldb::SBTarget *");
59872 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",2,"lldb::addr_t");
59873 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",3,"size_t");
59874 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",4,"lldb::SBWatchpointOptions");
59875 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",5,"lldb::SBError &");
59877 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59881 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
59882 arg3 = (size_t)lua_tointeger(L, 3);
59884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){
59890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
59897 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
59903 lua_error(L);
59908 static int _wrap_SBTarget_EnableAllWatchpoints(lua_State* L) {
59915 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EnableAllWatchpoints",1,"lldb::SBTarget *");
59917 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59922 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59927 lua_error(L);
59932 static int _wrap_SBTarget_DisableAllWatchpoints(lua_State* L) {
59939 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DisableAllWatchpoints",1,"lldb::SBTarget *");
59941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59951 lua_error(L);
59956 static int _wrap_SBTarget_DeleteAllWatchpoints(lua_State* L) {
59963 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteAllWatchpoints",1,"lldb::SBTarget *");
59965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
59975 lua_error(L);
59980 static int _wrap_SBTarget_GetBroadcaster(lua_State* L) {
59987 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBroadcaster",1,"lldb::SBTarget const *");
59989 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
59996 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++;
60002 lua_error(L);
60007 static int _wrap_SBTarget_FindFirstType(lua_State* L) {
60015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFirstType",1,"lldb::SBTarget *");
60016 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFirstType",2,"char const *");
60018 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60022 arg2 = (char *)lua_tostring(L, 2);
60026 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
60032 lua_error(L);
60037 static int _wrap_SBTarget_FindTypes(lua_State* L) {
60045 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindTypes",1,"lldb::SBTarget *");
60046 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindTypes",2,"char const *");
60048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60052 arg2 = (char *)lua_tostring(L, 2);
60056 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
60062 lua_error(L);
60067 static int _wrap_SBTarget_GetBasicType(lua_State* L) {
60075 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBasicType",1,"lldb::SBTarget *");
60076 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetBasicType",2,"lldb::BasicType");
60078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60082 arg2 = (lldb::BasicType)lua_tointeger(L, 2);
60086 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
60092 lua_error(L);
60097 static int _wrap_SBTarget_CreateValueFromAddress(lua_State* L) {
60109 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",1,"lldb::SBTarget *");
60110 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",2,"char const *");
60111 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",3,"lldb::SBAddress");
60112 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",4,"lldb::SBType");
60114 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60118 arg2 = (char *)lua_tostring(L, 2);
60120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBAddress,0))){
60126 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){
60134 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
60140 lua_error(L);
60145 static int _wrap_SBTarget_CreateValueFromData(lua_State* L) {
60157 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",1,"lldb::SBTarget *");
60158 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",2,"char const *");
60159 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",3,"lldb::SBData");
60160 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",4,"lldb::SBType");
60162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60166 arg2 = (char *)lua_tostring(L, 2);
60168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBData,0))){
60174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){
60182 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
60188 lua_error(L);
60193 static int _wrap_SBTarget_CreateValueFromExpression(lua_State* L) {
60202 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromExpression",1,"lldb::SBTarget *");
60203 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromExpression",2,"char const *");
60204 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromExpression",3,"char const *");
60206 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60210 arg2 = (char *)lua_tostring(L, 2);
60211 arg3 = (char *)lua_tostring(L, 3);
60215 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
60221 lua_error(L);
60226 static int _wrap_SBTarget_GetSourceManager(lua_State* L) {
60233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetSourceManager",1,"lldb::SBTarget *");
60235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60242 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++;
60248 lua_error(L);
60253 static int _wrap_SBTarget_ReadInstructions__SWIG_0(lua_State* L) {
60263 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",1,"lldb::SBTarget *");
60264 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",2,"lldb::SBAddress");
60265 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",3,"uint32_t");
60267 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60272 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
60277 arg3 = (uint32_t)lua_tointeger(L, 3);
60281 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
60287 lua_error(L);
60292 static int _wrap_SBTarget_ReadInstructions__SWIG_1(lua_State* L) {
60303 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",1,"lldb::SBTarget *");
60304 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",2,"lldb::SBAddress");
60305 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",3,"uint32_t");
60306 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",4,"char const *");
60308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60313 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
60318 arg3 = (uint32_t)lua_tointeger(L, 3);
60319 arg4 = (char *)lua_tostring(L, 4);
60323 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
60329 lua_error(L);
60334 static int _wrap_SBTarget_ReadInstructions__SWIG_2(lua_State* L) {
60346 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",1,"lldb::SBTarget *");
60347 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",2,"lldb::SBAddress");
60348 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",3,"lldb::SBAddress");
60349 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",4,"char const *");
60351 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
60362 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBAddress,0))){
60367 arg4 = (char *)lua_tostring(L, 4);
60371 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
60377 lua_error(L);
60382 static int _wrap_SBTarget_ReadInstructions(lua_State* L) {
60388 argc = lua_gettop(L);
60393 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60402 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
60410 _v = lua_isnumber(L,argv[2]);
60413 return _wrap_SBTarget_ReadInstructions__SWIG_0(L);
60422 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60431 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
60440 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
60448 _v = SWIG_lua_isnilstring(L,argv[3]);
60451 return _wrap_SBTarget_ReadInstructions__SWIG_2(L);
60461 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60470 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
60478 _v = lua_isnumber(L,argv[2]);
60482 _v = SWIG_lua_isnilstring(L,argv[3]);
60485 return _wrap_SBTarget_ReadInstructions__SWIG_1(L);
60492 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_ReadInstructions'\n"
60497 lua_error(L);return 0;
60501 static int _wrap_SBTarget_GetInstructions(lua_State* L) {
60512 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetInstructions",1,"lldb::SBTarget *");
60513 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetInstructions",2,"lldb::SBAddress");
60515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
60526 arg3 = (void *)luaL_checklstring(L, 3, &arg4);
60531 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
60537 lua_error(L);
60542 static int _wrap_SBTarget_GetInstructionsWithFlavor(lua_State* L) {
60554 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetInstructionsWithFlavor",1,"lldb::SBTarget *");
60555 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetInstructionsWithFlavor",2,"lldb::SBAddress");
60556 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::GetInstructionsWithFlavor",3,"char const *");
60558 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60563 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
60568 arg3 = (char *)lua_tostring(L, 3);
60570 arg4 = (void *)luaL_checklstring(L, 4, &arg5);
60575 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++;
60581 lua_error(L);
60586 static int _wrap_SBTarget_FindSymbols__SWIG_0(lua_State* L) {
60595 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",1,"lldb::SBTarget *");
60596 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",2,"char const *");
60597 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",3,"lldb::SymbolType");
60599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60603 arg2 = (char *)lua_tostring(L, 2);
60604 arg3 = (lldb::SymbolType)lua_tointeger(L, 3);
60608 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
60614 lua_error(L);
60619 static int _wrap_SBTarget_FindSymbols__SWIG_1(lua_State* L) {
60627 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",1,"lldb::SBTarget *");
60628 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",2,"char const *");
60630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60634 arg2 = (char *)lua_tostring(L, 2);
60638 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++;
60644 lua_error(L);
60649 static int _wrap_SBTarget_FindSymbols(lua_State* L) {
60655 argc = lua_gettop(L);
60660 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60668 _v = SWIG_lua_isnilstring(L,argv[1]);
60671 return _wrap_SBTarget_FindSymbols__SWIG_1(L);
60679 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60687 _v = SWIG_lua_isnilstring(L,argv[1]);
60691 _v = lua_isnumber(L,argv[2]);
60694 return _wrap_SBTarget_FindSymbols__SWIG_0(L);
60700 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_FindSymbols'\n"
60704 lua_error(L);return 0;
60708 static int _wrap_SBTarget___eq(lua_State* L) {
60716 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::operator ==",1,"lldb::SBTarget const *");
60717 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::operator ==",2,"lldb::SBTarget const &");
60719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
60729 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
60734 lua_error(L);
60739 static int _wrap_SBTarget_GetDescription(lua_State* L) {
60748 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetDescription",1,"lldb::SBTarget *");
60749 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetDescription",2,"lldb::SBStream &");
60750 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::GetDescription",3,"lldb::DescriptionLevel");
60752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
60761 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
60763 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
60768 lua_error(L);
60773 static int _wrap_SBTarget_EvaluateExpression__SWIG_0(lua_State* L) {
60781 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",1,"lldb::SBTarget *");
60782 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",2,"char const *");
60784 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60788 arg2 = (char *)lua_tostring(L, 2);
60792 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
60798 lua_error(L);
60803 static int _wrap_SBTarget_EvaluateExpression__SWIG_1(lua_State* L) {
60812 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",1,"lldb::SBTarget *");
60813 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",2,"char const *");
60814 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",3,"lldb::SBExpressionOptions const &");
60816 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60820 arg2 = (char *)lua_tostring(L, 2);
60822 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
60829 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
60835 lua_error(L);
60840 static int _wrap_SBTarget_EvaluateExpression(lua_State* L) {
60846 argc = lua_gettop(L);
60851 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60859 _v = SWIG_lua_isnilstring(L,argv[1]);
60862 return _wrap_SBTarget_EvaluateExpression__SWIG_0(L);
60870 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTarget, 0)) {
60878 _v = SWIG_lua_isnilstring(L,argv[1]);
60883 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, SWIG_POINTER_NO_NULL)) {
60890 return _wrap_SBTarget_EvaluateExpression__SWIG_1(L);
60896 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_EvaluateExpression'\n"
60900 lua_error(L);return 0;
60904 static int _wrap_SBTarget_GetStackRedZoneSize(lua_State* L) {
60911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetStackRedZoneSize",1,"lldb::SBTarget *");
60913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60918 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
60923 lua_error(L);
60928 static int _wrap_SBTarget_IsLoaded(lua_State* L) {
60936 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::IsLoaded",1,"lldb::SBTarget const *");
60937 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::IsLoaded",2,"lldb::SBModule const &");
60939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModule,0))){
60949 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
60954 lua_error(L);
60959 static int _wrap_SBTarget_GetLaunchInfo(lua_State* L) {
60966 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetLaunchInfo",1,"lldb::SBTarget const *");
60968 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
60975 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLaunchInfo,1); SWIG_arg++;
60981 lua_error(L);
60986 static int _wrap_SBTarget_SetLaunchInfo(lua_State* L) {
60993 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetLaunchInfo",1,"lldb::SBTarget *");
60994 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::SetLaunchInfo",2,"lldb::SBLaunchInfo const &");
60996 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
61001 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLaunchInfo,0))){
61011 lua_error(L);
61016 static int _wrap_SBTarget_GetTrace(lua_State* L) {
61023 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetTrace",1,"lldb::SBTarget *");
61025 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
61032 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++;
61038 lua_error(L);
61043 static int _wrap_SBTarget_CreateTrace(lua_State* L) {
61051 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateTrace",1,"lldb::SBTarget *");
61052 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateTrace",2,"lldb::SBError &");
61054 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
61059 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
61066 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++;
61072 lua_error(L);
61077 static int _wrap_SBTarget___tostring(lua_State* L) {
61084 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::__repr__",1,"lldb::SBTarget *");
61086 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){
61091 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
61096 lua_error(L);
61105 static int _proxy__wrap_new_SBTarget(lua_State *L) {
61106 assert(lua_istable(L,1));
61107 lua_pushcfunction(L,_wrap_new_SBTarget);
61108 assert(!lua_isnil(L,-1));
61109 lua_replace(L,1); /* replace our table with real constructor */
61110 lua_call(L,lua_gettop(L)-1,1);
61260 static int _wrap_SBThread_GetBroadcasterClassName(lua_State* L) {
61267 lua_pushstring(L,(const char *)result); SWIG_arg++;
61272 lua_error(L);
61277 static int _wrap_new_SBThread__SWIG_0(lua_State* L) {
61284 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
61289 lua_error(L);
61294 static int _wrap_new_SBThread__SWIG_1(lua_State* L) {
61301 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::SBThread",1,"lldb::SBThread const &");
61303 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61308 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
61313 lua_error(L);
61318 static int _wrap_new_SBThread(lua_State* L) {
61324 argc = lua_gettop(L);
61326 return _wrap_new_SBThread__SWIG_0(L);
61332 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, SWIG_POINTER_NO_NULL)) {
61339 return _wrap_new_SBThread__SWIG_1(L);
61343 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBThread'\n"
61347 lua_error(L);return 0;
61351 static int _wrap_SBThread_GetQueue(lua_State* L) {
61358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetQueue",1,"lldb::SBThread const *");
61360 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61367 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++;
61373 lua_error(L);
61378 static int _wrap_SBThread_IsValid(lua_State* L) {
61385 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::IsValid",1,"lldb::SBThread const *");
61387 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61392 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
61397 lua_error(L);
61402 static int _wrap_SBThread_Clear(lua_State* L) {
61408 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Clear",1,"lldb::SBThread *");
61410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61420 lua_error(L);
61425 static int _wrap_SBThread_GetStopReason(lua_State* L) {
61432 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReason",1,"lldb::SBThread *");
61434 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61439 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61444 lua_error(L);
61449 static int _wrap_SBThread_GetStopReasonDataCount(lua_State* L) {
61456 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonDataCount",1,"lldb::SBThread *");
61458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61463 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61468 lua_error(L);
61473 static int _wrap_SBThread_GetStopReasonDataAtIndex(lua_State* L) {
61481 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonDataAtIndex",1,"lldb::SBThread *");
61482 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::GetStopReasonDataAtIndex",2,"uint32_t");
61484 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61488 arg2 = (uint32_t)lua_tointeger(L, 2);
61490 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61495 lua_error(L);
61500 static int _wrap_SBThread_GetStopReasonExtendedInfoAsJSON(lua_State* L) {
61508 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedInfoAsJSON",1,"lldb::SBThread *");
61509 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedInfoAsJSON",2,"lldb::SBStream &");
61511 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61516 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
61521 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
61526 lua_error(L);
61531 static int _wrap_SBThread_GetStopReasonExtendedBacktraces(lua_State* L) {
61539 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedBacktraces",1,"lldb::SBThread *");
61540 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedBacktraces",2,"lldb::InstrumentationRuntimeType");
61542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61546 arg2 = (lldb::InstrumentationRuntimeType)lua_tointeger(L, 2);
61550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++;
61556 lua_error(L);
61561 static int _wrap_SBThread_GetStopDescription(lua_State* L) {
61570 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopDescription",1,"lldb::SBThread *");
61572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61577 arg3 = luaL_checkinteger(L, 2);
61579 return luaL_error(L, "Positive integer expected");
61584 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61586 lua_pop(L, 1); // Blow away the previous result
61587 lua_pushlstring(L, (const char *)arg2, result);
61595 lua_error(L);
61600 static int _wrap_SBThread_GetStopReturnValue(lua_State* L) {
61607 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReturnValue",1,"lldb::SBThread *");
61609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61616 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
61622 lua_error(L);
61627 static int _wrap_SBThread_GetThreadID(lua_State* L) {
61634 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetThreadID",1,"lldb::SBThread const *");
61636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61641 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61646 lua_error(L);
61651 static int _wrap_SBThread_GetIndexID(lua_State* L) {
61658 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetIndexID",1,"lldb::SBThread const *");
61660 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61665 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61670 lua_error(L);
61675 static int _wrap_SBThread_GetName(lua_State* L) {
61682 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetName",1,"lldb::SBThread const *");
61684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61689 lua_pushstring(L,(const char *)result); SWIG_arg++;
61694 lua_error(L);
61699 static int _wrap_SBThread_GetQueueName(lua_State* L) {
61706 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetQueueName",1,"lldb::SBThread const *");
61708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61713 lua_pushstring(L,(const char *)result); SWIG_arg++;
61718 lua_error(L);
61723 static int _wrap_SBThread_GetQueueID(lua_State* L) {
61730 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetQueueID",1,"lldb::SBThread const *");
61732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61737 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
61742 lua_error(L);
61747 static int _wrap_SBThread_GetInfoItemByPathAsString(lua_State* L) {
61756 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetInfoItemByPathAsString",1,"lldb::SBThread *");
61757 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::GetInfoItemByPathAsString",2,"char const *");
61758 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::GetInfoItemByPathAsString",3,"lldb::SBStream &");
61760 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61764 arg2 = (char *)lua_tostring(L, 2);
61766 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStream,0))){
61771 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
61776 lua_error(L);
61781 static int _wrap_SBThread_StepOver__SWIG_0(lua_State* L) {
61788 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOver",1,"lldb::SBThread *");
61789 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::StepOver",2,"lldb::RunMode");
61791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61795 arg2 = (lldb::RunMode)lua_tointeger(L, 2);
61802 lua_error(L);
61807 static int _wrap_SBThread_StepOver__SWIG_1(lua_State* L) {
61813 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOver",1,"lldb::SBThread *");
61815 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61825 lua_error(L);
61830 static int _wrap_SBThread_StepOver__SWIG_2(lua_State* L) {
61838 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOver",1,"lldb::SBThread *");
61839 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::StepOver",2,"lldb::RunMode");
61840 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepOver",3,"lldb::SBError &");
61842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61846 arg2 = (lldb::RunMode)lua_tointeger(L, 2);
61848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
61858 lua_error(L);
61863 static int _wrap_SBThread_StepOver(lua_State* L) {
61869 argc = lua_gettop(L);
61874 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
61881 return _wrap_SBThread_StepOver__SWIG_1(L);
61888 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
61896 _v = lua_isnumber(L,argv[1]);
61899 return _wrap_SBThread_StepOver__SWIG_0(L);
61907 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
61915 _v = lua_isnumber(L,argv[1]);
61920 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
61927 return _wrap_SBThread_StepOver__SWIG_2(L);
61933 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepOver'\n"
61938 lua_error(L);return 0;
61942 static int _wrap_SBThread_StepInto__SWIG_0(lua_State* L) {
61949 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *");
61950 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"lldb::RunMode");
61952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61956 arg2 = (lldb::RunMode)lua_tointeger(L, 2);
61963 lua_error(L);
61968 static int _wrap_SBThread_StepInto__SWIG_1(lua_State* L) {
61974 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *");
61976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
61986 lua_error(L);
61991 static int _wrap_SBThread_StepInto__SWIG_2(lua_State* L) {
61999 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *");
62000 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *");
62001 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::StepInto",3,"lldb::RunMode");
62003 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62007 arg2 = (char *)lua_tostring(L, 2);
62008 arg3 = (lldb::RunMode)lua_tointeger(L, 3);
62015 lua_error(L);
62020 static int _wrap_SBThread_StepInto__SWIG_3(lua_State* L) {
62027 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *");
62028 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *");
62030 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62034 arg2 = (char *)lua_tostring(L, 2);
62041 lua_error(L);
62046 static int _wrap_SBThread_StepInto__SWIG_4(lua_State* L) {
62056 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *");
62057 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *");
62058 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::StepInto",3,"uint32_t");
62059 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThread::StepInto",4,"lldb::SBError &");
62060 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBThread::StepInto",5,"lldb::RunMode");
62062 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62066 arg2 = (char *)lua_tostring(L, 2);
62067 arg3 = (uint32_t)lua_tointeger(L, 3);
62069 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
62073 arg5 = (lldb::RunMode)lua_tointeger(L, 5);
62080 lua_error(L);
62085 static int _wrap_SBThread_StepInto__SWIG_5(lua_State* L) {
62094 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *");
62095 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *");
62096 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::StepInto",3,"uint32_t");
62097 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThread::StepInto",4,"lldb::SBError &");
62099 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62103 arg2 = (char *)lua_tostring(L, 2);
62104 arg3 = (uint32_t)lua_tointeger(L, 3);
62106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
62116 lua_error(L);
62121 static int _wrap_SBThread_StepInto(lua_State* L) {
62127 argc = lua_gettop(L);
62132 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62139 return _wrap_SBThread_StepInto__SWIG_1(L);
62146 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62154 _v = lua_isnumber(L,argv[1]);
62157 return _wrap_SBThread_StepInto__SWIG_0(L);
62165 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62173 _v = SWIG_lua_isnilstring(L,argv[1]);
62176 return _wrap_SBThread_StepInto__SWIG_3(L);
62184 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62192 _v = SWIG_lua_isnilstring(L,argv[1]);
62196 _v = lua_isnumber(L,argv[2]);
62199 return _wrap_SBThread_StepInto__SWIG_2(L);
62208 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62216 _v = SWIG_lua_isnilstring(L,argv[1]);
62220 _v = lua_isnumber(L,argv[2]);
62225 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
62232 return _wrap_SBThread_StepInto__SWIG_5(L);
62242 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62250 _v = SWIG_lua_isnilstring(L,argv[1]);
62254 _v = lua_isnumber(L,argv[2]);
62259 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
62267 _v = lua_isnumber(L,argv[4]);
62270 return _wrap_SBThread_StepInto__SWIG_4(L);
62278 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepInto'\n"
62286 lua_error(L);return 0;
62290 static int _wrap_SBThread_StepOut__SWIG_0(lua_State* L) {
62296 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOut",1,"lldb::SBThread *");
62298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62308 lua_error(L);
62313 static int _wrap_SBThread_StepOut__SWIG_1(lua_State* L) {
62320 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOut",1,"lldb::SBThread *");
62321 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOut",2,"lldb::SBError &");
62323 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62328 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
62338 lua_error(L);
62343 static int _wrap_SBThread_StepOut(lua_State* L) {
62349 argc = lua_gettop(L);
62354 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62361 return _wrap_SBThread_StepOut__SWIG_0(L);
62368 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62377 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
62384 return _wrap_SBThread_StepOut__SWIG_1(L);
62389 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepOut'\n"
62393 lua_error(L);return 0;
62397 static int _wrap_SBThread_StepOutOfFrame__SWIG_0(lua_State* L) {
62404 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",1,"lldb::SBThread *");
62405 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",2,"lldb::SBFrame &");
62407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62412 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
62422 lua_error(L);
62427 static int _wrap_SBThread_StepOutOfFrame__SWIG_1(lua_State* L) {
62435 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",1,"lldb::SBThread *");
62436 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",2,"lldb::SBFrame &");
62437 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",3,"lldb::SBError &");
62439 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62444 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
62449 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
62459 lua_error(L);
62464 static int _wrap_SBThread_StepOutOfFrame(lua_State* L) {
62470 argc = lua_gettop(L);
62475 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62484 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, SWIG_POINTER_NO_NULL)) {
62491 return _wrap_SBThread_StepOutOfFrame__SWIG_0(L);
62499 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62508 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBFrame, SWIG_POINTER_NO_NULL)) {
62517 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
62524 return _wrap_SBThread_StepOutOfFrame__SWIG_1(L);
62530 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepOutOfFrame'\n"
62534 lua_error(L);return 0;
62538 static int _wrap_SBThread_StepInstruction__SWIG_0(lua_State* L) {
62545 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInstruction",1,"lldb::SBThread *");
62546 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThread::StepInstruction",2,"bool");
62548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62552 arg2 = (lua_toboolean(L, 2)!=0);
62559 lua_error(L);
62564 static int _wrap_SBThread_StepInstruction__SWIG_1(lua_State* L) {
62572 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInstruction",1,"lldb::SBThread *");
62573 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThread::StepInstruction",2,"bool");
62574 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepInstruction",3,"lldb::SBError &");
62576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62580 arg2 = (lua_toboolean(L, 2)!=0);
62582 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
62592 lua_error(L);
62597 static int _wrap_SBThread_StepInstruction(lua_State* L) {
62603 argc = lua_gettop(L);
62608 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62616 _v = lua_isboolean(L,argv[1]);
62619 return _wrap_SBThread_StepInstruction__SWIG_0(L);
62627 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62635 _v = lua_isboolean(L,argv[1]);
62640 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
62647 return _wrap_SBThread_StepInstruction__SWIG_1(L);
62653 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepInstruction'\n"
62657 lua_error(L);return 0;
62661 static int _wrap_SBThread_StepOverUntil(lua_State* L) {
62671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",1,"lldb::SBThread *");
62672 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",2,"lldb::SBFrame &");
62673 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",3,"lldb::SBFileSpec &");
62674 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",4,"uint32_t");
62676 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62681 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
62686 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
62690 arg4 = (uint32_t)lua_tointeger(L, 4);
62694 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
62700 lua_error(L);
62705 static int _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0(lua_State* L) {
62713 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",1,"lldb::SBThread *");
62714 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",2,"char const *");
62716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62720 arg2 = (char *)lua_tostring(L, 2);
62724 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
62730 lua_error(L);
62735 static int _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1(lua_State* L) {
62744 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",1,"lldb::SBThread *");
62745 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",2,"char const *");
62746 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",3,"bool");
62748 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62752 arg2 = (char *)lua_tostring(L, 2);
62753 arg3 = (lua_toboolean(L, 3)!=0);
62757 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
62763 lua_error(L);
62768 static int _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2(lua_State* L) {
62778 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",1,"lldb::SBThread *");
62779 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",2,"char const *");
62780 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",3,"lldb::SBStructuredData &");
62781 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",4,"bool");
62783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62787 arg2 = (char *)lua_tostring(L, 2);
62789 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
62793 arg4 = (lua_toboolean(L, 4)!=0);
62797 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
62803 lua_error(L);
62808 static int _wrap_SBThread_StepUsingScriptedThreadPlan(lua_State* L) {
62814 argc = lua_gettop(L);
62819 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62827 _v = SWIG_lua_isnilstring(L,argv[1]);
62830 return _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0(L);
62838 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62846 _v = SWIG_lua_isnilstring(L,argv[1]);
62850 _v = lua_isboolean(L,argv[2]);
62853 return _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1(L);
62862 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
62870 _v = SWIG_lua_isnilstring(L,argv[1]);
62875 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
62883 _v = lua_isboolean(L,argv[3]);
62886 return _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2(L);
62893 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepUsingScriptedThreadPlan'\n"
62898 lua_error(L);return 0;
62902 static int _wrap_SBThread_JumpToLine(lua_State* L) {
62911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::JumpToLine",1,"lldb::SBThread *");
62912 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::JumpToLine",2,"lldb::SBFileSpec &");
62913 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::JumpToLine",3,"uint32_t");
62915 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){
62924 arg3 = (uint32_t)lua_tointeger(L, 3);
62928 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
62934 lua_error(L);
62939 static int _wrap_SBThread_RunToAddress__SWIG_0(lua_State* L) {
62946 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::RunToAddress",1,"lldb::SBThread *");
62947 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::RunToAddress",2,"lldb::addr_t");
62949 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62953 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
62960 lua_error(L);
62965 static int _wrap_SBThread_RunToAddress__SWIG_1(lua_State* L) {
62973 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::RunToAddress",1,"lldb::SBThread *");
62974 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::RunToAddress",2,"lldb::addr_t");
62975 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::RunToAddress",3,"lldb::SBError &");
62977 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
62981 arg2 = (lldb::addr_t)lua_tointeger(L, 2);
62983 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
62993 lua_error(L);
62998 static int _wrap_SBThread_RunToAddress(lua_State* L) {
63004 argc = lua_gettop(L);
63009 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63017 _v = lua_isnumber(L,argv[1]);
63020 return _wrap_SBThread_RunToAddress__SWIG_0(L);
63028 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63036 _v = lua_isnumber(L,argv[1]);
63041 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
63048 return _wrap_SBThread_RunToAddress__SWIG_1(L);
63054 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_RunToAddress'\n"
63058 lua_error(L);return 0;
63062 static int _wrap_SBThread_ReturnFromFrame(lua_State* L) {
63071 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::ReturnFromFrame",1,"lldb::SBThread *");
63072 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::ReturnFromFrame",2,"lldb::SBFrame &");
63073 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::ReturnFromFrame",3,"lldb::SBValue &");
63075 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63080 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){
63085 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBValue,0))){
63092 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
63098 lua_error(L);
63103 static int _wrap_SBThread_UnwindInnermostExpression(lua_State* L) {
63110 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::UnwindInnermostExpression",1,"lldb::SBThread *");
63112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63119 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
63125 lua_error(L);
63130 static int _wrap_SBThread_Suspend__SWIG_0(lua_State* L) {
63137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Suspend",1,"lldb::SBThread *");
63139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63144 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63149 lua_error(L);
63154 static int _wrap_SBThread_Suspend__SWIG_1(lua_State* L) {
63162 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Suspend",1,"lldb::SBThread *");
63163 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::Suspend",2,"lldb::SBError &");
63165 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63170 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
63175 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63180 lua_error(L);
63185 static int _wrap_SBThread_Suspend(lua_State* L) {
63191 argc = lua_gettop(L);
63196 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63203 return _wrap_SBThread_Suspend__SWIG_0(L);
63210 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63219 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
63226 return _wrap_SBThread_Suspend__SWIG_1(L);
63231 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_Suspend'\n"
63235 lua_error(L);return 0;
63239 static int _wrap_SBThread_Resume__SWIG_0(lua_State* L) {
63246 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Resume",1,"lldb::SBThread *");
63248 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63253 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63258 lua_error(L);
63263 static int _wrap_SBThread_Resume__SWIG_1(lua_State* L) {
63271 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Resume",1,"lldb::SBThread *");
63272 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::Resume",2,"lldb::SBError &");
63274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63279 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
63284 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63289 lua_error(L);
63294 static int _wrap_SBThread_Resume(lua_State* L) {
63300 argc = lua_gettop(L);
63305 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63312 return _wrap_SBThread_Resume__SWIG_0(L);
63319 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63328 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
63335 return _wrap_SBThread_Resume__SWIG_1(L);
63340 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_Resume'\n"
63344 lua_error(L);return 0;
63348 static int _wrap_SBThread_IsSuspended(lua_State* L) {
63355 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::IsSuspended",1,"lldb::SBThread *");
63357 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63362 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63367 lua_error(L);
63372 static int _wrap_SBThread_IsStopped(lua_State* L) {
63379 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::IsStopped",1,"lldb::SBThread *");
63381 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63386 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63391 lua_error(L);
63396 static int _wrap_SBThread_GetNumFrames(lua_State* L) {
63403 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetNumFrames",1,"lldb::SBThread *");
63405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63410 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
63415 lua_error(L);
63420 static int _wrap_SBThread_GetFrameAtIndex(lua_State* L) {
63428 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetFrameAtIndex",1,"lldb::SBThread *");
63429 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::GetFrameAtIndex",2,"uint32_t");
63431 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63435 arg2 = (uint32_t)lua_tointeger(L, 2);
63439 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
63445 lua_error(L);
63450 static int _wrap_SBThread_GetSelectedFrame(lua_State* L) {
63457 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetSelectedFrame",1,"lldb::SBThread *");
63459 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63466 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
63472 lua_error(L);
63477 static int _wrap_SBThread_SetSelectedFrame(lua_State* L) {
63485 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::SetSelectedFrame",1,"lldb::SBThread *");
63486 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::SetSelectedFrame",2,"uint32_t");
63488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63492 arg2 = (uint32_t)lua_tointeger(L, 2);
63496 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
63502 lua_error(L);
63507 static int _wrap_SBThread_EventIsThreadEvent(lua_State* L) {
63514 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::EventIsThreadEvent",1,"lldb::SBEvent const &");
63516 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
63521 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63526 lua_error(L);
63531 static int _wrap_SBThread_GetStackFrameFromEvent(lua_State* L) {
63538 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::GetStackFrameFromEvent",1,"lldb::SBEvent const &");
63540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
63547 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
63553 lua_error(L);
63558 static int _wrap_SBThread_GetThreadFromEvent(lua_State* L) {
63565 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::GetThreadFromEvent",1,"lldb::SBEvent const &");
63567 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
63574 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
63580 lua_error(L);
63585 static int _wrap_SBThread_GetProcess(lua_State* L) {
63592 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetProcess",1,"lldb::SBThread *");
63594 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63601 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
63607 lua_error(L);
63612 static int _wrap_SBThread___eq(lua_State* L) {
63620 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::operator ==",1,"lldb::SBThread const *");
63621 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::operator ==",2,"lldb::SBThread const &");
63623 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63628 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){
63633 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63638 lua_error(L);
63643 static int _wrap_SBThread_GetDescription__SWIG_0(lua_State* L) {
63651 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetDescription",1,"lldb::SBThread const *");
63652 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetDescription",2,"lldb::SBStream &");
63654 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63659 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
63664 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63669 lua_error(L);
63674 static int _wrap_SBThread_GetDescription__SWIG_1(lua_State* L) {
63683 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetDescription",1,"lldb::SBThread const *");
63684 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetDescription",2,"lldb::SBStream &");
63685 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThread::GetDescription",3,"bool");
63687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63692 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
63696 arg3 = (lua_toboolean(L, 3)!=0);
63698 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63703 lua_error(L);
63708 static int _wrap_SBThread_GetDescription(lua_State* L) {
63714 argc = lua_gettop(L);
63719 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63728 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
63735 return _wrap_SBThread_GetDescription__SWIG_0(L);
63743 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, 0)) {
63752 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
63760 _v = lua_isboolean(L,argv[2]);
63763 return _wrap_SBThread_GetDescription__SWIG_1(L);
63769 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_GetDescription'\n"
63773 lua_error(L);return 0;
63777 static int _wrap_SBThread_GetDescriptionWithFormat(lua_State* L) {
63786 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetDescriptionWithFormat",1,"lldb::SBThread *");
63787 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetDescriptionWithFormat",2,"lldb::SBFormat const &");
63788 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::GetDescriptionWithFormat",3,"lldb::SBStream &");
63790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63795 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFormat,0))){
63800 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStream,0))){
63807 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
63813 lua_error(L);
63818 static int _wrap_SBThread_GetStatus(lua_State* L) {
63826 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStatus",1,"lldb::SBThread const *");
63827 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetStatus",2,"lldb::SBStream &");
63829 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63834 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
63839 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63844 lua_error(L);
63849 static int _wrap_SBThread_GetExtendedBacktraceThread(lua_State* L) {
63857 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetExtendedBacktraceThread",1,"lldb::SBThread *");
63858 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::GetExtendedBacktraceThread",2,"char const *");
63860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63864 arg2 = (char *)lua_tostring(L, 2);
63868 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
63874 lua_error(L);
63879 static int _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID(lua_State* L) {
63886 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetExtendedBacktraceOriginatingIndexID",1,"lldb::SBThread *");
63888 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63893 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
63898 lua_error(L);
63903 static int _wrap_SBThread_GetCurrentException(lua_State* L) {
63910 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetCurrentException",1,"lldb::SBThread *");
63912 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63919 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
63925 lua_error(L);
63930 static int _wrap_SBThread_GetCurrentExceptionBacktrace(lua_State* L) {
63937 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetCurrentExceptionBacktrace",1,"lldb::SBThread *");
63939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63946 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
63952 lua_error(L);
63957 static int _wrap_SBThread_SafeToCallFunctions(lua_State* L) {
63964 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::SafeToCallFunctions",1,"lldb::SBThread *");
63966 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63971 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
63976 lua_error(L);
63981 static int _wrap_SBThread_GetSiginfo(lua_State* L) {
63988 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetSiginfo",1,"lldb::SBThread *");
63990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
63997 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
64003 lua_error(L);
64008 static int _wrap_SBThread___tostring(lua_State* L) {
64015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::__repr__",1,"lldb::SBThread *");
64017 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
64022 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
64027 lua_error(L);
64036 static int _proxy__wrap_new_SBThread(lua_State *L) {
64037 assert(lua_istable(L,1));
64038 lua_pushcfunction(L,_wrap_new_SBThread);
64039 assert(!lua_isnil(L,-1));
64040 lua_replace(L,1); /* replace our table with real constructor */
64041 lua_call(L,lua_gettop(L)-1,1);
64137 static int _wrap_new_SBThreadCollection__SWIG_0(lua_State* L) {
64144 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++;
64149 lua_error(L);
64154 static int _wrap_new_SBThreadCollection__SWIG_1(lua_State* L) {
64161 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::SBThreadCollection",1,"lldb::SBThreadCollection const &");
64163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){
64168 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++;
64173 lua_error(L);
64178 static int _wrap_new_SBThreadCollection(lua_State* L) {
64184 argc = lua_gettop(L);
64186 return _wrap_new_SBThreadCollection__SWIG_0(L);
64192 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadCollection, SWIG_POINTER_NO_NULL)) {
64199 return _wrap_new_SBThreadCollection__SWIG_1(L);
64203 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBThreadCollection'\n"
64207 lua_error(L);return 0;
64211 static int _wrap_SBThreadCollection_IsValid(lua_State* L) {
64218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::IsValid",1,"lldb::SBThreadCollection const *");
64220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){
64225 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64230 lua_error(L);
64235 static int _wrap_SBThreadCollection_GetSize(lua_State* L) {
64242 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::GetSize",1,"lldb::SBThreadCollection *");
64244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){
64249 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
64254 lua_error(L);
64259 static int _wrap_SBThreadCollection_GetThreadAtIndex(lua_State* L) {
64267 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::GetThreadAtIndex",1,"lldb::SBThreadCollection *");
64268 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadCollection::GetThreadAtIndex",2,"size_t");
64270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){
64274 arg2 = (size_t)lua_tointeger(L, 2);
64278 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
64284 lua_error(L);
64293 static int _proxy__wrap_new_SBThreadCollection(lua_State *L) {
64294 assert(lua_istable(L,1));
64295 lua_pushcfunction(L,_wrap_new_SBThreadCollection);
64296 assert(!lua_isnil(L,-1));
64297 lua_replace(L,1); /* replace our table with real constructor */
64298 lua_call(L,lua_gettop(L)-1,1);
64339 static int _wrap_new_SBThreadPlan__SWIG_0(lua_State* L) {
64346 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
64351 lua_error(L);
64356 static int _wrap_new_SBThreadPlan__SWIG_1(lua_State* L) {
64363 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",1,"lldb::SBThreadPlan const &");
64365 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64370 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
64375 lua_error(L);
64380 static int _wrap_new_SBThreadPlan__SWIG_2(lua_State* L) {
64388 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",1,"lldb::SBThread &");
64389 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",2,"char const *");
64391 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
64395 arg2 = (char *)lua_tostring(L, 2);
64397 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
64402 lua_error(L);
64407 static int _wrap_new_SBThreadPlan__SWIG_3(lua_State* L) {
64416 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",1,"lldb::SBThread &");
64417 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",2,"char const *");
64418 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",3,"lldb::SBStructuredData &");
64420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){
64424 arg2 = (char *)lua_tostring(L, 2);
64426 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
64431 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
64436 lua_error(L);
64441 static int _wrap_new_SBThreadPlan(lua_State* L) {
64447 argc = lua_gettop(L);
64449 return _wrap_new_SBThreadPlan__SWIG_0(L);
64455 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, SWIG_POINTER_NO_NULL)) {
64462 return _wrap_new_SBThreadPlan__SWIG_1(L);
64469 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, SWIG_POINTER_NO_NULL)) {
64477 _v = SWIG_lua_isnilstring(L,argv[1]);
64480 return _wrap_new_SBThreadPlan__SWIG_2(L);
64488 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, SWIG_POINTER_NO_NULL)) {
64496 _v = SWIG_lua_isnilstring(L,argv[1]);
64501 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
64508 return _wrap_new_SBThreadPlan__SWIG_3(L);
64514 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBThreadPlan'\n"
64520 lua_error(L);return 0;
64524 static int _wrap_SBThreadPlan_IsValid__SWIG_0(lua_State* L) {
64531 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsValid",1,"lldb::SBThreadPlan const *");
64533 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64538 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64543 lua_error(L);
64548 static int _wrap_SBThreadPlan_Clear(lua_State* L) {
64554 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::Clear",1,"lldb::SBThreadPlan *");
64556 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64566 lua_error(L);
64571 static int _wrap_SBThreadPlan_GetStopReason(lua_State* L) {
64578 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReason",1,"lldb::SBThreadPlan *");
64580 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64585 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
64590 lua_error(L);
64595 static int _wrap_SBThreadPlan_GetStopReasonDataCount(lua_State* L) {
64602 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReasonDataCount",1,"lldb::SBThreadPlan *");
64604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64609 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
64614 lua_error(L);
64619 static int _wrap_SBThreadPlan_GetStopReasonDataAtIndex(lua_State* L) {
64627 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReasonDataAtIndex",1,"lldb::SBThreadPlan *");
64628 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReasonDataAtIndex",2,"uint32_t");
64630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64634 arg2 = (uint32_t)lua_tointeger(L, 2);
64636 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
64641 lua_error(L);
64646 static int _wrap_SBThreadPlan_GetThread(lua_State* L) {
64653 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetThread",1,"lldb::SBThreadPlan const *");
64655 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64662 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
64668 lua_error(L);
64673 static int _wrap_SBThreadPlan_GetDescription(lua_State* L) {
64681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetDescription",1,"lldb::SBThreadPlan const *");
64682 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::GetDescription",2,"lldb::SBStream &");
64684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64689 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
64694 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64699 lua_error(L);
64704 static int _wrap_SBThreadPlan_SetPlanComplete(lua_State* L) {
64711 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SetPlanComplete",1,"lldb::SBThreadPlan *");
64712 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SetPlanComplete",2,"bool");
64714 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64718 arg2 = (lua_toboolean(L, 2)!=0);
64725 lua_error(L);
64730 static int _wrap_SBThreadPlan_IsPlanComplete(lua_State* L) {
64737 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsPlanComplete",1,"lldb::SBThreadPlan *");
64739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64744 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64749 lua_error(L);
64754 static int _wrap_SBThreadPlan_IsPlanStale(lua_State* L) {
64761 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsPlanStale",1,"lldb::SBThreadPlan *");
64763 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64768 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64773 lua_error(L);
64778 static int _wrap_SBThreadPlan_IsValid__SWIG_1(lua_State* L) {
64785 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsValid",1,"lldb::SBThreadPlan *");
64787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64792 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64797 lua_error(L);
64802 static int _wrap_SBThreadPlan_IsValid(lua_State* L) {
64808 argc = lua_gettop(L);
64813 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
64820 return _wrap_SBThreadPlan_IsValid__SWIG_1(L);
64827 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
64834 return _wrap_SBThreadPlan_IsValid__SWIG_0(L);
64838 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_IsValid'\n"
64842 lua_error(L);return 0;
64846 static int _wrap_SBThreadPlan_GetStopOthers(lua_State* L) {
64853 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopOthers",1,"lldb::SBThreadPlan *");
64855 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64860 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
64865 lua_error(L);
64870 static int _wrap_SBThreadPlan_SetStopOthers(lua_State* L) {
64877 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SetStopOthers",1,"lldb::SBThreadPlan *");
64878 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SetStopOthers",2,"bool");
64880 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64884 arg2 = (lua_toboolean(L, 2)!=0);
64891 lua_error(L);
64896 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0(lua_State* L) {
64905 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",1,"lldb::SBThreadPlan *");
64906 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",2,"lldb::SBAddress &");
64907 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",3,"lldb::addr_t");
64909 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
64918 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
64922 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
64928 lua_error(L);
64933 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1(lua_State* L) {
64943 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",1,"lldb::SBThreadPlan *");
64944 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",2,"lldb::SBAddress &");
64945 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",3,"lldb::addr_t");
64946 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",4,"lldb::SBError &");
64948 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
64953 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
64957 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
64959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
64966 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
64972 lua_error(L);
64977 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange(lua_State* L) {
64983 argc = lua_gettop(L);
64988 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
64997 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
65005 _v = lua_isnumber(L,argv[2]);
65008 return _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0(L);
65017 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65026 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
65034 _v = lua_isnumber(L,argv[2]);
65039 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
65046 return _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1(L);
65053 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanForStepOverRange'\n"
65057 lua_error(L);return 0;
65061 static int _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0(lua_State* L) {
65070 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",1,"lldb::SBThreadPlan *");
65071 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",2,"lldb::SBAddress &");
65072 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",3,"lldb::addr_t");
65074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
65083 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
65087 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65093 lua_error(L);
65098 static int _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1(lua_State* L) {
65108 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",1,"lldb::SBThreadPlan *");
65109 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",2,"lldb::SBAddress &");
65110 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",3,"lldb::addr_t");
65111 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",4,"lldb::SBError &");
65113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65118 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){
65122 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
65124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
65131 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65137 lua_error(L);
65142 static int _wrap_SBThreadPlan_QueueThreadPlanForStepInRange(lua_State* L) {
65148 argc = lua_gettop(L);
65153 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65162 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
65170 _v = lua_isnumber(L,argv[2]);
65173 return _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0(L);
65182 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65191 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
65199 _v = lua_isnumber(L,argv[2]);
65204 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
65211 return _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1(L);
65218 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanForStepInRange'\n"
65222 lua_error(L);return 0;
65226 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0(lua_State* L) {
65235 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",1,"lldb::SBThreadPlan *");
65236 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",2,"uint32_t");
65237 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",3,"bool");
65239 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65243 arg2 = (uint32_t)lua_tointeger(L, 2);
65244 arg3 = (lua_toboolean(L, 3)!=0);
65248 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65254 lua_error(L);
65259 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1(lua_State* L) {
65267 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",1,"lldb::SBThreadPlan *");
65268 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",2,"uint32_t");
65270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65274 arg2 = (uint32_t)lua_tointeger(L, 2);
65278 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65284 lua_error(L);
65289 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2(lua_State* L) {
65299 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",1,"lldb::SBThreadPlan *");
65300 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",2,"uint32_t");
65301 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",3,"bool");
65302 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",4,"lldb::SBError &");
65304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65308 arg2 = (uint32_t)lua_tointeger(L, 2);
65309 arg3 = (lua_toboolean(L, 3)!=0);
65311 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
65318 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65324 lua_error(L);
65329 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut(lua_State* L) {
65335 argc = lua_gettop(L);
65340 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65348 _v = lua_isnumber(L,argv[1]);
65351 return _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1(L);
65359 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65367 _v = lua_isnumber(L,argv[1]);
65371 _v = lua_isboolean(L,argv[2]);
65374 return _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0(L);
65383 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65391 _v = lua_isnumber(L,argv[1]);
65395 _v = lua_isboolean(L,argv[2]);
65400 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
65407 return _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2(L);
65414 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanForStepOut'\n"
65419 lua_error(L);return 0;
65423 static int _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0(lua_State* L) {
65432 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",1,"lldb::SBThreadPlan *");
65433 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",2,"lldb::SBAddress");
65435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
65448 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65454 lua_error(L);
65459 static int _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1(lua_State* L) {
65469 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",1,"lldb::SBThreadPlan *");
65470 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",2,"lldb::SBAddress");
65471 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",3,"lldb::SBError &");
65473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){
65484 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
65491 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65497 lua_error(L);
65502 static int _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress(lua_State* L) {
65508 argc = lua_gettop(L);
65513 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65522 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
65529 return _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0(L);
65537 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65546 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBAddress, SWIG_POINTER_NO_NULL)) {
65555 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
65562 return _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1(L);
65568 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanForRunToAddress'\n"
65572 lua_error(L);return 0;
65576 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0(lua_State* L) {
65584 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",1,"lldb::SBThreadPlan *");
65585 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",2,"char const *");
65587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65591 arg2 = (char *)lua_tostring(L, 2);
65595 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65601 lua_error(L);
65606 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1(lua_State* L) {
65615 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",1,"lldb::SBThreadPlan *");
65616 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",2,"char const *");
65617 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",3,"lldb::SBError &");
65619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65623 arg2 = (char *)lua_tostring(L, 2);
65625 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
65632 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65638 lua_error(L);
65643 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2(lua_State* L) {
65653 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",1,"lldb::SBThreadPlan *");
65654 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",2,"char const *");
65655 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",3,"lldb::SBStructuredData &");
65656 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",4,"lldb::SBError &");
65658 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){
65662 arg2 = (char *)lua_tostring(L, 2);
65664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
65669 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){
65676 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++;
65682 lua_error(L);
65687 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted(lua_State* L) {
65693 argc = lua_gettop(L);
65698 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65706 _v = SWIG_lua_isnilstring(L,argv[1]);
65709 return _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0(L);
65717 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65725 _v = SWIG_lua_isnilstring(L,argv[1]);
65730 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
65737 return _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1(L);
65746 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBThreadPlan, 0)) {
65754 _v = SWIG_lua_isnilstring(L,argv[1]);
65759 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
65768 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
65775 return _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2(L);
65782 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanForStepScripted'\n"
65787 lua_error(L);return 0;
65795 static int _proxy__wrap_new_SBThreadPlan(lua_State *L) {
65796 assert(lua_istable(L,1));
65797 lua_pushcfunction(L,_wrap_new_SBThreadPlan);
65798 assert(!lua_isnil(L,-1));
65799 lua_replace(L,1); /* replace our table with real constructor */
65800 lua_call(L,lua_gettop(L)-1,1);
65855 static int _wrap_new_SBTrace(lua_State* L) {
65862 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++;
65867 lua_error(L);
65872 static int _wrap_SBTrace_LoadTraceFromFile(lua_State* L) {
65881 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTrace::LoadTraceFromFile",1,"lldb::SBError &");
65882 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::LoadTraceFromFile",2,"lldb::SBDebugger &");
65883 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::LoadTraceFromFile",3,"lldb::SBFileSpec const &");
65885 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){
65890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){
65895 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
65902 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++;
65908 lua_error(L);
65913 static int _wrap_SBTrace_CreateNewCursor(lua_State* L) {
65922 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::CreateNewCursor",1,"lldb::SBTrace *");
65923 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::CreateNewCursor",2,"lldb::SBError &");
65924 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::CreateNewCursor",3,"lldb::SBThread &");
65926 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
65931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
65936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBThread,0))){
65943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTraceCursor,1); SWIG_arg++;
65949 lua_error(L);
65954 static int _wrap_SBTrace_SaveToDisk__SWIG_0(lua_State* L) {
65964 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",1,"lldb::SBTrace *");
65965 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",2,"lldb::SBError &");
65966 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",3,"lldb::SBFileSpec const &");
65967 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",4,"bool");
65969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
65974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
65979 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
65983 arg4 = (lua_toboolean(L, 4)!=0);
65987 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
65993 lua_error(L);
65998 static int _wrap_SBTrace_SaveToDisk__SWIG_1(lua_State* L) {
66007 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",1,"lldb::SBTrace *");
66008 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",2,"lldb::SBError &");
66009 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",3,"lldb::SBFileSpec const &");
66011 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
66021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){
66028 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++;
66034 lua_error(L);
66039 static int _wrap_SBTrace_SaveToDisk(lua_State* L) {
66045 argc = lua_gettop(L);
66050 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTrace, 0)) {
66059 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
66068 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
66075 return _wrap_SBTrace_SaveToDisk__SWIG_1(L);
66084 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTrace, 0)) {
66093 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
66102 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBFileSpec, SWIG_POINTER_NO_NULL)) {
66110 _v = lua_isboolean(L,argv[3]);
66113 return _wrap_SBTrace_SaveToDisk__SWIG_0(L);
66120 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTrace_SaveToDisk'\n"
66124 lua_error(L);return 0;
66128 static int _wrap_SBTrace_GetStartConfigurationHelp(lua_State* L) {
66135 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::GetStartConfigurationHelp",1,"lldb::SBTrace *");
66137 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66142 lua_pushstring(L,(const char *)result); SWIG_arg++;
66147 lua_error(L);
66152 static int _wrap_SBTrace_Start__SWIG_0(lua_State* L) {
66160 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Start",1,"lldb::SBTrace *");
66161 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::Start",2,"lldb::SBStructuredData const &");
66163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStructuredData,0))){
66175 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
66181 lua_error(L);
66186 static int _wrap_SBTrace_Start__SWIG_1(lua_State* L) {
66195 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Start",1,"lldb::SBTrace *");
66196 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::Start",2,"lldb::SBThread const &");
66197 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::Start",3,"lldb::SBStructuredData const &");
66199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66204 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){
66209 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){
66216 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
66222 lua_error(L);
66227 static int _wrap_SBTrace_Start(lua_State* L) {
66233 argc = lua_gettop(L);
66238 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTrace, 0)) {
66247 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
66254 return _wrap_SBTrace_Start__SWIG_0(L);
66262 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTrace, 0)) {
66271 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, SWIG_POINTER_NO_NULL)) {
66280 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBStructuredData, SWIG_POINTER_NO_NULL)) {
66287 return _wrap_SBTrace_Start__SWIG_1(L);
66293 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTrace_Start'\n"
66297 lua_error(L);return 0;
66301 static int _wrap_SBTrace_Stop__SWIG_0(lua_State* L) {
66308 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Stop",1,"lldb::SBTrace *");
66310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66317 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
66323 lua_error(L);
66328 static int _wrap_SBTrace_Stop__SWIG_1(lua_State* L) {
66336 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Stop",1,"lldb::SBTrace *");
66337 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::Stop",2,"lldb::SBThread const &");
66339 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66344 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){
66351 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
66357 lua_error(L);
66362 static int _wrap_SBTrace_Stop(lua_State* L) {
66368 argc = lua_gettop(L);
66373 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTrace, 0)) {
66380 return _wrap_SBTrace_Stop__SWIG_0(L);
66387 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTrace, 0)) {
66396 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBThread, SWIG_POINTER_NO_NULL)) {
66403 return _wrap_SBTrace_Stop__SWIG_1(L);
66408 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTrace_Stop'\n"
66412 lua_error(L);return 0;
66416 static int _wrap_SBTrace_IsValid(lua_State* L) {
66423 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::IsValid",1,"lldb::SBTrace *");
66425 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){
66430 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66435 lua_error(L);
66444 static int _proxy__wrap_new_SBTrace(lua_State *L) {
66445 assert(lua_istable(L,1));
66446 lua_pushcfunction(L,_wrap_new_SBTrace);
66447 assert(!lua_isnil(L,-1));
66448 lua_replace(L,1); /* replace our table with real constructor */
66449 lua_call(L,lua_gettop(L)-1,1);
66494 static int _wrap_new_SBTraceCursor(lua_State* L) {
66501 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTraceCursor,1); SWIG_arg++;
66506 lua_error(L);
66511 static int _wrap_SBTraceCursor_SetForwards(lua_State* L) {
66518 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::SetForwards",1,"lldb::SBTraceCursor *");
66519 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::SetForwards",2,"bool");
66521 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66525 arg2 = (lua_toboolean(L, 2)!=0);
66532 lua_error(L);
66537 static int _wrap_SBTraceCursor_IsForwards(lua_State* L) {
66544 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsForwards",1,"lldb::SBTraceCursor const *");
66546 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66551 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66556 lua_error(L);
66561 static int _wrap_SBTraceCursor_Next(lua_State* L) {
66567 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::Next",1,"lldb::SBTraceCursor *");
66569 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66579 lua_error(L);
66584 static int _wrap_SBTraceCursor_HasValue(lua_State* L) {
66591 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::HasValue",1,"lldb::SBTraceCursor const *");
66593 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66598 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66603 lua_error(L);
66608 static int _wrap_SBTraceCursor_GoToId(lua_State* L) {
66616 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GoToId",1,"lldb::SBTraceCursor *");
66617 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::GoToId",2,"lldb::user_id_t");
66619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66623 arg2 = (lldb::user_id_t)lua_tointeger(L, 2);
66625 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66630 lua_error(L);
66635 static int _wrap_SBTraceCursor_HasId(lua_State* L) {
66643 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::HasId",1,"lldb::SBTraceCursor const *");
66644 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::HasId",2,"lldb::user_id_t");
66646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66650 arg2 = (lldb::user_id_t)lua_tointeger(L, 2);
66652 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66657 lua_error(L);
66662 static int _wrap_SBTraceCursor_GetId(lua_State* L) {
66669 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetId",1,"lldb::SBTraceCursor const *");
66671 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66676 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
66681 lua_error(L);
66686 static int _wrap_SBTraceCursor_Seek(lua_State* L) {
66695 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::Seek",1,"lldb::SBTraceCursor *");
66696 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::Seek",2,"int64_t");
66697 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTraceCursor::Seek",3,"lldb::TraceCursorSeekType");
66699 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66703 arg2 = (int64_t)lua_tointeger(L, 2);
66704 arg3 = (lldb::TraceCursorSeekType)lua_tointeger(L, 3);
66706 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66711 lua_error(L);
66716 static int _wrap_SBTraceCursor_GetItemKind(lua_State* L) {
66723 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetItemKind",1,"lldb::SBTraceCursor const *");
66725 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66730 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
66735 lua_error(L);
66740 static int _wrap_SBTraceCursor_IsError(lua_State* L) {
66747 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsError",1,"lldb::SBTraceCursor const *");
66749 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66754 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66759 lua_error(L);
66764 static int _wrap_SBTraceCursor_GetError(lua_State* L) {
66771 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetError",1,"lldb::SBTraceCursor const *");
66773 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66778 lua_pushstring(L,(const char *)result); SWIG_arg++;
66783 lua_error(L);
66788 static int _wrap_SBTraceCursor_IsEvent(lua_State* L) {
66795 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsEvent",1,"lldb::SBTraceCursor const *");
66797 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66802 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66807 lua_error(L);
66812 static int _wrap_SBTraceCursor_GetEventType(lua_State* L) {
66819 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetEventType",1,"lldb::SBTraceCursor const *");
66821 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66826 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
66831 lua_error(L);
66836 static int _wrap_SBTraceCursor_GetEventTypeAsString(lua_State* L) {
66843 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetEventTypeAsString",1,"lldb::SBTraceCursor const *");
66845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66850 lua_pushstring(L,(const char *)result); SWIG_arg++;
66855 lua_error(L);
66860 static int _wrap_SBTraceCursor_IsInstruction(lua_State* L) {
66867 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsInstruction",1,"lldb::SBTraceCursor const *");
66869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66874 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66879 lua_error(L);
66884 static int _wrap_SBTraceCursor_GetLoadAddress(lua_State* L) {
66891 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetLoadAddress",1,"lldb::SBTraceCursor const *");
66893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66898 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
66903 lua_error(L);
66908 static int _wrap_SBTraceCursor_GetCPU(lua_State* L) {
66915 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetCPU",1,"lldb::SBTraceCursor const *");
66917 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66922 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
66927 lua_error(L);
66932 static int _wrap_SBTraceCursor_IsValid(lua_State* L) {
66939 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsValid",1,"lldb::SBTraceCursor const *");
66941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){
66946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
66951 lua_error(L);
66960 static int _proxy__wrap_new_SBTraceCursor(lua_State *L) {
66961 assert(lua_istable(L,1));
66962 lua_pushcfunction(L,_wrap_new_SBTraceCursor);
66963 assert(!lua_isnil(L,-1));
66964 lua_replace(L,1); /* replace our table with real constructor */
66965 lua_call(L,lua_gettop(L)-1,1);
67021 static int _wrap_new_SBTypeMember__SWIG_0(lua_State* L) {
67028 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++;
67033 lua_error(L);
67038 static int _wrap_new_SBTypeMember__SWIG_1(lua_State* L) {
67045 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeMember::SBTypeMember",1,"lldb::SBTypeMember const &");
67047 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67052 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++;
67057 lua_error(L);
67062 static int _wrap_new_SBTypeMember(lua_State* L) {
67068 argc = lua_gettop(L);
67070 return _wrap_new_SBTypeMember__SWIG_0(L);
67076 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeMember, SWIG_POINTER_NO_NULL)) {
67083 return _wrap_new_SBTypeMember__SWIG_1(L);
67087 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeMember'\n"
67091 lua_error(L);return 0;
67095 static int _wrap_SBTypeMember_IsValid(lua_State* L) {
67102 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::IsValid",1,"lldb::SBTypeMember const *");
67104 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67109 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
67114 lua_error(L);
67119 static int _wrap_SBTypeMember_GetName(lua_State* L) {
67126 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetName",1,"lldb::SBTypeMember *");
67128 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67133 lua_pushstring(L,(const char *)result); SWIG_arg++;
67138 lua_error(L);
67143 static int _wrap_SBTypeMember_GetType(lua_State* L) {
67150 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetType",1,"lldb::SBTypeMember *");
67152 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67159 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
67165 lua_error(L);
67170 static int _wrap_SBTypeMember_GetOffsetInBytes(lua_State* L) {
67177 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetOffsetInBytes",1,"lldb::SBTypeMember *");
67179 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67184 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
67189 lua_error(L);
67194 static int _wrap_SBTypeMember_GetOffsetInBits(lua_State* L) {
67201 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetOffsetInBits",1,"lldb::SBTypeMember *");
67203 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67208 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
67213 lua_error(L);
67218 static int _wrap_SBTypeMember_IsBitfield(lua_State* L) {
67225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::IsBitfield",1,"lldb::SBTypeMember *");
67227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67232 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
67237 lua_error(L);
67242 static int _wrap_SBTypeMember_GetBitfieldSizeInBits(lua_State* L) {
67249 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetBitfieldSizeInBits",1,"lldb::SBTypeMember *");
67251 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67256 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
67261 lua_error(L);
67266 static int _wrap_SBTypeMember_GetDescription(lua_State* L) {
67275 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetDescription",1,"lldb::SBTypeMember *");
67276 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeMember::GetDescription",2,"lldb::SBStream &");
67277 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeMember::GetDescription",3,"lldb::DescriptionLevel");
67279 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67284 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
67288 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
67290 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
67295 lua_error(L);
67300 static int _wrap_SBTypeMember___tostring(lua_State* L) {
67307 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::__repr__",1,"lldb::SBTypeMember *");
67309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){
67314 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
67319 lua_error(L);
67328 static int _proxy__wrap_new_SBTypeMember(lua_State *L) {
67329 assert(lua_istable(L,1));
67330 lua_pushcfunction(L,_wrap_new_SBTypeMember);
67331 assert(!lua_isnil(L,-1));
67332 lua_replace(L,1); /* replace our table with real constructor */
67333 lua_call(L,lua_gettop(L)-1,1);
67381 static int _wrap_new_SBTypeMemberFunction__SWIG_0(lua_State* L) {
67388 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMemberFunction,1); SWIG_arg++;
67393 lua_error(L);
67398 static int _wrap_new_SBTypeMemberFunction__SWIG_1(lua_State* L) {
67405 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::SBTypeMemberFunction",1,"lldb::SBTypeMemberFunction const &");
67407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67412 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMemberFunction,1); SWIG_arg++;
67417 lua_error(L);
67422 static int _wrap_new_SBTypeMemberFunction(lua_State* L) {
67428 argc = lua_gettop(L);
67430 return _wrap_new_SBTypeMemberFunction__SWIG_0(L);
67436 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeMemberFunction, SWIG_POINTER_NO_NULL)) {
67443 return _wrap_new_SBTypeMemberFunction__SWIG_1(L);
67447 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeMemberFunction'\n"
67451 lua_error(L);return 0;
67455 static int _wrap_SBTypeMemberFunction_IsValid(lua_State* L) {
67462 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::IsValid",1,"lldb::SBTypeMemberFunction const *");
67464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67469 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
67474 lua_error(L);
67479 static int _wrap_SBTypeMemberFunction_GetName(lua_State* L) {
67486 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetName",1,"lldb::SBTypeMemberFunction *");
67488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67493 lua_pushstring(L,(const char *)result); SWIG_arg++;
67498 lua_error(L);
67503 static int _wrap_SBTypeMemberFunction_GetDemangledName(lua_State* L) {
67510 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDemangledName",1,"lldb::SBTypeMemberFunction *");
67512 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67517 lua_pushstring(L,(const char *)result); SWIG_arg++;
67522 lua_error(L);
67527 static int _wrap_SBTypeMemberFunction_GetMangledName(lua_State* L) {
67534 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetMangledName",1,"lldb::SBTypeMemberFunction *");
67536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67541 lua_pushstring(L,(const char *)result); SWIG_arg++;
67546 lua_error(L);
67551 static int _wrap_SBTypeMemberFunction_GetType(lua_State* L) {
67558 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetType",1,"lldb::SBTypeMemberFunction *");
67560 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67567 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
67573 lua_error(L);
67578 static int _wrap_SBTypeMemberFunction_GetReturnType(lua_State* L) {
67585 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetReturnType",1,"lldb::SBTypeMemberFunction *");
67587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67594 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
67600 lua_error(L);
67605 static int _wrap_SBTypeMemberFunction_GetNumberOfArguments(lua_State* L) {
67612 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetNumberOfArguments",1,"lldb::SBTypeMemberFunction *");
67614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67619 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
67624 lua_error(L);
67629 static int _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex(lua_State* L) {
67637 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetArgumentTypeAtIndex",1,"lldb::SBTypeMemberFunction *");
67638 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetArgumentTypeAtIndex",2,"uint32_t");
67640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67644 arg2 = (uint32_t)lua_tointeger(L, 2);
67648 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
67654 lua_error(L);
67659 static int _wrap_SBTypeMemberFunction_GetKind(lua_State* L) {
67666 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetKind",1,"lldb::SBTypeMemberFunction *");
67668 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67673 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
67678 lua_error(L);
67683 static int _wrap_SBTypeMemberFunction_GetDescription(lua_State* L) {
67692 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDescription",1,"lldb::SBTypeMemberFunction *");
67693 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDescription",2,"lldb::SBStream &");
67694 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDescription",3,"lldb::DescriptionLevel");
67696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
67705 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
67707 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
67712 lua_error(L);
67717 static int _wrap_SBTypeMemberFunction___tostring(lua_State* L) {
67724 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::__repr__",1,"lldb::SBTypeMemberFunction *");
67726 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){
67731 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
67736 lua_error(L);
67745 static int _proxy__wrap_new_SBTypeMemberFunction(lua_State *L) {
67746 assert(lua_istable(L,1));
67747 lua_pushcfunction(L,_wrap_new_SBTypeMemberFunction);
67748 assert(!lua_isnil(L,-1));
67749 lua_replace(L,1); /* replace our table with real constructor */
67750 lua_call(L,lua_gettop(L)-1,1);
67800 static int _wrap_new_SBTypeStaticField__SWIG_0(lua_State* L) {
67807 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeStaticField,1); SWIG_arg++;
67812 lua_error(L);
67817 static int _wrap_new_SBTypeStaticField__SWIG_1(lua_State* L) {
67824 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::SBTypeStaticField",1,"lldb::SBTypeStaticField const &");
67826 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){
67831 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeStaticField,1); SWIG_arg++;
67836 lua_error(L);
67841 static int _wrap_new_SBTypeStaticField(lua_State* L) {
67847 argc = lua_gettop(L);
67849 return _wrap_new_SBTypeStaticField__SWIG_0(L);
67855 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeStaticField, SWIG_POINTER_NO_NULL)) {
67862 return _wrap_new_SBTypeStaticField__SWIG_1(L);
67866 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeStaticField'\n"
67870 lua_error(L);return 0;
67874 static int _wrap_SBTypeStaticField_IsValid(lua_State* L) {
67881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::IsValid",1,"lldb::SBTypeStaticField const *");
67883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){
67888 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
67893 lua_error(L);
67898 static int _wrap_SBTypeStaticField_GetName(lua_State* L) {
67905 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetName",1,"lldb::SBTypeStaticField *");
67907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){
67912 lua_pushstring(L,(const char *)result); SWIG_arg++;
67917 lua_error(L);
67922 static int _wrap_SBTypeStaticField_GetMangledName(lua_State* L) {
67929 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetMangledName",1,"lldb::SBTypeStaticField *");
67931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){
67936 lua_pushstring(L,(const char *)result); SWIG_arg++;
67941 lua_error(L);
67946 static int _wrap_SBTypeStaticField_GetType(lua_State* L) {
67953 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetType",1,"lldb::SBTypeStaticField *");
67955 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){
67962 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
67968 lua_error(L);
67973 static int _wrap_SBTypeStaticField_GetConstantValue(lua_State* L) {
67982 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetConstantValue",1,"lldb::SBTypeStaticField *");
67983 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeStaticField::GetConstantValue",2,"lldb::SBTarget");
67985 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){
67990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){
67998 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
68004 lua_error(L);
68013 static int _proxy__wrap_new_SBTypeStaticField(lua_State *L) {
68014 assert(lua_istable(L,1));
68015 lua_pushcfunction(L,_wrap_new_SBTypeStaticField);
68016 assert(!lua_isnil(L,-1));
68017 lua_replace(L,1); /* replace our table with real constructor */
68018 lua_call(L,lua_gettop(L)-1,1);
68061 static int _wrap_new_SBType__SWIG_0(lua_State* L) {
68068 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68073 lua_error(L);
68078 static int _wrap_new_SBType__SWIG_1(lua_State* L) {
68085 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBType::SBType",1,"lldb::SBType const &");
68087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68092 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68097 lua_error(L);
68102 static int _wrap_new_SBType(lua_State* L) {
68108 argc = lua_gettop(L);
68110 return _wrap_new_SBType__SWIG_0(L);
68116 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBType, SWIG_POINTER_NO_NULL)) {
68123 return _wrap_new_SBType__SWIG_1(L);
68127 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBType'\n"
68131 lua_error(L);return 0;
68135 static int _wrap_SBType_IsValid(lua_State* L) {
68142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsValid",1,"lldb::SBType const *");
68144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68149 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68154 lua_error(L);
68159 static int _wrap_SBType_GetByteSize(lua_State* L) {
68166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetByteSize",1,"lldb::SBType *");
68168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68173 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
68178 lua_error(L);
68183 static int _wrap_SBType_GetByteAlign(lua_State* L) {
68190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetByteAlign",1,"lldb::SBType *");
68192 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68197 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
68202 lua_error(L);
68207 static int _wrap_SBType_IsPointerType(lua_State* L) {
68214 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsPointerType",1,"lldb::SBType *");
68216 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68221 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68226 lua_error(L);
68231 static int _wrap_SBType_IsReferenceType(lua_State* L) {
68238 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsReferenceType",1,"lldb::SBType *");
68240 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68245 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68250 lua_error(L);
68255 static int _wrap_SBType_IsFunctionType(lua_State* L) {
68262 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsFunctionType",1,"lldb::SBType *");
68264 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68269 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68274 lua_error(L);
68279 static int _wrap_SBType_IsPolymorphicClass(lua_State* L) {
68286 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsPolymorphicClass",1,"lldb::SBType *");
68288 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68293 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68298 lua_error(L);
68303 static int _wrap_SBType_IsArrayType(lua_State* L) {
68310 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsArrayType",1,"lldb::SBType *");
68312 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68317 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68322 lua_error(L);
68327 static int _wrap_SBType_IsVectorType(lua_State* L) {
68334 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsVectorType",1,"lldb::SBType *");
68336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68341 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68346 lua_error(L);
68351 static int _wrap_SBType_IsTypedefType(lua_State* L) {
68358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsTypedefType",1,"lldb::SBType *");
68360 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68365 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68370 lua_error(L);
68375 static int _wrap_SBType_IsAnonymousType(lua_State* L) {
68382 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsAnonymousType",1,"lldb::SBType *");
68384 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68389 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68394 lua_error(L);
68399 static int _wrap_SBType_IsScopedEnumerationType(lua_State* L) {
68406 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsScopedEnumerationType",1,"lldb::SBType *");
68408 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68413 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68418 lua_error(L);
68423 static int _wrap_SBType_IsAggregateType(lua_State* L) {
68430 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsAggregateType",1,"lldb::SBType *");
68432 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68437 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
68442 lua_error(L);
68447 static int _wrap_SBType_GetPointerType(lua_State* L) {
68454 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetPointerType",1,"lldb::SBType *");
68456 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68463 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68469 lua_error(L);
68474 static int _wrap_SBType_GetPointeeType(lua_State* L) {
68481 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetPointeeType",1,"lldb::SBType *");
68483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68490 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68496 lua_error(L);
68501 static int _wrap_SBType_GetReferenceType(lua_State* L) {
68508 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetReferenceType",1,"lldb::SBType *");
68510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68517 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68523 lua_error(L);
68528 static int _wrap_SBType_GetTypedefedType(lua_State* L) {
68535 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTypedefedType",1,"lldb::SBType *");
68537 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68544 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68550 lua_error(L);
68555 static int _wrap_SBType_GetDereferencedType(lua_State* L) {
68562 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDereferencedType",1,"lldb::SBType *");
68564 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68571 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68577 lua_error(L);
68582 static int _wrap_SBType_GetUnqualifiedType(lua_State* L) {
68589 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetUnqualifiedType",1,"lldb::SBType *");
68591 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68598 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68604 lua_error(L);
68609 static int _wrap_SBType_GetArrayElementType(lua_State* L) {
68616 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetArrayElementType",1,"lldb::SBType *");
68618 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68625 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68631 lua_error(L);
68636 static int _wrap_SBType_GetArrayType(lua_State* L) {
68644 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetArrayType",1,"lldb::SBType *");
68645 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetArrayType",2,"uint64_t");
68647 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68651 arg2 = (uint64_t)lua_tointeger(L, 2);
68655 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68661 lua_error(L);
68666 static int _wrap_SBType_GetVectorElementType(lua_State* L) {
68673 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetVectorElementType",1,"lldb::SBType *");
68675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68682 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68688 lua_error(L);
68693 static int _wrap_SBType_GetCanonicalType(lua_State* L) {
68700 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetCanonicalType",1,"lldb::SBType *");
68702 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68709 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68715 lua_error(L);
68720 static int _wrap_SBType_GetEnumerationIntegerType(lua_State* L) {
68727 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetEnumerationIntegerType",1,"lldb::SBType *");
68729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68736 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68742 lua_error(L);
68747 static int _wrap_SBType_GetBasicType__SWIG_0(lua_State* L) {
68754 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetBasicType",1,"lldb::SBType *");
68756 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68761 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
68766 lua_error(L);
68771 static int _wrap_SBType_GetBasicType__SWIG_1(lua_State* L) {
68779 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetBasicType",1,"lldb::SBType *");
68780 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetBasicType",2,"lldb::BasicType");
68782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68786 arg2 = (lldb::BasicType)lua_tointeger(L, 2);
68790 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
68796 lua_error(L);
68801 static int _wrap_SBType_GetBasicType(lua_State* L) {
68807 argc = lua_gettop(L);
68812 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBType, 0)) {
68819 return _wrap_SBType_GetBasicType__SWIG_0(L);
68826 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBType, 0)) {
68834 _v = lua_isnumber(L,argv[1]);
68837 return _wrap_SBType_GetBasicType__SWIG_1(L);
68842 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBType_GetBasicType'\n"
68846 lua_error(L);return 0;
68850 static int _wrap_SBType_GetNumberOfFields(lua_State* L) {
68857 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfFields",1,"lldb::SBType *");
68859 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68864 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
68869 lua_error(L);
68874 static int _wrap_SBType_GetNumberOfDirectBaseClasses(lua_State* L) {
68881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfDirectBaseClasses",1,"lldb::SBType *");
68883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68888 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
68893 lua_error(L);
68898 static int _wrap_SBType_GetNumberOfVirtualBaseClasses(lua_State* L) {
68905 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfVirtualBaseClasses",1,"lldb::SBType *");
68907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68912 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
68917 lua_error(L);
68922 static int _wrap_SBType_GetFieldAtIndex(lua_State* L) {
68930 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetFieldAtIndex",1,"lldb::SBType *");
68931 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetFieldAtIndex",2,"uint32_t");
68933 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68937 arg2 = (uint32_t)lua_tointeger(L, 2);
68941 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++;
68947 lua_error(L);
68952 static int _wrap_SBType_GetDirectBaseClassAtIndex(lua_State* L) {
68960 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDirectBaseClassAtIndex",1,"lldb::SBType *");
68961 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetDirectBaseClassAtIndex",2,"uint32_t");
68963 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68967 arg2 = (uint32_t)lua_tointeger(L, 2);
68971 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++;
68977 lua_error(L);
68982 static int _wrap_SBType_GetVirtualBaseClassAtIndex(lua_State* L) {
68990 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetVirtualBaseClassAtIndex",1,"lldb::SBType *");
68991 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetVirtualBaseClassAtIndex",2,"uint32_t");
68993 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
68997 arg2 = (uint32_t)lua_tointeger(L, 2);
69001 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++;
69007 lua_error(L);
69012 static int _wrap_SBType_GetStaticFieldWithName(lua_State* L) {
69020 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetStaticFieldWithName",1,"lldb::SBType *");
69021 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBType::GetStaticFieldWithName",2,"char const *");
69023 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69027 arg2 = (char *)lua_tostring(L, 2);
69031 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeStaticField,1); SWIG_arg++;
69037 lua_error(L);
69042 static int _wrap_SBType_GetEnumMembers(lua_State* L) {
69049 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetEnumMembers",1,"lldb::SBType *");
69051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69058 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeEnumMemberList,1); SWIG_arg++;
69064 lua_error(L);
69069 static int _wrap_SBType_GetNumberOfTemplateArguments(lua_State* L) {
69076 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfTemplateArguments",1,"lldb::SBType *");
69078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69083 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
69088 lua_error(L);
69093 static int _wrap_SBType_GetTemplateArgumentType(lua_State* L) {
69101 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentType",1,"lldb::SBType *");
69102 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentType",2,"uint32_t");
69104 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69108 arg2 = (uint32_t)lua_tointeger(L, 2);
69112 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
69118 lua_error(L);
69123 static int _wrap_SBType_GetTemplateArgumentKind(lua_State* L) {
69131 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentKind",1,"lldb::SBType *");
69132 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentKind",2,"uint32_t");
69134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69138 arg2 = (uint32_t)lua_tointeger(L, 2);
69140 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
69145 lua_error(L);
69150 static int _wrap_SBType_GetFunctionReturnType(lua_State* L) {
69157 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetFunctionReturnType",1,"lldb::SBType *");
69159 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69166 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
69172 lua_error(L);
69177 static int _wrap_SBType_GetFunctionArgumentTypes(lua_State* L) {
69184 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetFunctionArgumentTypes",1,"lldb::SBType *");
69186 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69193 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
69199 lua_error(L);
69204 static int _wrap_SBType_GetNumberOfMemberFunctions(lua_State* L) {
69211 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfMemberFunctions",1,"lldb::SBType *");
69213 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69218 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
69223 lua_error(L);
69228 static int _wrap_SBType_GetMemberFunctionAtIndex(lua_State* L) {
69236 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetMemberFunctionAtIndex",1,"lldb::SBType *");
69237 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetMemberFunctionAtIndex",2,"uint32_t");
69239 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69243 arg2 = (uint32_t)lua_tointeger(L, 2);
69247 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMemberFunction,1); SWIG_arg++;
69253 lua_error(L);
69258 static int _wrap_SBType_GetModule(lua_State* L) {
69265 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetModule",1,"lldb::SBType *");
69267 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69274 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++;
69280 lua_error(L);
69285 static int _wrap_SBType_GetName(lua_State* L) {
69292 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetName",1,"lldb::SBType *");
69294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69299 lua_pushstring(L,(const char *)result); SWIG_arg++;
69304 lua_error(L);
69309 static int _wrap_SBType_GetDisplayTypeName(lua_State* L) {
69316 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDisplayTypeName",1,"lldb::SBType *");
69318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69323 lua_pushstring(L,(const char *)result); SWIG_arg++;
69328 lua_error(L);
69333 static int _wrap_SBType_GetTypeClass(lua_State* L) {
69340 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTypeClass",1,"lldb::SBType *");
69342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69347 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
69352 lua_error(L);
69357 static int _wrap_SBType_IsTypeComplete(lua_State* L) {
69364 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsTypeComplete",1,"lldb::SBType *");
69366 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69371 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
69376 lua_error(L);
69381 static int _wrap_SBType_GetTypeFlags(lua_State* L) {
69388 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTypeFlags",1,"lldb::SBType *");
69390 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69395 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
69400 lua_error(L);
69405 static int _wrap_SBType_GetDescription(lua_State* L) {
69414 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDescription",1,"lldb::SBType *");
69415 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBType::GetDescription",2,"lldb::SBStream &");
69416 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBType::GetDescription",3,"lldb::DescriptionLevel");
69418 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69423 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
69427 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
69429 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
69434 lua_error(L);
69439 static int _wrap_SBType_FindDirectNestedType(lua_State* L) {
69447 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::FindDirectNestedType",1,"lldb::SBType *");
69448 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBType::FindDirectNestedType",2,"char const *");
69450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69454 arg2 = (char *)lua_tostring(L, 2);
69458 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
69464 lua_error(L);
69469 static int _wrap_SBType___eq(lua_State* L) {
69477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::operator ==",1,"lldb::SBType *");
69478 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBType::operator ==",2,"lldb::SBType &");
69480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69485 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBType,0))){
69490 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
69495 lua_error(L);
69500 static int _wrap_SBType___tostring(lua_State* L) {
69507 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::__repr__",1,"lldb::SBType *");
69509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){
69514 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
69519 lua_error(L);
69528 static int _proxy__wrap_new_SBType(lua_State *L) {
69529 assert(lua_istable(L,1));
69530 lua_pushcfunction(L,_wrap_new_SBType);
69531 assert(!lua_isnil(L,-1));
69532 lua_replace(L,1); /* replace our table with real constructor */
69533 lua_call(L,lua_gettop(L)-1,1);
69623 static int _wrap_new_SBTypeList__SWIG_0(lua_State* L) {
69630 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
69635 lua_error(L);
69640 static int _wrap_new_SBTypeList__SWIG_1(lua_State* L) {
69647 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeList::SBTypeList",1,"lldb::SBTypeList const &");
69649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){
69654 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++;
69659 lua_error(L);
69664 static int _wrap_new_SBTypeList(lua_State* L) {
69670 argc = lua_gettop(L);
69672 return _wrap_new_SBTypeList__SWIG_0(L);
69678 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeList, SWIG_POINTER_NO_NULL)) {
69685 return _wrap_new_SBTypeList__SWIG_1(L);
69689 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeList'\n"
69693 lua_error(L);return 0;
69697 static int _wrap_SBTypeList_IsValid(lua_State* L) {
69704 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::IsValid",1,"lldb::SBTypeList *");
69706 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){
69711 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
69716 lua_error(L);
69721 static int _wrap_SBTypeList_Append(lua_State* L) {
69729 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::Append",1,"lldb::SBTypeList *");
69730 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeList::Append",2,"lldb::SBType");
69732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){
69737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBType,0))){
69748 lua_error(L);
69753 static int _wrap_SBTypeList_GetTypeAtIndex(lua_State* L) {
69761 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::GetTypeAtIndex",1,"lldb::SBTypeList *");
69762 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeList::GetTypeAtIndex",2,"uint32_t");
69764 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){
69768 arg2 = (uint32_t)lua_tointeger(L, 2);
69772 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
69778 lua_error(L);
69783 static int _wrap_SBTypeList_GetSize(lua_State* L) {
69790 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::GetSize",1,"lldb::SBTypeList *");
69792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){
69797 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
69802 lua_error(L);
69811 static int _proxy__wrap_new_SBTypeList(lua_State *L) {
69812 assert(lua_istable(L,1));
69813 lua_pushcfunction(L,_wrap_new_SBTypeList);
69814 assert(!lua_isnil(L,-1));
69815 lua_replace(L,1); /* replace our table with real constructor */
69816 lua_call(L,lua_gettop(L)-1,1);
69858 static int _wrap_new_SBTypeCategory__SWIG_0(lua_State* L) {
69865 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
69870 lua_error(L);
69875 static int _wrap_new_SBTypeCategory__SWIG_1(lua_State* L) {
69882 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::SBTypeCategory",1,"lldb::SBTypeCategory const &");
69884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
69889 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++;
69894 lua_error(L);
69899 static int _wrap_new_SBTypeCategory(lua_State* L) {
69905 argc = lua_gettop(L);
69907 return _wrap_new_SBTypeCategory__SWIG_0(L);
69913 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeCategory, SWIG_POINTER_NO_NULL)) {
69920 return _wrap_new_SBTypeCategory__SWIG_1(L);
69924 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeCategory'\n"
69928 lua_error(L);return 0;
69932 static int _wrap_SBTypeCategory_IsValid(lua_State* L) {
69939 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::IsValid",1,"lldb::SBTypeCategory const *");
69941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
69946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
69951 lua_error(L);
69956 static int _wrap_SBTypeCategory_GetEnabled(lua_State* L) {
69963 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetEnabled",1,"lldb::SBTypeCategory *");
69965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
69970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
69975 lua_error(L);
69980 static int _wrap_SBTypeCategory_SetEnabled(lua_State* L) {
69987 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::SetEnabled",1,"lldb::SBTypeCategory *");
69988 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::SetEnabled",2,"bool");
69990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
69994 arg2 = (lua_toboolean(L, 2)!=0);
70001 lua_error(L);
70006 static int _wrap_SBTypeCategory_GetName(lua_State* L) {
70013 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetName",1,"lldb::SBTypeCategory *");
70015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70020 lua_pushstring(L,(const char *)result); SWIG_arg++;
70025 lua_error(L);
70030 static int _wrap_SBTypeCategory_GetLanguageAtIndex(lua_State* L) {
70038 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetLanguageAtIndex",1,"lldb::SBTypeCategory *");
70039 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetLanguageAtIndex",2,"uint32_t");
70041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70045 arg2 = (uint32_t)lua_tointeger(L, 2);
70047 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
70052 lua_error(L);
70057 static int _wrap_SBTypeCategory_GetNumLanguages(lua_State* L) {
70064 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumLanguages",1,"lldb::SBTypeCategory *");
70066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70071 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
70076 lua_error(L);
70081 static int _wrap_SBTypeCategory_AddLanguage(lua_State* L) {
70088 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddLanguage",1,"lldb::SBTypeCategory *");
70089 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddLanguage",2,"lldb::LanguageType");
70091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70095 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
70102 lua_error(L);
70107 static int _wrap_SBTypeCategory_GetDescription(lua_State* L) {
70116 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetDescription",1,"lldb::SBTypeCategory *");
70117 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetDescription",2,"lldb::SBStream &");
70118 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::GetDescription",3,"lldb::DescriptionLevel");
70120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70125 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
70129 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
70131 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70136 lua_error(L);
70141 static int _wrap_SBTypeCategory_GetNumFormats(lua_State* L) {
70148 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumFormats",1,"lldb::SBTypeCategory *");
70150 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70155 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
70160 lua_error(L);
70165 static int _wrap_SBTypeCategory_GetNumSummaries(lua_State* L) {
70172 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumSummaries",1,"lldb::SBTypeCategory *");
70174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70179 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
70184 lua_error(L);
70189 static int _wrap_SBTypeCategory_GetNumFilters(lua_State* L) {
70196 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumFilters",1,"lldb::SBTypeCategory *");
70198 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70203 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
70208 lua_error(L);
70213 static int _wrap_SBTypeCategory_GetNumSynthetics(lua_State* L) {
70220 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumSynthetics",1,"lldb::SBTypeCategory *");
70222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70227 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
70232 lua_error(L);
70237 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex(lua_State* L) {
70245 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFilterAtIndex",1,"lldb::SBTypeCategory *");
70246 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFilterAtIndex",2,"uint32_t");
70248 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70252 arg2 = (uint32_t)lua_tointeger(L, 2);
70256 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
70262 lua_error(L);
70267 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex(lua_State* L) {
70275 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFormatAtIndex",1,"lldb::SBTypeCategory *");
70276 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFormatAtIndex",2,"uint32_t");
70278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70282 arg2 = (uint32_t)lua_tointeger(L, 2);
70286 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
70292 lua_error(L);
70297 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex(lua_State* L) {
70305 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSummaryAtIndex",1,"lldb::SBTypeCategory *");
70306 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSummaryAtIndex",2,"uint32_t");
70308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70312 arg2 = (uint32_t)lua_tointeger(L, 2);
70316 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
70322 lua_error(L);
70327 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex(lua_State* L) {
70335 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSyntheticAtIndex",1,"lldb::SBTypeCategory *");
70336 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSyntheticAtIndex",2,"uint32_t");
70338 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70342 arg2 = (uint32_t)lua_tointeger(L, 2);
70346 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
70352 lua_error(L);
70357 static int _wrap_SBTypeCategory_GetFilterForType(lua_State* L) {
70366 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterForType",1,"lldb::SBTypeCategory *");
70367 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterForType",2,"lldb::SBTypeNameSpecifier");
70369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70382 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
70388 lua_error(L);
70393 static int _wrap_SBTypeCategory_GetFormatForType(lua_State* L) {
70402 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatForType",1,"lldb::SBTypeCategory *");
70403 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatForType",2,"lldb::SBTypeNameSpecifier");
70405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70418 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
70424 lua_error(L);
70429 static int _wrap_SBTypeCategory_GetSummaryForType(lua_State* L) {
70438 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryForType",1,"lldb::SBTypeCategory *");
70439 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryForType",2,"lldb::SBTypeNameSpecifier");
70441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70446 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70454 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
70460 lua_error(L);
70465 static int _wrap_SBTypeCategory_GetSyntheticForType(lua_State* L) {
70474 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticForType",1,"lldb::SBTypeCategory *");
70475 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticForType",2,"lldb::SBTypeNameSpecifier");
70477 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70482 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70490 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
70496 lua_error(L);
70501 static int _wrap_SBTypeCategory_GetFilterAtIndex(lua_State* L) {
70509 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterAtIndex",1,"lldb::SBTypeCategory *");
70510 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterAtIndex",2,"uint32_t");
70512 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70516 arg2 = (uint32_t)lua_tointeger(L, 2);
70520 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
70526 lua_error(L);
70531 static int _wrap_SBTypeCategory_GetFormatAtIndex(lua_State* L) {
70539 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatAtIndex",1,"lldb::SBTypeCategory *");
70540 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatAtIndex",2,"uint32_t");
70542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70546 arg2 = (uint32_t)lua_tointeger(L, 2);
70550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
70556 lua_error(L);
70561 static int _wrap_SBTypeCategory_GetSummaryAtIndex(lua_State* L) {
70569 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryAtIndex",1,"lldb::SBTypeCategory *");
70570 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryAtIndex",2,"uint32_t");
70572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70576 arg2 = (uint32_t)lua_tointeger(L, 2);
70580 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
70586 lua_error(L);
70591 static int _wrap_SBTypeCategory_GetSyntheticAtIndex(lua_State* L) {
70599 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticAtIndex",1,"lldb::SBTypeCategory *");
70600 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticAtIndex",2,"uint32_t");
70602 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70606 arg2 = (uint32_t)lua_tointeger(L, 2);
70610 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
70616 lua_error(L);
70621 static int _wrap_SBTypeCategory_AddTypeFormat(lua_State* L) {
70632 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFormat",1,"lldb::SBTypeCategory *");
70633 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFormat",2,"lldb::SBTypeNameSpecifier");
70634 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFormat",3,"lldb::SBTypeFormat");
70636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70641 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70647 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeFormat,0))){
70653 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70658 lua_error(L);
70663 static int _wrap_SBTypeCategory_DeleteTypeFormat(lua_State* L) {
70672 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFormat",1,"lldb::SBTypeCategory *");
70673 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFormat",2,"lldb::SBTypeNameSpecifier");
70675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70680 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70686 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70691 lua_error(L);
70696 static int _wrap_SBTypeCategory_AddTypeSummary(lua_State* L) {
70707 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSummary",1,"lldb::SBTypeCategory *");
70708 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSummary",2,"lldb::SBTypeNameSpecifier");
70709 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSummary",3,"lldb::SBTypeSummary");
70711 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeSummary,0))){
70728 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70733 lua_error(L);
70738 static int _wrap_SBTypeCategory_DeleteTypeSummary(lua_State* L) {
70747 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSummary",1,"lldb::SBTypeCategory *");
70748 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSummary",2,"lldb::SBTypeNameSpecifier");
70750 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70755 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70761 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70766 lua_error(L);
70771 static int _wrap_SBTypeCategory_AddTypeFilter(lua_State* L) {
70782 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFilter",1,"lldb::SBTypeCategory *");
70783 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFilter",2,"lldb::SBTypeNameSpecifier");
70784 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFilter",3,"lldb::SBTypeFilter");
70786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70797 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeFilter,0))){
70803 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70808 lua_error(L);
70813 static int _wrap_SBTypeCategory_DeleteTypeFilter(lua_State* L) {
70822 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFilter",1,"lldb::SBTypeCategory *");
70823 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFilter",2,"lldb::SBTypeNameSpecifier");
70825 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70830 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70836 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70841 lua_error(L);
70846 static int _wrap_SBTypeCategory_AddTypeSynthetic(lua_State* L) {
70857 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSynthetic",1,"lldb::SBTypeCategory *");
70858 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSynthetic",2,"lldb::SBTypeNameSpecifier");
70859 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSynthetic",3,"lldb::SBTypeSynthetic");
70861 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
70878 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70883 lua_error(L);
70888 static int _wrap_SBTypeCategory_DeleteTypeSynthetic(lua_State* L) {
70897 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSynthetic",1,"lldb::SBTypeCategory *");
70898 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSynthetic",2,"lldb::SBTypeNameSpecifier");
70900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70905 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
70911 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70916 lua_error(L);
70921 static int _wrap_SBTypeCategory___eq(lua_State* L) {
70929 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::operator ==",1,"lldb::SBTypeCategory *");
70930 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::operator ==",2,"lldb::SBTypeCategory &");
70932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70942 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
70947 lua_error(L);
70952 static int _wrap_SBTypeCategory___tostring(lua_State* L) {
70959 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::__repr__",1,"lldb::SBTypeCategory *");
70961 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){
70966 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
70971 lua_error(L);
70980 static int _proxy__wrap_new_SBTypeCategory(lua_State *L) {
70981 assert(lua_istable(L,1));
70982 lua_pushcfunction(L,_wrap_new_SBTypeCategory);
70983 assert(!lua_isnil(L,-1));
70984 lua_replace(L,1); /* replace our table with real constructor */
70985 lua_call(L,lua_gettop(L)-1,1);
71059 static int _wrap_new_SBTypeEnumMember__SWIG_0(lua_State* L) {
71066 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMember,1); SWIG_arg++;
71071 lua_error(L);
71076 static int _wrap_new_SBTypeEnumMember__SWIG_1(lua_State* L) {
71083 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::SBTypeEnumMember",1,"lldb::SBTypeEnumMember const &");
71085 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71090 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMember,1); SWIG_arg++;
71095 lua_error(L);
71100 static int _wrap_new_SBTypeEnumMember(lua_State* L) {
71106 argc = lua_gettop(L);
71108 return _wrap_new_SBTypeEnumMember__SWIG_0(L);
71114 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeEnumMember, SWIG_POINTER_NO_NULL)) {
71121 return _wrap_new_SBTypeEnumMember__SWIG_1(L);
71125 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeEnumMember'\n"
71129 lua_error(L);return 0;
71133 static int _wrap_SBTypeEnumMember_IsValid(lua_State* L) {
71140 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::IsValid",1,"lldb::SBTypeEnumMember const *");
71142 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71147 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71152 lua_error(L);
71157 static int _wrap_SBTypeEnumMember_GetValueAsSigned(lua_State* L) {
71164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetValueAsSigned",1,"lldb::SBTypeEnumMember *");
71166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71171 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
71176 lua_error(L);
71181 static int _wrap_SBTypeEnumMember_GetValueAsUnsigned(lua_State* L) {
71188 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetValueAsUnsigned",1,"lldb::SBTypeEnumMember *");
71190 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71195 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
71200 lua_error(L);
71205 static int _wrap_SBTypeEnumMember_GetName(lua_State* L) {
71212 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetName",1,"lldb::SBTypeEnumMember *");
71214 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71219 lua_pushstring(L,(const char *)result); SWIG_arg++;
71224 lua_error(L);
71229 static int _wrap_SBTypeEnumMember_GetType(lua_State* L) {
71236 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetType",1,"lldb::SBTypeEnumMember *");
71238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71245 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
71251 lua_error(L);
71256 static int _wrap_SBTypeEnumMember_GetDescription(lua_State* L) {
71265 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetDescription",1,"lldb::SBTypeEnumMember *");
71266 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetDescription",2,"lldb::SBStream &");
71267 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetDescription",3,"lldb::DescriptionLevel");
71269 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
71278 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
71280 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71285 lua_error(L);
71290 static int _wrap_SBTypeEnumMember___tostring(lua_State* L) {
71297 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::__repr__",1,"lldb::SBTypeEnumMember *");
71299 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71304 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
71309 lua_error(L);
71318 static int _proxy__wrap_new_SBTypeEnumMember(lua_State *L) {
71319 assert(lua_istable(L,1));
71320 lua_pushcfunction(L,_wrap_new_SBTypeEnumMember);
71321 assert(!lua_isnil(L,-1));
71322 lua_replace(L,1); /* replace our table with real constructor */
71323 lua_call(L,lua_gettop(L)-1,1);
71369 static int _wrap_new_SBTypeEnumMemberList__SWIG_0(lua_State* L) {
71376 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMemberList,1); SWIG_arg++;
71381 lua_error(L);
71386 static int _wrap_new_SBTypeEnumMemberList__SWIG_1(lua_State* L) {
71393 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::SBTypeEnumMemberList",1,"lldb::SBTypeEnumMemberList const &");
71395 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){
71400 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMemberList,1); SWIG_arg++;
71405 lua_error(L);
71410 static int _wrap_new_SBTypeEnumMemberList(lua_State* L) {
71416 argc = lua_gettop(L);
71418 return _wrap_new_SBTypeEnumMemberList__SWIG_0(L);
71424 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeEnumMemberList, SWIG_POINTER_NO_NULL)) {
71431 return _wrap_new_SBTypeEnumMemberList__SWIG_1(L);
71435 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeEnumMemberList'\n"
71439 lua_error(L);return 0;
71443 static int _wrap_SBTypeEnumMemberList_IsValid(lua_State* L) {
71450 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::IsValid",1,"lldb::SBTypeEnumMemberList *");
71452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){
71457 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71462 lua_error(L);
71467 static int _wrap_SBTypeEnumMemberList_Append(lua_State* L) {
71475 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::Append",1,"lldb::SBTypeEnumMemberList *");
71476 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::Append",2,"lldb::SBTypeEnumMember");
71478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){
71483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){
71494 lua_error(L);
71499 static int _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex(lua_State* L) {
71507 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::GetTypeEnumMemberAtIndex",1,"lldb::SBTypeEnumMemberList *");
71508 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::GetTypeEnumMemberAtIndex",2,"uint32_t");
71510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){
71514 arg2 = (uint32_t)lua_tointeger(L, 2);
71518 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeEnumMember,1); SWIG_arg++;
71524 lua_error(L);
71529 static int _wrap_SBTypeEnumMemberList_GetSize(lua_State* L) {
71536 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::GetSize",1,"lldb::SBTypeEnumMemberList *");
71538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){
71543 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
71548 lua_error(L);
71557 static int _proxy__wrap_new_SBTypeEnumMemberList(lua_State *L) {
71558 assert(lua_istable(L,1));
71559 lua_pushcfunction(L,_wrap_new_SBTypeEnumMemberList);
71560 assert(!lua_isnil(L,-1));
71561 lua_replace(L,1); /* replace our table with real constructor */
71562 lua_call(L,lua_gettop(L)-1,1);
71604 static int _wrap_new_SBTypeFilter__SWIG_0(lua_State* L) {
71611 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
71616 lua_error(L);
71621 static int _wrap_new_SBTypeFilter__SWIG_1(lua_State* L) {
71628 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::SBTypeFilter",1,"uint32_t");
71629 arg1 = (uint32_t)lua_tointeger(L, 1);
71631 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
71636 lua_error(L);
71641 static int _wrap_new_SBTypeFilter__SWIG_2(lua_State* L) {
71648 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::SBTypeFilter",1,"lldb::SBTypeFilter const &");
71650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71655 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
71660 lua_error(L);
71665 static int _wrap_new_SBTypeFilter(lua_State* L) {
71671 argc = lua_gettop(L);
71673 return _wrap_new_SBTypeFilter__SWIG_0(L);
71679 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeFilter, SWIG_POINTER_NO_NULL)) {
71686 return _wrap_new_SBTypeFilter__SWIG_2(L);
71692 _v = lua_isnumber(L,argv[0]);
71695 return _wrap_new_SBTypeFilter__SWIG_1(L);
71699 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeFilter'\n"
71704 lua_error(L);return 0;
71708 static int _wrap_SBTypeFilter_IsValid(lua_State* L) {
71715 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::IsValid",1,"lldb::SBTypeFilter const *");
71717 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71722 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71727 lua_error(L);
71732 static int _wrap_SBTypeFilter_GetNumberOfExpressionPaths(lua_State* L) {
71739 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetNumberOfExpressionPaths",1,"lldb::SBTypeFilter *");
71741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71746 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
71751 lua_error(L);
71756 static int _wrap_SBTypeFilter_GetExpressionPathAtIndex(lua_State* L) {
71764 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetExpressionPathAtIndex",1,"lldb::SBTypeFilter *");
71765 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::GetExpressionPathAtIndex",2,"uint32_t");
71767 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71771 arg2 = (uint32_t)lua_tointeger(L, 2);
71773 lua_pushstring(L,(const char *)result); SWIG_arg++;
71778 lua_error(L);
71783 static int _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex(lua_State* L) {
71792 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::ReplaceExpressionPathAtIndex",1,"lldb::SBTypeFilter *");
71793 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::ReplaceExpressionPathAtIndex",2,"uint32_t");
71794 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTypeFilter::ReplaceExpressionPathAtIndex",3,"char const *");
71796 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71800 arg2 = (uint32_t)lua_tointeger(L, 2);
71801 arg3 = (char *)lua_tostring(L, 3);
71803 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71808 lua_error(L);
71813 static int _wrap_SBTypeFilter_AppendExpressionPath(lua_State* L) {
71820 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::AppendExpressionPath",1,"lldb::SBTypeFilter *");
71821 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::AppendExpressionPath",2,"char const *");
71823 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71827 arg2 = (char *)lua_tostring(L, 2);
71834 lua_error(L);
71839 static int _wrap_SBTypeFilter_Clear(lua_State* L) {
71845 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::Clear",1,"lldb::SBTypeFilter *");
71847 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71857 lua_error(L);
71862 static int _wrap_SBTypeFilter_GetOptions(lua_State* L) {
71869 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetOptions",1,"lldb::SBTypeFilter *");
71871 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71876 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
71881 lua_error(L);
71886 static int _wrap_SBTypeFilter_SetOptions(lua_State* L) {
71893 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::SetOptions",1,"lldb::SBTypeFilter *");
71894 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::SetOptions",2,"uint32_t");
71896 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71900 arg2 = (uint32_t)lua_tointeger(L, 2);
71907 lua_error(L);
71912 static int _wrap_SBTypeFilter_GetDescription(lua_State* L) {
71921 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetDescription",1,"lldb::SBTypeFilter *");
71922 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::GetDescription",2,"lldb::SBStream &");
71923 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeFilter::GetDescription",3,"lldb::DescriptionLevel");
71925 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71930 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
71934 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
71936 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71941 lua_error(L);
71946 static int _wrap_SBTypeFilter_IsEqualTo(lua_State* L) {
71954 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::IsEqualTo",1,"lldb::SBTypeFilter *");
71955 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::IsEqualTo",2,"lldb::SBTypeFilter &");
71957 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71967 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
71972 lua_error(L);
71977 static int _wrap_SBTypeFilter___eq(lua_State* L) {
71985 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::operator ==",1,"lldb::SBTypeFilter *");
71986 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::operator ==",2,"lldb::SBTypeFilter &");
71988 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71993 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFilter,0))){
71998 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72003 lua_error(L);
72008 static int _wrap_SBTypeFilter___tostring(lua_State* L) {
72015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::__repr__",1,"lldb::SBTypeFilter *");
72017 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){
72022 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
72027 lua_error(L);
72036 static int _proxy__wrap_new_SBTypeFilter(lua_State *L) {
72037 assert(lua_istable(L,1));
72038 lua_pushcfunction(L,_wrap_new_SBTypeFilter);
72039 assert(!lua_isnil(L,-1));
72040 lua_replace(L,1); /* replace our table with real constructor */
72041 lua_call(L,lua_gettop(L)-1,1);
72093 static int _wrap_new_SBTypeFormat__SWIG_0(lua_State* L) {
72100 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
72105 lua_error(L);
72110 static int _wrap_new_SBTypeFormat__SWIG_1(lua_State* L) {
72118 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"lldb::Format");
72119 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",2,"uint32_t");
72120 arg1 = (lldb::Format)lua_tointeger(L, 1);
72121 arg2 = (uint32_t)lua_tointeger(L, 2);
72123 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
72128 lua_error(L);
72133 static int _wrap_new_SBTypeFormat__SWIG_2(lua_State* L) {
72140 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"lldb::Format");
72141 arg1 = (lldb::Format)lua_tointeger(L, 1);
72143 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
72148 lua_error(L);
72153 static int _wrap_new_SBTypeFormat__SWIG_3(lua_State* L) {
72161 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"char const *");
72162 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",2,"uint32_t");
72163 arg1 = (char *)lua_tostring(L, 1);
72164 arg2 = (uint32_t)lua_tointeger(L, 2);
72166 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
72171 lua_error(L);
72176 static int _wrap_new_SBTypeFormat__SWIG_4(lua_State* L) {
72183 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"char const *");
72184 arg1 = (char *)lua_tostring(L, 1);
72186 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
72191 lua_error(L);
72196 static int _wrap_new_SBTypeFormat__SWIG_5(lua_State* L) {
72203 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"lldb::SBTypeFormat const &");
72205 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72210 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
72215 lua_error(L);
72220 static int _wrap_new_SBTypeFormat(lua_State* L) {
72226 argc = lua_gettop(L);
72228 return _wrap_new_SBTypeFormat__SWIG_0(L);
72234 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeFormat, SWIG_POINTER_NO_NULL)) {
72241 return _wrap_new_SBTypeFormat__SWIG_5(L);
72247 _v = lua_isnumber(L,argv[0]);
72250 return _wrap_new_SBTypeFormat__SWIG_2(L);
72256 _v = SWIG_lua_isnilstring(L,argv[0]);
72259 return _wrap_new_SBTypeFormat__SWIG_4(L);
72265 _v = lua_isnumber(L,argv[0]);
72269 _v = lua_isnumber(L,argv[1]);
72272 return _wrap_new_SBTypeFormat__SWIG_1(L);
72279 _v = SWIG_lua_isnilstring(L,argv[0]);
72283 _v = lua_isnumber(L,argv[1]);
72286 return _wrap_new_SBTypeFormat__SWIG_3(L);
72291 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeFormat'\n"
72299 lua_error(L);return 0;
72303 static int _wrap_SBTypeFormat_IsValid(lua_State* L) {
72310 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::IsValid",1,"lldb::SBTypeFormat const *");
72312 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72317 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72322 lua_error(L);
72327 static int _wrap_SBTypeFormat_GetFormat(lua_State* L) {
72334 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetFormat",1,"lldb::SBTypeFormat *");
72336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72341 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
72346 lua_error(L);
72351 static int _wrap_SBTypeFormat_GetTypeName(lua_State* L) {
72358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetTypeName",1,"lldb::SBTypeFormat *");
72360 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72365 lua_pushstring(L,(const char *)result); SWIG_arg++;
72370 lua_error(L);
72375 static int _wrap_SBTypeFormat_GetOptions(lua_State* L) {
72382 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetOptions",1,"lldb::SBTypeFormat *");
72384 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72389 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
72394 lua_error(L);
72399 static int _wrap_SBTypeFormat_SetFormat(lua_State* L) {
72406 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SetFormat",1,"lldb::SBTypeFormat *");
72407 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SetFormat",2,"lldb::Format");
72409 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72413 arg2 = (lldb::Format)lua_tointeger(L, 2);
72420 lua_error(L);
72425 static int _wrap_SBTypeFormat_SetTypeName(lua_State* L) {
72432 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SetTypeName",1,"lldb::SBTypeFormat *");
72433 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SetTypeName",2,"char const *");
72435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72439 arg2 = (char *)lua_tostring(L, 2);
72446 lua_error(L);
72451 static int _wrap_SBTypeFormat_SetOptions(lua_State* L) {
72458 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SetOptions",1,"lldb::SBTypeFormat *");
72459 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SetOptions",2,"uint32_t");
72461 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72465 arg2 = (uint32_t)lua_tointeger(L, 2);
72472 lua_error(L);
72477 static int _wrap_SBTypeFormat_GetDescription(lua_State* L) {
72486 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetDescription",1,"lldb::SBTypeFormat *");
72487 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::GetDescription",2,"lldb::SBStream &");
72488 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeFormat::GetDescription",3,"lldb::DescriptionLevel");
72490 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72495 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
72499 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
72501 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72506 lua_error(L);
72511 static int _wrap_SBTypeFormat_IsEqualTo(lua_State* L) {
72519 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::IsEqualTo",1,"lldb::SBTypeFormat *");
72520 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::IsEqualTo",2,"lldb::SBTypeFormat &");
72522 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72527 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72532 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72537 lua_error(L);
72542 static int _wrap_SBTypeFormat___eq(lua_State* L) {
72550 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::operator ==",1,"lldb::SBTypeFormat *");
72551 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::operator ==",2,"lldb::SBTypeFormat &");
72553 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72558 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72563 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72568 lua_error(L);
72573 static int _wrap_SBTypeFormat___tostring(lua_State* L) {
72580 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::__repr__",1,"lldb::SBTypeFormat *");
72582 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){
72587 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
72592 lua_error(L);
72601 static int _proxy__wrap_new_SBTypeFormat(lua_State *L) {
72602 assert(lua_istable(L,1));
72603 lua_pushcfunction(L,_wrap_new_SBTypeFormat);
72604 assert(!lua_isnil(L,-1));
72605 lua_replace(L,1); /* replace our table with real constructor */
72606 lua_call(L,lua_gettop(L)-1,1);
72657 static int _wrap_new_SBTypeNameSpecifier__SWIG_0(lua_State* L) {
72664 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
72669 lua_error(L);
72674 static int _wrap_new_SBTypeNameSpecifier__SWIG_1(lua_State* L) {
72682 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"char const *");
72683 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",2,"bool");
72684 arg1 = (char *)lua_tostring(L, 1);
72685 arg2 = (lua_toboolean(L, 2)!=0);
72687 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
72692 lua_error(L);
72697 static int _wrap_new_SBTypeNameSpecifier__SWIG_2(lua_State* L) {
72704 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"char const *");
72705 arg1 = (char *)lua_tostring(L, 1);
72707 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
72712 lua_error(L);
72717 static int _wrap_new_SBTypeNameSpecifier__SWIG_3(lua_State* L) {
72725 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"char const *");
72726 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",2,"lldb::FormatterMatchType");
72727 arg1 = (char *)lua_tostring(L, 1);
72728 arg2 = (lldb::FormatterMatchType)lua_tointeger(L, 2);
72730 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
72735 lua_error(L);
72740 static int _wrap_new_SBTypeNameSpecifier__SWIG_4(lua_State* L) {
72748 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"lldb::SBType");
72750 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBType,0))){
72756 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
72761 lua_error(L);
72766 static int _wrap_new_SBTypeNameSpecifier__SWIG_5(lua_State* L) {
72773 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"lldb::SBTypeNameSpecifier const &");
72775 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
72780 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++;
72785 lua_error(L);
72790 static int _wrap_new_SBTypeNameSpecifier(lua_State* L) {
72796 argc = lua_gettop(L);
72798 return _wrap_new_SBTypeNameSpecifier__SWIG_0(L);
72804 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBType, SWIG_POINTER_NO_NULL)) {
72811 return _wrap_new_SBTypeNameSpecifier__SWIG_4(L);
72818 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeNameSpecifier, SWIG_POINTER_NO_NULL)) {
72825 return _wrap_new_SBTypeNameSpecifier__SWIG_5(L);
72831 _v = SWIG_lua_isnilstring(L,argv[0]);
72834 return _wrap_new_SBTypeNameSpecifier__SWIG_2(L);
72840 _v = SWIG_lua_isnilstring(L,argv[0]);
72844 _v = lua_isboolean(L,argv[1]);
72847 return _wrap_new_SBTypeNameSpecifier__SWIG_1(L);
72854 _v = SWIG_lua_isnilstring(L,argv[0]);
72858 _v = lua_isnumber(L,argv[1]);
72861 return _wrap_new_SBTypeNameSpecifier__SWIG_3(L);
72866 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeNameSpecifier'\n"
72874 lua_error(L);return 0;
72878 static int _wrap_SBTypeNameSpecifier_IsValid(lua_State* L) {
72885 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsValid",1,"lldb::SBTypeNameSpecifier const *");
72887 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
72892 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72897 lua_error(L);
72902 static int _wrap_SBTypeNameSpecifier_GetName(lua_State* L) {
72909 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetName",1,"lldb::SBTypeNameSpecifier *");
72911 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
72916 lua_pushstring(L,(const char *)result); SWIG_arg++;
72921 lua_error(L);
72926 static int _wrap_SBTypeNameSpecifier_GetType(lua_State* L) {
72933 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetType",1,"lldb::SBTypeNameSpecifier *");
72935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
72942 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
72948 lua_error(L);
72953 static int _wrap_SBTypeNameSpecifier_GetMatchType(lua_State* L) {
72960 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetMatchType",1,"lldb::SBTypeNameSpecifier *");
72962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
72967 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
72972 lua_error(L);
72977 static int _wrap_SBTypeNameSpecifier_IsRegex(lua_State* L) {
72984 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsRegex",1,"lldb::SBTypeNameSpecifier *");
72986 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
72991 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
72996 lua_error(L);
73001 static int _wrap_SBTypeNameSpecifier_GetDescription(lua_State* L) {
73010 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetDescription",1,"lldb::SBTypeNameSpecifier *");
73011 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetDescription",2,"lldb::SBStream &");
73012 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetDescription",3,"lldb::DescriptionLevel");
73014 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
73019 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
73023 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
73025 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73030 lua_error(L);
73035 static int _wrap_SBTypeNameSpecifier_IsEqualTo(lua_State* L) {
73043 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsEqualTo",1,"lldb::SBTypeNameSpecifier *");
73044 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsEqualTo",2,"lldb::SBTypeNameSpecifier &");
73046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
73051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
73056 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73061 lua_error(L);
73066 static int _wrap_SBTypeNameSpecifier___eq(lua_State* L) {
73074 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::operator ==",1,"lldb::SBTypeNameSpecifier *");
73075 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::operator ==",2,"lldb::SBTypeNameSpecifier &");
73077 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
73082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
73087 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73092 lua_error(L);
73097 static int _wrap_SBTypeNameSpecifier___tostring(lua_State* L) {
73104 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::__repr__",1,"lldb::SBTypeNameSpecifier *");
73106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){
73111 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
73116 lua_error(L);
73125 static int _proxy__wrap_new_SBTypeNameSpecifier(lua_State *L) {
73126 assert(lua_istable(L,1));
73127 lua_pushcfunction(L,_wrap_new_SBTypeNameSpecifier);
73128 assert(!lua_isnil(L,-1));
73129 lua_replace(L,1); /* replace our table with real constructor */
73130 lua_call(L,lua_gettop(L)-1,1);
73179 static int _wrap_new_SBTypeSummaryOptions__SWIG_0(lua_State* L) {
73186 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummaryOptions,1); SWIG_arg++;
73191 lua_error(L);
73196 static int _wrap_new_SBTypeSummaryOptions__SWIG_1(lua_State* L) {
73203 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SBTypeSummaryOptions",1,"lldb::SBTypeSummaryOptions const &");
73205 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
73210 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummaryOptions,1); SWIG_arg++;
73215 lua_error(L);
73220 static int _wrap_new_SBTypeSummaryOptions(lua_State* L) {
73226 argc = lua_gettop(L);
73228 return _wrap_new_SBTypeSummaryOptions__SWIG_0(L);
73234 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeSummaryOptions, SWIG_POINTER_NO_NULL)) {
73241 return _wrap_new_SBTypeSummaryOptions__SWIG_1(L);
73245 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeSummaryOptions'\n"
73249 lua_error(L);return 0;
73253 static int _wrap_SBTypeSummaryOptions_IsValid(lua_State* L) {
73260 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::IsValid",1,"lldb::SBTypeSummaryOptions *");
73262 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
73267 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73272 lua_error(L);
73277 static int _wrap_SBTypeSummaryOptions_GetLanguage(lua_State* L) {
73284 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::GetLanguage",1,"lldb::SBTypeSummaryOptions *");
73286 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
73291 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
73296 lua_error(L);
73301 static int _wrap_SBTypeSummaryOptions_GetCapping(lua_State* L) {
73308 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::GetCapping",1,"lldb::SBTypeSummaryOptions *");
73310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
73315 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
73320 lua_error(L);
73325 static int _wrap_SBTypeSummaryOptions_SetLanguage(lua_State* L) {
73332 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetLanguage",1,"lldb::SBTypeSummaryOptions *");
73333 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetLanguage",2,"lldb::LanguageType");
73335 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
73339 arg2 = (lldb::LanguageType)lua_tointeger(L, 2);
73346 lua_error(L);
73351 static int _wrap_SBTypeSummaryOptions_SetCapping(lua_State* L) {
73358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetCapping",1,"lldb::SBTypeSummaryOptions *");
73359 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetCapping",2,"lldb::TypeSummaryCapping");
73361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
73365 arg2 = (lldb::TypeSummaryCapping)lua_tointeger(L, 2);
73372 lua_error(L);
73381 static int _proxy__wrap_new_SBTypeSummaryOptions(lua_State *L) {
73382 assert(lua_istable(L,1));
73383 lua_pushcfunction(L,_wrap_new_SBTypeSummaryOptions);
73384 assert(!lua_isnil(L,-1));
73385 lua_replace(L,1); /* replace our table with real constructor */
73386 lua_call(L,lua_gettop(L)-1,1);
73429 static int _wrap_new_SBTypeSummary__SWIG_0(lua_State* L) {
73436 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73441 lua_error(L);
73446 static int _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0(lua_State* L) {
73454 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithSummaryString",1,"char const *");
73455 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithSummaryString",2,"uint32_t");
73456 arg1 = (char *)lua_tostring(L, 1);
73457 arg2 = (uint32_t)lua_tointeger(L, 2);
73461 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73467 lua_error(L);
73472 static int _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1(lua_State* L) {
73479 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithSummaryString",1,"char const *");
73480 arg1 = (char *)lua_tostring(L, 1);
73484 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73490 lua_error(L);
73495 static int _wrap_SBTypeSummary_CreateWithSummaryString(lua_State* L) {
73501 argc = lua_gettop(L);
73505 _v = SWIG_lua_isnilstring(L,argv[0]);
73508 return _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1(L);
73514 _v = SWIG_lua_isnilstring(L,argv[0]);
73518 _v = lua_isnumber(L,argv[1]);
73521 return _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0(L);
73526 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSummary_CreateWithSummaryString'\n"
73530 lua_error(L);return 0;
73534 static int _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0(lua_State* L) {
73542 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithFunctionName",1,"char const *");
73543 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithFunctionName",2,"uint32_t");
73544 arg1 = (char *)lua_tostring(L, 1);
73545 arg2 = (uint32_t)lua_tointeger(L, 2);
73549 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73555 lua_error(L);
73560 static int _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1(lua_State* L) {
73567 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithFunctionName",1,"char const *");
73568 arg1 = (char *)lua_tostring(L, 1);
73572 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73578 lua_error(L);
73583 static int _wrap_SBTypeSummary_CreateWithFunctionName(lua_State* L) {
73589 argc = lua_gettop(L);
73593 _v = SWIG_lua_isnilstring(L,argv[0]);
73596 return _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1(L);
73602 _v = SWIG_lua_isnilstring(L,argv[0]);
73606 _v = lua_isnumber(L,argv[1]);
73609 return _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0(L);
73614 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSummary_CreateWithFunctionName'\n"
73618 lua_error(L);return 0;
73622 static int _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0(lua_State* L) {
73630 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithScriptCode",1,"char const *");
73631 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithScriptCode",2,"uint32_t");
73632 arg1 = (char *)lua_tostring(L, 1);
73633 arg2 = (uint32_t)lua_tointeger(L, 2);
73637 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73643 lua_error(L);
73648 static int _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1(lua_State* L) {
73655 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithScriptCode",1,"char const *");
73656 arg1 = (char *)lua_tostring(L, 1);
73660 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73666 lua_error(L);
73671 static int _wrap_SBTypeSummary_CreateWithScriptCode(lua_State* L) {
73677 argc = lua_gettop(L);
73681 _v = SWIG_lua_isnilstring(L,argv[0]);
73684 return _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1(L);
73690 _v = SWIG_lua_isnilstring(L,argv[0]);
73694 _v = lua_isnumber(L,argv[1]);
73697 return _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0(L);
73702 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSummary_CreateWithScriptCode'\n"
73706 lua_error(L);return 0;
73710 static int _wrap_new_SBTypeSummary__SWIG_1(lua_State* L) {
73717 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SBTypeSummary",1,"lldb::SBTypeSummary const &");
73719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73724 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
73729 lua_error(L);
73734 static int _wrap_new_SBTypeSummary(lua_State* L) {
73740 argc = lua_gettop(L);
73742 return _wrap_new_SBTypeSummary__SWIG_0(L);
73748 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeSummary, SWIG_POINTER_NO_NULL)) {
73755 return _wrap_new_SBTypeSummary__SWIG_1(L);
73759 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeSummary'\n"
73763 lua_error(L);return 0;
73767 static int _wrap_SBTypeSummary_IsValid(lua_State* L) {
73774 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsValid",1,"lldb::SBTypeSummary const *");
73776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73781 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73786 lua_error(L);
73791 static int _wrap_SBTypeSummary_IsFunctionCode(lua_State* L) {
73798 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsFunctionCode",1,"lldb::SBTypeSummary *");
73800 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73805 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73810 lua_error(L);
73815 static int _wrap_SBTypeSummary_IsFunctionName(lua_State* L) {
73822 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsFunctionName",1,"lldb::SBTypeSummary *");
73824 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73829 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73834 lua_error(L);
73839 static int _wrap_SBTypeSummary_IsSummaryString(lua_State* L) {
73846 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsSummaryString",1,"lldb::SBTypeSummary *");
73848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73853 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
73858 lua_error(L);
73863 static int _wrap_SBTypeSummary_GetData(lua_State* L) {
73870 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::GetData",1,"lldb::SBTypeSummary *");
73872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73877 lua_pushstring(L,(const char *)result); SWIG_arg++;
73882 lua_error(L);
73887 static int _wrap_SBTypeSummary_SetSummaryString(lua_State* L) {
73894 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetSummaryString",1,"lldb::SBTypeSummary *");
73895 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetSummaryString",2,"char const *");
73897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73901 arg2 = (char *)lua_tostring(L, 2);
73908 lua_error(L);
73913 static int _wrap_SBTypeSummary_SetFunctionName(lua_State* L) {
73920 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionName",1,"lldb::SBTypeSummary *");
73921 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionName",2,"char const *");
73923 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73927 arg2 = (char *)lua_tostring(L, 2);
73934 lua_error(L);
73939 static int _wrap_SBTypeSummary_SetFunctionCode(lua_State* L) {
73946 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionCode",1,"lldb::SBTypeSummary *");
73947 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionCode",2,"char const *");
73949 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73953 arg2 = (char *)lua_tostring(L, 2);
73960 lua_error(L);
73965 static int _wrap_SBTypeSummary_GetOptions(lua_State* L) {
73972 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::GetOptions",1,"lldb::SBTypeSummary *");
73974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
73979 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
73984 lua_error(L);
73989 static int _wrap_SBTypeSummary_SetOptions(lua_State* L) {
73996 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetOptions",1,"lldb::SBTypeSummary *");
73997 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetOptions",2,"uint32_t");
73999 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74003 arg2 = (uint32_t)lua_tointeger(L, 2);
74010 lua_error(L);
74015 static int _wrap_SBTypeSummary_GetDescription(lua_State* L) {
74024 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::GetDescription",1,"lldb::SBTypeSummary *");
74025 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::GetDescription",2,"lldb::SBStream &");
74026 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeSummary::GetDescription",3,"lldb::DescriptionLevel");
74028 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
74037 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
74039 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74044 lua_error(L);
74049 static int _wrap_SBTypeSummary_DoesPrintValue(lua_State* L) {
74058 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::DoesPrintValue",1,"lldb::SBTypeSummary *");
74059 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::DoesPrintValue",2,"lldb::SBValue");
74061 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBValue,0))){
74072 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74077 lua_error(L);
74082 static int _wrap_SBTypeSummary_IsEqualTo(lua_State* L) {
74090 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsEqualTo",1,"lldb::SBTypeSummary *");
74091 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::IsEqualTo",2,"lldb::SBTypeSummary &");
74093 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74098 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74103 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74108 lua_error(L);
74113 static int _wrap_SBTypeSummary___eq(lua_State* L) {
74121 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::operator ==",1,"lldb::SBTypeSummary *");
74122 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::operator ==",2,"lldb::SBTypeSummary &");
74124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74129 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74134 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74139 lua_error(L);
74144 static int _wrap_SBTypeSummary___tostring(lua_State* L) {
74151 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::__repr__",1,"lldb::SBTypeSummary *");
74153 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){
74158 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
74163 lua_error(L);
74172 static int _proxy__wrap_new_SBTypeSummary(lua_State *L) {
74173 assert(lua_istable(L,1));
74174 lua_pushcfunction(L,_wrap_new_SBTypeSummary);
74175 assert(!lua_isnil(L,-1));
74176 lua_replace(L,1); /* replace our table with real constructor */
74177 lua_call(L,lua_gettop(L)-1,1);
74235 static int _wrap_new_SBTypeSynthetic__SWIG_0(lua_State* L) {
74242 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
74247 lua_error(L);
74252 static int _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0(lua_State* L) {
74260 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithClassName",1,"char const *");
74261 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithClassName",2,"uint32_t");
74262 arg1 = (char *)lua_tostring(L, 1);
74263 arg2 = (uint32_t)lua_tointeger(L, 2);
74267 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
74273 lua_error(L);
74278 static int _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1(lua_State* L) {
74285 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithClassName",1,"char const *");
74286 arg1 = (char *)lua_tostring(L, 1);
74290 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
74296 lua_error(L);
74301 static int _wrap_SBTypeSynthetic_CreateWithClassName(lua_State* L) {
74307 argc = lua_gettop(L);
74311 _v = SWIG_lua_isnilstring(L,argv[0]);
74314 return _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1(L);
74320 _v = SWIG_lua_isnilstring(L,argv[0]);
74324 _v = lua_isnumber(L,argv[1]);
74327 return _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0(L);
74332 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSynthetic_CreateWithClassName'\n"
74336 lua_error(L);return 0;
74340 static int _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0(lua_State* L) {
74348 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithScriptCode",1,"char const *");
74349 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithScriptCode",2,"uint32_t");
74350 arg1 = (char *)lua_tostring(L, 1);
74351 arg2 = (uint32_t)lua_tointeger(L, 2);
74355 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
74361 lua_error(L);
74366 static int _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1(lua_State* L) {
74373 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithScriptCode",1,"char const *");
74374 arg1 = (char *)lua_tostring(L, 1);
74378 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
74384 lua_error(L);
74389 static int _wrap_SBTypeSynthetic_CreateWithScriptCode(lua_State* L) {
74395 argc = lua_gettop(L);
74399 _v = SWIG_lua_isnilstring(L,argv[0]);
74402 return _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1(L);
74408 _v = SWIG_lua_isnilstring(L,argv[0]);
74412 _v = lua_isnumber(L,argv[1]);
74415 return _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0(L);
74420 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSynthetic_CreateWithScriptCode'\n"
74424 lua_error(L);return 0;
74428 static int _wrap_new_SBTypeSynthetic__SWIG_1(lua_State* L) {
74435 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SBTypeSynthetic",1,"lldb::SBTypeSynthetic const &");
74437 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74442 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
74447 lua_error(L);
74452 static int _wrap_new_SBTypeSynthetic(lua_State* L) {
74458 argc = lua_gettop(L);
74460 return _wrap_new_SBTypeSynthetic__SWIG_0(L);
74466 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeSynthetic, SWIG_POINTER_NO_NULL)) {
74473 return _wrap_new_SBTypeSynthetic__SWIG_1(L);
74477 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeSynthetic'\n"
74481 lua_error(L);return 0;
74485 static int _wrap_SBTypeSynthetic_IsValid(lua_State* L) {
74492 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsValid",1,"lldb::SBTypeSynthetic const *");
74494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74499 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74504 lua_error(L);
74509 static int _wrap_SBTypeSynthetic_IsClassCode(lua_State* L) {
74516 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsClassCode",1,"lldb::SBTypeSynthetic *");
74518 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74523 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74528 lua_error(L);
74533 static int _wrap_SBTypeSynthetic_IsClassName(lua_State* L) {
74540 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsClassName",1,"lldb::SBTypeSynthetic *");
74542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74547 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74552 lua_error(L);
74557 static int _wrap_SBTypeSynthetic_GetData(lua_State* L) {
74564 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetData",1,"lldb::SBTypeSynthetic *");
74566 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74571 lua_pushstring(L,(const char *)result); SWIG_arg++;
74576 lua_error(L);
74581 static int _wrap_SBTypeSynthetic_SetClassName(lua_State* L) {
74588 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassName",1,"lldb::SBTypeSynthetic *");
74589 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassName",2,"char const *");
74591 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74595 arg2 = (char *)lua_tostring(L, 2);
74602 lua_error(L);
74607 static int _wrap_SBTypeSynthetic_SetClassCode(lua_State* L) {
74614 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassCode",1,"lldb::SBTypeSynthetic *");
74615 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassCode",2,"char const *");
74617 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74621 arg2 = (char *)lua_tostring(L, 2);
74628 lua_error(L);
74633 static int _wrap_SBTypeSynthetic_GetOptions(lua_State* L) {
74640 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetOptions",1,"lldb::SBTypeSynthetic *");
74642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74647 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
74652 lua_error(L);
74657 static int _wrap_SBTypeSynthetic_SetOptions(lua_State* L) {
74664 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetOptions",1,"lldb::SBTypeSynthetic *");
74665 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetOptions",2,"uint32_t");
74667 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74671 arg2 = (uint32_t)lua_tointeger(L, 2);
74678 lua_error(L);
74683 static int _wrap_SBTypeSynthetic_GetDescription(lua_State* L) {
74692 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetDescription",1,"lldb::SBTypeSynthetic *");
74693 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetDescription",2,"lldb::SBStream &");
74694 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetDescription",3,"lldb::DescriptionLevel");
74696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
74705 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
74707 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74712 lua_error(L);
74717 static int _wrap_SBTypeSynthetic_IsEqualTo(lua_State* L) {
74725 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsEqualTo",1,"lldb::SBTypeSynthetic *");
74726 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsEqualTo",2,"lldb::SBTypeSynthetic &");
74728 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74738 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74743 lua_error(L);
74748 static int _wrap_SBTypeSynthetic___eq(lua_State* L) {
74756 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::operator ==",1,"lldb::SBTypeSynthetic *");
74757 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::operator ==",2,"lldb::SBTypeSynthetic &");
74759 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74764 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74769 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74774 lua_error(L);
74779 static int _wrap_SBTypeSynthetic___tostring(lua_State* L) {
74786 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::__repr__",1,"lldb::SBTypeSynthetic *");
74788 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){
74793 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
74798 lua_error(L);
74807 static int _proxy__wrap_new_SBTypeSynthetic(lua_State *L) {
74808 assert(lua_istable(L,1));
74809 lua_pushcfunction(L,_wrap_new_SBTypeSynthetic);
74810 assert(!lua_isnil(L,-1));
74811 lua_replace(L,1); /* replace our table with real constructor */
74812 lua_call(L,lua_gettop(L)-1,1);
74866 static int _wrap_new_SBUnixSignals__SWIG_0(lua_State* L) {
74873 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++;
74878 lua_error(L);
74883 static int _wrap_new_SBUnixSignals__SWIG_1(lua_State* L) {
74890 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SBUnixSignals",1,"lldb::SBUnixSignals const &");
74892 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
74897 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++;
74902 lua_error(L);
74907 static int _wrap_new_SBUnixSignals(lua_State* L) {
74913 argc = lua_gettop(L);
74915 return _wrap_new_SBUnixSignals__SWIG_0(L);
74921 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBUnixSignals, SWIG_POINTER_NO_NULL)) {
74928 return _wrap_new_SBUnixSignals__SWIG_1(L);
74932 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBUnixSignals'\n"
74936 lua_error(L);return 0;
74940 static int _wrap_SBUnixSignals_Clear(lua_State* L) {
74946 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::Clear",1,"lldb::SBUnixSignals *");
74948 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
74958 lua_error(L);
74963 static int _wrap_SBUnixSignals_IsValid(lua_State* L) {
74970 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::IsValid",1,"lldb::SBUnixSignals const *");
74972 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
74977 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
74982 lua_error(L);
74987 static int _wrap_SBUnixSignals_GetSignalAsCString(lua_State* L) {
74995 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAsCString",1,"lldb::SBUnixSignals const *");
74996 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAsCString",2,"int32_t");
74998 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75002 arg2 = (int32_t)lua_tointeger(L, 2);
75004 lua_pushstring(L,(const char *)result); SWIG_arg++;
75009 lua_error(L);
75014 static int _wrap_SBUnixSignals_GetSignalNumberFromName(lua_State* L) {
75022 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalNumberFromName",1,"lldb::SBUnixSignals const *");
75023 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalNumberFromName",2,"char const *");
75025 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75029 arg2 = (char *)lua_tostring(L, 2);
75031 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75036 lua_error(L);
75041 static int _wrap_SBUnixSignals_GetShouldSuppress(lua_State* L) {
75049 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldSuppress",1,"lldb::SBUnixSignals const *");
75050 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldSuppress",2,"int32_t");
75052 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75056 arg2 = (int32_t)lua_tointeger(L, 2);
75058 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75063 lua_error(L);
75068 static int _wrap_SBUnixSignals_SetShouldSuppress(lua_State* L) {
75077 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldSuppress",1,"lldb::SBUnixSignals *");
75078 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldSuppress",2,"int32_t");
75079 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldSuppress",3,"bool");
75081 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75085 arg2 = (int32_t)lua_tointeger(L, 2);
75086 arg3 = (lua_toboolean(L, 3)!=0);
75088 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75093 lua_error(L);
75098 static int _wrap_SBUnixSignals_GetShouldStop(lua_State* L) {
75106 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldStop",1,"lldb::SBUnixSignals const *");
75107 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldStop",2,"int32_t");
75109 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75113 arg2 = (int32_t)lua_tointeger(L, 2);
75115 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75120 lua_error(L);
75125 static int _wrap_SBUnixSignals_SetShouldStop(lua_State* L) {
75134 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldStop",1,"lldb::SBUnixSignals *");
75135 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldStop",2,"int32_t");
75136 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldStop",3,"bool");
75138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75142 arg2 = (int32_t)lua_tointeger(L, 2);
75143 arg3 = (lua_toboolean(L, 3)!=0);
75145 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75150 lua_error(L);
75155 static int _wrap_SBUnixSignals_GetShouldNotify(lua_State* L) {
75163 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldNotify",1,"lldb::SBUnixSignals const *");
75164 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldNotify",2,"int32_t");
75166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75170 arg2 = (int32_t)lua_tointeger(L, 2);
75172 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75177 lua_error(L);
75182 static int _wrap_SBUnixSignals_SetShouldNotify(lua_State* L) {
75191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldNotify",1,"lldb::SBUnixSignals *");
75192 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldNotify",2,"int32_t");
75193 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldNotify",3,"bool");
75195 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75199 arg2 = (int32_t)lua_tointeger(L, 2);
75200 arg3 = (lua_toboolean(L, 3)!=0);
75202 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75207 lua_error(L);
75212 static int _wrap_SBUnixSignals_GetNumSignals(lua_State* L) {
75219 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetNumSignals",1,"lldb::SBUnixSignals const *");
75221 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75226 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75231 lua_error(L);
75236 static int _wrap_SBUnixSignals_GetSignalAtIndex(lua_State* L) {
75244 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAtIndex",1,"lldb::SBUnixSignals const *");
75245 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAtIndex",2,"int32_t");
75247 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){
75251 arg2 = (int32_t)lua_tointeger(L, 2);
75253 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75258 lua_error(L);
75267 static int _proxy__wrap_new_SBUnixSignals(lua_State *L) {
75268 assert(lua_istable(L,1));
75269 lua_pushcfunction(L,_wrap_new_SBUnixSignals);
75270 assert(!lua_isnil(L,-1));
75271 lua_replace(L,1); /* replace our table with real constructor */
75272 lua_call(L,lua_gettop(L)-1,1);
75322 static int _wrap_new_SBValue__SWIG_0(lua_State* L) {
75329 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
75334 lua_error(L);
75339 static int _wrap_new_SBValue__SWIG_1(lua_State* L) {
75346 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBValue::SBValue",1,"lldb::SBValue const &");
75348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75353 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
75358 lua_error(L);
75363 static int _wrap_new_SBValue(lua_State* L) {
75369 argc = lua_gettop(L);
75371 return _wrap_new_SBValue__SWIG_0(L);
75377 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, SWIG_POINTER_NO_NULL)) {
75384 return _wrap_new_SBValue__SWIG_1(L);
75388 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBValue'\n"
75392 lua_error(L);return 0;
75396 static int _wrap_SBValue_IsValid(lua_State* L) {
75403 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsValid",1,"lldb::SBValue *");
75405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75410 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75415 lua_error(L);
75420 static int _wrap_SBValue_Clear(lua_State* L) {
75426 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Clear",1,"lldb::SBValue *");
75428 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75438 lua_error(L);
75443 static int _wrap_SBValue_GetError(lua_State* L) {
75450 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetError",1,"lldb::SBValue *");
75452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75459 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
75465 lua_error(L);
75470 static int _wrap_SBValue_GetID(lua_State* L) {
75477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetID",1,"lldb::SBValue *");
75479 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75484 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75489 lua_error(L);
75494 static int _wrap_SBValue_GetName(lua_State* L) {
75501 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetName",1,"lldb::SBValue *");
75503 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75508 lua_pushstring(L,(const char *)result); SWIG_arg++;
75513 lua_error(L);
75518 static int _wrap_SBValue_GetTypeName(lua_State* L) {
75525 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeName",1,"lldb::SBValue *");
75527 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75532 lua_pushstring(L,(const char *)result); SWIG_arg++;
75537 lua_error(L);
75542 static int _wrap_SBValue_GetDisplayTypeName(lua_State* L) {
75549 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDisplayTypeName",1,"lldb::SBValue *");
75551 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75556 lua_pushstring(L,(const char *)result); SWIG_arg++;
75561 lua_error(L);
75566 static int _wrap_SBValue_GetByteSize(lua_State* L) {
75573 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetByteSize",1,"lldb::SBValue *");
75575 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75580 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75585 lua_error(L);
75590 static int _wrap_SBValue_IsInScope(lua_State* L) {
75597 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsInScope",1,"lldb::SBValue *");
75599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75604 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
75609 lua_error(L);
75614 static int _wrap_SBValue_GetFormat(lua_State* L) {
75621 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetFormat",1,"lldb::SBValue *");
75623 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75628 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75633 lua_error(L);
75638 static int _wrap_SBValue_SetFormat(lua_State* L) {
75645 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetFormat",1,"lldb::SBValue *");
75646 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::SetFormat",2,"lldb::Format");
75648 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75652 arg2 = (lldb::Format)lua_tointeger(L, 2);
75659 lua_error(L);
75664 static int _wrap_SBValue_GetValue(lua_State* L) {
75671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValue",1,"lldb::SBValue *");
75673 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75678 lua_pushstring(L,(const char *)result); SWIG_arg++;
75683 lua_error(L);
75688 static int _wrap_SBValue_GetValueAsSigned__SWIG_0(lua_State* L) {
75697 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *");
75698 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",2,"lldb::SBError &");
75699 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",3,"int64_t");
75701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75706 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
75710 arg3 = (int64_t)lua_tointeger(L, 3);
75712 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75717 lua_error(L);
75722 static int _wrap_SBValue_GetValueAsSigned__SWIG_1(lua_State* L) {
75730 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *");
75731 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",2,"lldb::SBError &");
75733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75738 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
75743 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75748 lua_error(L);
75753 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_0(lua_State* L) {
75762 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *");
75763 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",2,"lldb::SBError &");
75764 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",3,"uint64_t");
75766 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75771 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
75775 arg3 = (uint64_t)lua_tointeger(L, 3);
75777 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75782 lua_error(L);
75787 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_1(lua_State* L) {
75795 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *");
75796 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",2,"lldb::SBError &");
75798 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75803 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){
75808 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75813 lua_error(L);
75818 static int _wrap_SBValue_GetValueAsSigned__SWIG_2(lua_State* L) {
75826 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *");
75827 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",2,"int64_t");
75829 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75833 arg2 = (int64_t)lua_tointeger(L, 2);
75835 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75840 lua_error(L);
75845 static int _wrap_SBValue_GetValueAsSigned__SWIG_3(lua_State* L) {
75852 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *");
75854 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75859 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75864 lua_error(L);
75869 static int _wrap_SBValue_GetValueAsSigned(lua_State* L) {
75875 argc = lua_gettop(L);
75880 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
75887 return _wrap_SBValue_GetValueAsSigned__SWIG_3(L);
75894 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
75903 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
75910 return _wrap_SBValue_GetValueAsSigned__SWIG_1(L);
75918 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
75926 _v = lua_isnumber(L,argv[1]);
75929 return _wrap_SBValue_GetValueAsSigned__SWIG_2(L);
75937 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
75946 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
75954 _v = lua_isnumber(L,argv[2]);
75957 return _wrap_SBValue_GetValueAsSigned__SWIG_0(L);
75963 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetValueAsSigned'\n"
75969 lua_error(L);return 0;
75973 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_2(lua_State* L) {
75981 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *");
75982 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",2,"uint64_t");
75984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
75988 arg2 = (uint64_t)lua_tointeger(L, 2);
75990 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
75995 lua_error(L);
76000 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_3(lua_State* L) {
76007 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *");
76009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76014 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
76019 lua_error(L);
76024 static int _wrap_SBValue_GetValueAsUnsigned(lua_State* L) {
76030 argc = lua_gettop(L);
76035 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76042 return _wrap_SBValue_GetValueAsUnsigned__SWIG_3(L);
76049 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76058 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
76065 return _wrap_SBValue_GetValueAsUnsigned__SWIG_1(L);
76073 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76081 _v = lua_isnumber(L,argv[1]);
76084 return _wrap_SBValue_GetValueAsUnsigned__SWIG_2(L);
76092 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76101 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
76109 _v = lua_isnumber(L,argv[2]);
76112 return _wrap_SBValue_GetValueAsUnsigned__SWIG_0(L);
76118 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetValueAsUnsigned'\n"
76124 lua_error(L);return 0;
76128 static int _wrap_SBValue_GetValueAsAddress(lua_State* L) {
76135 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsAddress",1,"lldb::SBValue *");
76137 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76142 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
76147 lua_error(L);
76152 static int _wrap_SBValue_GetValueType(lua_State* L) {
76159 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueType",1,"lldb::SBValue *");
76161 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76166 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
76171 lua_error(L);
76176 static int _wrap_SBValue_GetValueDidChange(lua_State* L) {
76183 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueDidChange",1,"lldb::SBValue *");
76185 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76190 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76195 lua_error(L);
76200 static int _wrap_SBValue_GetSummary__SWIG_0(lua_State* L) {
76207 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetSummary",1,"lldb::SBValue *");
76209 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76214 lua_pushstring(L,(const char *)result); SWIG_arg++;
76219 lua_error(L);
76224 static int _wrap_SBValue_GetSummary__SWIG_1(lua_State* L) {
76233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetSummary",1,"lldb::SBValue *");
76234 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetSummary",2,"lldb::SBStream &");
76235 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::GetSummary",3,"lldb::SBTypeSummaryOptions &");
76237 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76242 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
76247 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){
76252 lua_pushstring(L,(const char *)result); SWIG_arg++;
76257 lua_error(L);
76262 static int _wrap_SBValue_GetSummary(lua_State* L) {
76268 argc = lua_gettop(L);
76273 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76280 return _wrap_SBValue_GetSummary__SWIG_0(L);
76287 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76296 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
76305 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBTypeSummaryOptions, SWIG_POINTER_NO_NULL)) {
76312 return _wrap_SBValue_GetSummary__SWIG_1(L);
76318 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetSummary'\n"
76322 lua_error(L);return 0;
76326 static int _wrap_SBValue_GetObjectDescription(lua_State* L) {
76333 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetObjectDescription",1,"lldb::SBValue *");
76335 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76340 lua_pushstring(L,(const char *)result); SWIG_arg++;
76345 lua_error(L);
76350 static int _wrap_SBValue_GetDynamicValue(lua_State* L) {
76358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDynamicValue",1,"lldb::SBValue *");
76359 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetDynamicValue",2,"lldb::DynamicValueType");
76361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76365 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2);
76369 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
76375 lua_error(L);
76380 static int _wrap_SBValue_GetStaticValue(lua_State* L) {
76387 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetStaticValue",1,"lldb::SBValue *");
76389 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76396 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
76402 lua_error(L);
76407 static int _wrap_SBValue_GetNonSyntheticValue(lua_State* L) {
76414 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetNonSyntheticValue",1,"lldb::SBValue *");
76416 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76423 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
76429 lua_error(L);
76434 static int _wrap_SBValue_GetSyntheticValue(lua_State* L) {
76441 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetSyntheticValue",1,"lldb::SBValue *");
76443 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76450 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
76456 lua_error(L);
76461 static int _wrap_SBValue_GetPreferDynamicValue(lua_State* L) {
76468 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPreferDynamicValue",1,"lldb::SBValue *");
76470 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76475 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
76480 lua_error(L);
76485 static int _wrap_SBValue_SetPreferDynamicValue(lua_State* L) {
76492 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetPreferDynamicValue",1,"lldb::SBValue *");
76493 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::SetPreferDynamicValue",2,"lldb::DynamicValueType");
76495 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76499 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2);
76506 lua_error(L);
76511 static int _wrap_SBValue_GetPreferSyntheticValue(lua_State* L) {
76518 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPreferSyntheticValue",1,"lldb::SBValue *");
76520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76525 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76530 lua_error(L);
76535 static int _wrap_SBValue_SetPreferSyntheticValue(lua_State* L) {
76542 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetPreferSyntheticValue",1,"lldb::SBValue *");
76543 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::SetPreferSyntheticValue",2,"bool");
76545 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76549 arg2 = (lua_toboolean(L, 2)!=0);
76556 lua_error(L);
76561 static int _wrap_SBValue_IsDynamic(lua_State* L) {
76568 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsDynamic",1,"lldb::SBValue *");
76570 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76575 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76580 lua_error(L);
76585 static int _wrap_SBValue_IsSynthetic(lua_State* L) {
76592 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsSynthetic",1,"lldb::SBValue *");
76594 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76599 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76604 lua_error(L);
76609 static int _wrap_SBValue_IsSyntheticChildrenGenerated(lua_State* L) {
76616 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsSyntheticChildrenGenerated",1,"lldb::SBValue *");
76618 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76623 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76628 lua_error(L);
76633 static int _wrap_SBValue_SetSyntheticChildrenGenerated(lua_State* L) {
76640 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetSyntheticChildrenGenerated",1,"lldb::SBValue *");
76641 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::SetSyntheticChildrenGenerated",2,"bool");
76643 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76647 arg2 = (lua_toboolean(L, 2)!=0);
76654 lua_error(L);
76659 static int _wrap_SBValue_GetLocation(lua_State* L) {
76666 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetLocation",1,"lldb::SBValue *");
76668 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76673 lua_pushstring(L,(const char *)result); SWIG_arg++;
76678 lua_error(L);
76683 static int _wrap_SBValue_SetValueFromCString__SWIG_0(lua_State* L) {
76691 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",1,"lldb::SBValue *");
76692 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",2,"char const *");
76694 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76698 arg2 = (char *)lua_tostring(L, 2);
76700 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76705 lua_error(L);
76710 static int _wrap_SBValue_SetValueFromCString__SWIG_1(lua_State* L) {
76719 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",1,"lldb::SBValue *");
76720 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",2,"char const *");
76721 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",3,"lldb::SBError &");
76723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76727 arg2 = (char *)lua_tostring(L, 2);
76729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
76734 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
76739 lua_error(L);
76744 static int _wrap_SBValue_SetValueFromCString(lua_State* L) {
76750 argc = lua_gettop(L);
76755 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76763 _v = SWIG_lua_isnilstring(L,argv[1]);
76766 return _wrap_SBValue_SetValueFromCString__SWIG_0(L);
76774 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
76782 _v = SWIG_lua_isnilstring(L,argv[1]);
76787 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
76794 return _wrap_SBValue_SetValueFromCString__SWIG_1(L);
76800 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_SetValueFromCString'\n"
76804 lua_error(L);return 0;
76808 static int _wrap_SBValue_GetTypeFormat(lua_State* L) {
76815 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeFormat",1,"lldb::SBValue *");
76817 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76824 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++;
76830 lua_error(L);
76835 static int _wrap_SBValue_GetTypeSummary(lua_State* L) {
76842 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeSummary",1,"lldb::SBValue *");
76844 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76851 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++;
76857 lua_error(L);
76862 static int _wrap_SBValue_GetTypeFilter(lua_State* L) {
76869 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeFilter",1,"lldb::SBValue *");
76871 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76878 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++;
76884 lua_error(L);
76889 static int _wrap_SBValue_GetTypeSynthetic(lua_State* L) {
76896 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeSynthetic",1,"lldb::SBValue *");
76898 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76905 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++;
76911 lua_error(L);
76916 static int _wrap_SBValue_GetChildAtIndex__SWIG_0(lua_State* L) {
76924 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",1,"lldb::SBValue *");
76925 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",2,"uint32_t");
76927 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76931 arg2 = (uint32_t)lua_tointeger(L, 2);
76935 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
76941 lua_error(L);
76946 static int _wrap_SBValue_CreateChildAtOffset(lua_State* L) {
76957 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",1,"lldb::SBValue *");
76958 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",2,"char const *");
76959 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",3,"uint32_t");
76960 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",4,"lldb::SBType");
76962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
76966 arg2 = (char *)lua_tostring(L, 2);
76967 arg3 = (uint32_t)lua_tointeger(L, 3);
76969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){
76977 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
76983 lua_error(L);
76988 static int _wrap_SBValue_Cast(lua_State* L) {
76997 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Cast",1,"lldb::SBValue *");
76998 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::Cast",2,"lldb::SBType");
77000 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77005 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBType,0))){
77013 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77019 lua_error(L);
77024 static int _wrap_SBValue_CreateValueFromExpression__SWIG_0(lua_State* L) {
77033 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",1,"lldb::SBValue *");
77034 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",2,"char const *");
77035 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",3,"char const *");
77037 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77041 arg2 = (char *)lua_tostring(L, 2);
77042 arg3 = (char *)lua_tostring(L, 3);
77046 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77052 lua_error(L);
77057 static int _wrap_SBValue_CreateValueFromExpression__SWIG_1(lua_State* L) {
77067 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",1,"lldb::SBValue *");
77068 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",2,"char const *");
77069 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",3,"char const *");
77070 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",4,"lldb::SBExpressionOptions &");
77072 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77076 arg2 = (char *)lua_tostring(L, 2);
77077 arg3 = (char *)lua_tostring(L, 3);
77079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
77086 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77092 lua_error(L);
77097 static int _wrap_SBValue_CreateValueFromExpression(lua_State* L) {
77103 argc = lua_gettop(L);
77108 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77116 _v = SWIG_lua_isnilstring(L,argv[1]);
77120 _v = SWIG_lua_isnilstring(L,argv[2]);
77123 return _wrap_SBValue_CreateValueFromExpression__SWIG_0(L);
77132 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77140 _v = SWIG_lua_isnilstring(L,argv[1]);
77144 _v = SWIG_lua_isnilstring(L,argv[2]);
77149 if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, SWIG_POINTER_NO_NULL)) {
77156 return _wrap_SBValue_CreateValueFromExpression__SWIG_1(L);
77163 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_CreateValueFromExpression'\n"
77167 lua_error(L);return 0;
77171 static int _wrap_SBValue_CreateValueFromAddress(lua_State* L) {
77182 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",1,"lldb::SBValue *");
77183 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",2,"char const *");
77184 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",3,"lldb::addr_t");
77185 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",4,"lldb::SBType");
77187 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77191 arg2 = (char *)lua_tostring(L, 2);
77192 arg3 = (lldb::addr_t)lua_tointeger(L, 3);
77194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){
77202 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77208 lua_error(L);
77213 static int _wrap_SBValue_CreateValueFromData(lua_State* L) {
77225 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",1,"lldb::SBValue *");
77226 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",2,"char const *");
77227 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",3,"lldb::SBData");
77228 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",4,"lldb::SBType");
77230 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77234 arg2 = (char *)lua_tostring(L, 2);
77236 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBData,0))){
77242 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){
77250 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77256 lua_error(L);
77261 static int _wrap_SBValue_GetChildAtIndex__SWIG_1(lua_State* L) {
77271 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",1,"lldb::SBValue *");
77272 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",2,"uint32_t");
77273 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",3,"lldb::DynamicValueType");
77274 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",4,"bool");
77276 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77280 arg2 = (uint32_t)lua_tointeger(L, 2);
77281 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3);
77282 arg4 = (lua_toboolean(L, 4)!=0);
77286 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77292 lua_error(L);
77297 static int _wrap_SBValue_GetChildAtIndex(lua_State* L) {
77303 argc = lua_gettop(L);
77308 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77316 _v = lua_isnumber(L,argv[1]);
77319 return _wrap_SBValue_GetChildAtIndex__SWIG_0(L);
77327 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77335 _v = lua_isnumber(L,argv[1]);
77339 _v = lua_isnumber(L,argv[2]);
77343 _v = lua_isboolean(L,argv[3]);
77346 return _wrap_SBValue_GetChildAtIndex__SWIG_1(L);
77353 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetChildAtIndex'\n"
77357 lua_error(L);return 0;
77361 static int _wrap_SBValue_GetIndexOfChildWithName(lua_State* L) {
77369 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetIndexOfChildWithName",1,"lldb::SBValue *");
77370 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetIndexOfChildWithName",2,"char const *");
77372 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77376 arg2 = (char *)lua_tostring(L, 2);
77378 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
77383 lua_error(L);
77388 static int _wrap_SBValue_GetChildMemberWithName__SWIG_0(lua_State* L) {
77396 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",1,"lldb::SBValue *");
77397 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",2,"char const *");
77399 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77403 arg2 = (char *)lua_tostring(L, 2);
77407 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77413 lua_error(L);
77418 static int _wrap_SBValue_GetChildMemberWithName__SWIG_1(lua_State* L) {
77427 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",1,"lldb::SBValue *");
77428 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",2,"char const *");
77429 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",3,"lldb::DynamicValueType");
77431 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77435 arg2 = (char *)lua_tostring(L, 2);
77436 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3);
77440 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77446 lua_error(L);
77451 static int _wrap_SBValue_GetChildMemberWithName(lua_State* L) {
77457 argc = lua_gettop(L);
77462 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77470 _v = SWIG_lua_isnilstring(L,argv[1]);
77473 return _wrap_SBValue_GetChildMemberWithName__SWIG_0(L);
77481 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77489 _v = SWIG_lua_isnilstring(L,argv[1]);
77493 _v = lua_isnumber(L,argv[2]);
77496 return _wrap_SBValue_GetChildMemberWithName__SWIG_1(L);
77502 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetChildMemberWithName'\n"
77506 lua_error(L);return 0;
77510 static int _wrap_SBValue_GetValueForExpressionPath(lua_State* L) {
77518 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueForExpressionPath",1,"lldb::SBValue *");
77519 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueForExpressionPath",2,"char const *");
77521 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77525 arg2 = (char *)lua_tostring(L, 2);
77529 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77535 lua_error(L);
77540 static int _wrap_SBValue_AddressOf(lua_State* L) {
77547 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::AddressOf",1,"lldb::SBValue *");
77549 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77556 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77562 lua_error(L);
77567 static int _wrap_SBValue_GetLoadAddress(lua_State* L) {
77574 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetLoadAddress",1,"lldb::SBValue *");
77576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77581 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
77586 lua_error(L);
77591 static int _wrap_SBValue_GetAddress(lua_State* L) {
77598 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetAddress",1,"lldb::SBValue *");
77600 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77607 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++;
77613 lua_error(L);
77618 static int _wrap_SBValue_GetPointeeData__SWIG_0(lua_State* L) {
77627 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",1,"lldb::SBValue *");
77628 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",2,"uint32_t");
77629 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",3,"uint32_t");
77631 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77635 arg2 = (uint32_t)lua_tointeger(L, 2);
77636 arg3 = (uint32_t)lua_tointeger(L, 3);
77640 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
77646 lua_error(L);
77651 static int _wrap_SBValue_GetPointeeData__SWIG_1(lua_State* L) {
77659 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",1,"lldb::SBValue *");
77660 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",2,"uint32_t");
77662 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77666 arg2 = (uint32_t)lua_tointeger(L, 2);
77670 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
77676 lua_error(L);
77681 static int _wrap_SBValue_GetPointeeData__SWIG_2(lua_State* L) {
77688 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",1,"lldb::SBValue *");
77690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77697 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
77703 lua_error(L);
77708 static int _wrap_SBValue_GetPointeeData(lua_State* L) {
77714 argc = lua_gettop(L);
77719 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77726 return _wrap_SBValue_GetPointeeData__SWIG_2(L);
77733 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77741 _v = lua_isnumber(L,argv[1]);
77744 return _wrap_SBValue_GetPointeeData__SWIG_1(L);
77752 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
77760 _v = lua_isnumber(L,argv[1]);
77764 _v = lua_isnumber(L,argv[2]);
77767 return _wrap_SBValue_GetPointeeData__SWIG_0(L);
77773 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetPointeeData'\n"
77778 lua_error(L);return 0;
77782 static int _wrap_SBValue_GetData(lua_State* L) {
77789 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetData",1,"lldb::SBValue *");
77791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77798 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++;
77804 lua_error(L);
77809 static int _wrap_SBValue_SetData(lua_State* L) {
77818 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetData",1,"lldb::SBValue *");
77819 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::SetData",2,"lldb::SBData &");
77820 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::SetData",3,"lldb::SBError &");
77822 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77827 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBData,0))){
77832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){
77837 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
77842 lua_error(L);
77847 static int _wrap_SBValue_Clone(lua_State* L) {
77855 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Clone",1,"lldb::SBValue *");
77856 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::Clone",2,"char const *");
77858 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77862 arg2 = (char *)lua_tostring(L, 2);
77866 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
77872 lua_error(L);
77877 static int _wrap_SBValue_GetDeclaration(lua_State* L) {
77884 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDeclaration",1,"lldb::SBValue *");
77886 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77893 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDeclaration,1); SWIG_arg++;
77899 lua_error(L);
77904 static int _wrap_SBValue_MightHaveChildren(lua_State* L) {
77911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::MightHaveChildren",1,"lldb::SBValue *");
77913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77918 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
77923 lua_error(L);
77928 static int _wrap_SBValue_IsRuntimeSupportValue(lua_State* L) {
77935 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsRuntimeSupportValue",1,"lldb::SBValue *");
77937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77942 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
77947 lua_error(L);
77952 static int _wrap_SBValue_GetNumChildren__SWIG_0(lua_State* L) {
77959 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetNumChildren",1,"lldb::SBValue *");
77961 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77966 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
77971 lua_error(L);
77976 static int _wrap_SBValue_GetNumChildren__SWIG_1(lua_State* L) {
77984 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetNumChildren",1,"lldb::SBValue *");
77985 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetNumChildren",2,"uint32_t");
77987 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
77991 arg2 = (uint32_t)lua_tointeger(L, 2);
77993 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
77998 lua_error(L);
78003 static int _wrap_SBValue_GetNumChildren(lua_State* L) {
78009 argc = lua_gettop(L);
78014 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78021 return _wrap_SBValue_GetNumChildren__SWIG_0(L);
78028 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78036 _v = lua_isnumber(L,argv[1]);
78039 return _wrap_SBValue_GetNumChildren__SWIG_1(L);
78044 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetNumChildren'\n"
78048 lua_error(L);return 0;
78052 static int _wrap_SBValue_GetOpaqueType(lua_State* L) {
78059 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetOpaqueType",1,"lldb::SBValue *");
78061 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78066 SWIG_NewPointerObj(L,result,SWIGTYPE_p_void,0); SWIG_arg++;
78071 lua_error(L);
78076 static int _wrap_SBValue_GetTarget(lua_State* L) {
78083 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTarget",1,"lldb::SBValue *");
78085 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78092 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++;
78098 lua_error(L);
78103 static int _wrap_SBValue_GetProcess(lua_State* L) {
78110 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetProcess",1,"lldb::SBValue *");
78112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78119 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++;
78125 lua_error(L);
78130 static int _wrap_SBValue_GetThread(lua_State* L) {
78137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetThread",1,"lldb::SBValue *");
78139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++;
78152 lua_error(L);
78157 static int _wrap_SBValue_GetFrame(lua_State* L) {
78164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetFrame",1,"lldb::SBValue *");
78166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78173 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++;
78179 lua_error(L);
78184 static int _wrap_SBValue_Dereference(lua_State* L) {
78191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Dereference",1,"lldb::SBValue *");
78193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78200 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
78206 lua_error(L);
78211 static int _wrap_SBValue_TypeIsPointerType(lua_State* L) {
78218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::TypeIsPointerType",1,"lldb::SBValue *");
78220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78225 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
78230 lua_error(L);
78235 static int _wrap_SBValue_GetType(lua_State* L) {
78242 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetType",1,"lldb::SBValue *");
78244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78251 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
78257 lua_error(L);
78262 static int _wrap_SBValue_Persist(lua_State* L) {
78269 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Persist",1,"lldb::SBValue *");
78271 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78278 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
78284 lua_error(L);
78289 static int _wrap_SBValue_GetDescription(lua_State* L) {
78297 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDescription",1,"lldb::SBValue *");
78298 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetDescription",2,"lldb::SBStream &");
78300 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78305 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
78310 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
78315 lua_error(L);
78320 static int _wrap_SBValue_GetExpressionPath__SWIG_0(lua_State* L) {
78328 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",1,"lldb::SBValue *");
78329 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",2,"lldb::SBStream &");
78331 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
78341 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
78346 lua_error(L);
78351 static int _wrap_SBValue_GetExpressionPath__SWIG_1(lua_State* L) {
78360 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",1,"lldb::SBValue *");
78361 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",2,"lldb::SBStream &");
78362 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",3,"bool");
78364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
78373 arg3 = (lua_toboolean(L, 3)!=0);
78375 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
78380 lua_error(L);
78385 static int _wrap_SBValue_GetExpressionPath(lua_State* L) {
78391 argc = lua_gettop(L);
78396 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78405 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
78412 return _wrap_SBValue_GetExpressionPath__SWIG_0(L);
78420 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78429 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBStream, SWIG_POINTER_NO_NULL)) {
78437 _v = lua_isboolean(L,argv[2]);
78440 return _wrap_SBValue_GetExpressionPath__SWIG_1(L);
78446 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetExpressionPath'\n"
78450 lua_error(L);return 0;
78454 static int _wrap_SBValue_EvaluateExpression__SWIG_0(lua_State* L) {
78462 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",1,"lldb::SBValue const *");
78463 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",2,"char const *");
78465 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78469 arg2 = (char *)lua_tostring(L, 2);
78473 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
78479 lua_error(L);
78484 static int _wrap_SBValue_EvaluateExpression__SWIG_1(lua_State* L) {
78493 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",1,"lldb::SBValue const *");
78494 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",2,"char const *");
78495 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",3,"lldb::SBExpressionOptions const &");
78497 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78501 arg2 = (char *)lua_tostring(L, 2);
78503 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
78510 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
78516 lua_error(L);
78521 static int _wrap_SBValue_EvaluateExpression__SWIG_2(lua_State* L) {
78531 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",1,"lldb::SBValue const *");
78532 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",2,"char const *");
78533 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",3,"lldb::SBExpressionOptions const &");
78534 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",4,"char const *");
78536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78540 arg2 = (char *)lua_tostring(L, 2);
78542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){
78546 arg4 = (char *)lua_tostring(L, 4);
78550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
78556 lua_error(L);
78561 static int _wrap_SBValue_EvaluateExpression(lua_State* L) {
78567 argc = lua_gettop(L);
78572 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78580 _v = SWIG_lua_isnilstring(L,argv[1]);
78583 return _wrap_SBValue_EvaluateExpression__SWIG_0(L);
78591 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78599 _v = SWIG_lua_isnilstring(L,argv[1]);
78604 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, SWIG_POINTER_NO_NULL)) {
78611 return _wrap_SBValue_EvaluateExpression__SWIG_1(L);
78620 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78628 _v = SWIG_lua_isnilstring(L,argv[1]);
78633 if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SBExpressionOptions, SWIG_POINTER_NO_NULL)) {
78641 _v = SWIG_lua_isnilstring(L,argv[3]);
78644 return _wrap_SBValue_EvaluateExpression__SWIG_2(L);
78651 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_EvaluateExpression'\n"
78656 lua_error(L);return 0;
78660 static int _wrap_SBValue_Watch__SWIG_0(lua_State* L) {
78671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Watch",1,"lldb::SBValue *");
78672 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::Watch",2,"bool");
78673 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::Watch",3,"bool");
78674 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::Watch",4,"bool");
78675 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBValue::Watch",5,"lldb::SBError &");
78677 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78681 arg2 = (lua_toboolean(L, 2)!=0);
78682 arg3 = (lua_toboolean(L, 3)!=0);
78683 arg4 = (lua_toboolean(L, 4)!=0);
78685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
78692 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
78698 lua_error(L);
78703 static int _wrap_SBValue_Watch__SWIG_1(lua_State* L) {
78713 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Watch",1,"lldb::SBValue *");
78714 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::Watch",2,"bool");
78715 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::Watch",3,"bool");
78716 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::Watch",4,"bool");
78718 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78722 arg2 = (lua_toboolean(L, 2)!=0);
78723 arg3 = (lua_toboolean(L, 3)!=0);
78724 arg4 = (lua_toboolean(L, 4)!=0);
78728 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
78734 lua_error(L);
78739 static int _wrap_SBValue_Watch(lua_State* L) {
78745 argc = lua_gettop(L);
78750 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78758 _v = lua_isboolean(L,argv[1]);
78762 _v = lua_isboolean(L,argv[2]);
78766 _v = lua_isboolean(L,argv[3]);
78769 return _wrap_SBValue_Watch__SWIG_1(L);
78779 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, 0)) {
78787 _v = lua_isboolean(L,argv[1]);
78791 _v = lua_isboolean(L,argv[2]);
78795 _v = lua_isboolean(L,argv[3]);
78800 if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SBError, SWIG_POINTER_NO_NULL)) {
78807 return _wrap_SBValue_Watch__SWIG_0(L);
78815 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_Watch'\n"
78819 lua_error(L);return 0;
78823 static int _wrap_SBValue_WatchPointee(lua_State* L) {
78834 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::WatchPointee",1,"lldb::SBValue *");
78835 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::WatchPointee",2,"bool");
78836 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::WatchPointee",3,"bool");
78837 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::WatchPointee",4,"bool");
78838 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBValue::WatchPointee",5,"lldb::SBError &");
78840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78844 arg2 = (lua_toboolean(L, 2)!=0);
78845 arg3 = (lua_toboolean(L, 3)!=0);
78846 arg4 = (lua_toboolean(L, 4)!=0);
78848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){
78855 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
78861 lua_error(L);
78866 static int _wrap_SBValue_GetVTable(lua_State* L) {
78873 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetVTable",1,"lldb::SBValue *");
78875 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78882 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
78888 lua_error(L);
78893 static int _wrap_SBValue___tostring(lua_State* L) {
78900 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::__repr__",1,"lldb::SBValue *");
78902 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){
78907 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
78912 lua_error(L);
78921 static int _proxy__wrap_new_SBValue(lua_State *L) {
78922 assert(lua_istable(L,1));
78923 lua_pushcfunction(L,_wrap_new_SBValue);
78924 assert(!lua_isnil(L,-1));
78925 lua_replace(L,1); /* replace our table with real constructor */
78926 lua_call(L,lua_gettop(L)-1,1);
79038 static int _wrap_new_SBValueList__SWIG_0(lua_State* L) {
79045 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
79050 lua_error(L);
79055 static int _wrap_new_SBValueList__SWIG_1(lua_State* L) {
79062 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBValueList::SBValueList",1,"lldb::SBValueList const &");
79064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79069 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++;
79074 lua_error(L);
79079 static int _wrap_new_SBValueList(lua_State* L) {
79085 argc = lua_gettop(L);
79087 return _wrap_new_SBValueList__SWIG_0(L);
79093 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValueList, SWIG_POINTER_NO_NULL)) {
79100 return _wrap_new_SBValueList__SWIG_1(L);
79104 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBValueList'\n"
79108 lua_error(L);return 0;
79112 static int _wrap_SBValueList_IsValid(lua_State* L) {
79119 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::IsValid",1,"lldb::SBValueList const *");
79121 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79126 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79131 lua_error(L);
79136 static int _wrap_SBValueList_Clear(lua_State* L) {
79142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::Clear",1,"lldb::SBValueList *");
79144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79154 lua_error(L);
79159 static int _wrap_SBValueList_Append__SWIG_0(lua_State* L) {
79166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::Append",1,"lldb::SBValueList *");
79167 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValueList::Append",2,"lldb::SBValue const &");
79169 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBValue,0))){
79184 lua_error(L);
79189 static int _wrap_SBValueList_Append__SWIG_1(lua_State* L) {
79196 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::Append",1,"lldb::SBValueList *");
79197 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValueList::Append",2,"lldb::SBValueList const &");
79199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79204 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBValueList,0))){
79214 lua_error(L);
79219 static int _wrap_SBValueList_Append(lua_State* L) {
79225 argc = lua_gettop(L);
79230 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValueList, 0)) {
79239 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBValue, SWIG_POINTER_NO_NULL)) {
79246 return _wrap_SBValueList_Append__SWIG_0(L);
79254 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBValueList, 0)) {
79263 if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SBValueList, SWIG_POINTER_NO_NULL)) {
79270 return _wrap_SBValueList_Append__SWIG_1(L);
79275 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValueList_Append'\n"
79279 lua_error(L);return 0;
79283 static int _wrap_SBValueList_GetSize(lua_State* L) {
79290 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetSize",1,"lldb::SBValueList const *");
79292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79297 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
79302 lua_error(L);
79307 static int _wrap_SBValueList_GetValueAtIndex(lua_State* L) {
79315 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetValueAtIndex",1,"lldb::SBValueList const *");
79316 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValueList::GetValueAtIndex",2,"uint32_t");
79318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79322 arg2 = (uint32_t)lua_tointeger(L, 2);
79326 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
79332 lua_error(L);
79337 static int _wrap_SBValueList_GetFirstValueByName(lua_State* L) {
79345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetFirstValueByName",1,"lldb::SBValueList const *");
79346 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValueList::GetFirstValueByName",2,"char const *");
79348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79352 arg2 = (char *)lua_tostring(L, 2);
79356 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
79362 lua_error(L);
79367 static int _wrap_SBValueList_FindValueObjectByUID(lua_State* L) {
79375 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::FindValueObjectByUID",1,"lldb::SBValueList *");
79376 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValueList::FindValueObjectByUID",2,"lldb::user_id_t");
79378 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79382 arg2 = (lldb::user_id_t)lua_tointeger(L, 2);
79386 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++;
79392 lua_error(L);
79397 static int _wrap_SBValueList_GetError(lua_State* L) {
79404 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetError",1,"lldb::SBValueList *");
79406 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79413 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
79419 lua_error(L);
79424 static int _wrap_SBValueList___tostring(lua_State* L) {
79431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::__str__",1,"lldb::SBValueList *");
79433 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){
79438 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
79443 lua_error(L);
79452 static int _proxy__wrap_new_SBValueList(lua_State *L) {
79453 assert(lua_istable(L,1));
79454 lua_pushcfunction(L,_wrap_new_SBValueList);
79455 assert(!lua_isnil(L,-1));
79456 lua_replace(L,1); /* replace our table with real constructor */
79457 lua_call(L,lua_gettop(L)-1,1);
79505 static int _wrap_new_SBVariablesOptions__SWIG_0(lua_State* L) {
79512 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBVariablesOptions,1); SWIG_arg++;
79517 lua_error(L);
79522 static int _wrap_new_SBVariablesOptions__SWIG_1(lua_State* L) {
79529 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SBVariablesOptions",1,"lldb::SBVariablesOptions const &");
79531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79536 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBVariablesOptions,1); SWIG_arg++;
79541 lua_error(L);
79546 static int _wrap_new_SBVariablesOptions(lua_State* L) {
79552 argc = lua_gettop(L);
79554 return _wrap_new_SBVariablesOptions__SWIG_0(L);
79560 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBVariablesOptions, SWIG_POINTER_NO_NULL)) {
79567 return _wrap_new_SBVariablesOptions__SWIG_1(L);
79571 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBVariablesOptions'\n"
79575 lua_error(L);return 0;
79579 static int _wrap_SBVariablesOptions_IsValid(lua_State* L) {
79586 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::IsValid",1,"lldb::SBVariablesOptions const *");
79588 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79593 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79598 lua_error(L);
79603 static int _wrap_SBVariablesOptions_GetIncludeArguments(lua_State* L) {
79610 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeArguments",1,"lldb::SBVariablesOptions const *");
79612 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79617 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79622 lua_error(L);
79627 static int _wrap_SBVariablesOptions_SetIncludeArguments(lua_State* L) {
79634 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeArguments",1,"lldb::SBVariablesOptions *");
79635 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeArguments",2,"bool");
79637 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79641 arg2 = (lua_toboolean(L, 2)!=0);
79648 lua_error(L);
79653 static int _wrap_SBVariablesOptions_GetIncludeRecognizedArguments(lua_State* L) {
79661 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeRecognizedArguments",1,"lldb::SBVariablesOptions const *");
79662 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeRecognizedArguments",2,"lldb::SBTarget const &");
79664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79669 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){
79674 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79679 lua_error(L);
79684 static int _wrap_SBVariablesOptions_SetIncludeRecognizedArguments(lua_State* L) {
79691 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRecognizedArguments",1,"lldb::SBVariablesOptions *");
79692 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRecognizedArguments",2,"bool");
79694 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79698 arg2 = (lua_toboolean(L, 2)!=0);
79705 lua_error(L);
79710 static int _wrap_SBVariablesOptions_GetIncludeLocals(lua_State* L) {
79717 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeLocals",1,"lldb::SBVariablesOptions const *");
79719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79724 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79729 lua_error(L);
79734 static int _wrap_SBVariablesOptions_SetIncludeLocals(lua_State* L) {
79741 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeLocals",1,"lldb::SBVariablesOptions *");
79742 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeLocals",2,"bool");
79744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79748 arg2 = (lua_toboolean(L, 2)!=0);
79755 lua_error(L);
79760 static int _wrap_SBVariablesOptions_GetIncludeStatics(lua_State* L) {
79767 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeStatics",1,"lldb::SBVariablesOptions const *");
79769 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79774 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79779 lua_error(L);
79784 static int _wrap_SBVariablesOptions_SetIncludeStatics(lua_State* L) {
79791 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeStatics",1,"lldb::SBVariablesOptions *");
79792 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeStatics",2,"bool");
79794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79798 arg2 = (lua_toboolean(L, 2)!=0);
79805 lua_error(L);
79810 static int _wrap_SBVariablesOptions_GetInScopeOnly(lua_State* L) {
79817 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetInScopeOnly",1,"lldb::SBVariablesOptions const *");
79819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79824 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79829 lua_error(L);
79834 static int _wrap_SBVariablesOptions_SetInScopeOnly(lua_State* L) {
79841 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetInScopeOnly",1,"lldb::SBVariablesOptions *");
79842 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetInScopeOnly",2,"bool");
79844 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79848 arg2 = (lua_toboolean(L, 2)!=0);
79855 lua_error(L);
79860 static int _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues(lua_State* L) {
79867 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeRuntimeSupportValues",1,"lldb::SBVariablesOptions const *");
79869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79874 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
79879 lua_error(L);
79884 static int _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues(lua_State* L) {
79891 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRuntimeSupportValues",1,"lldb::SBVariablesOptions *");
79892 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRuntimeSupportValues",2,"bool");
79894 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79898 arg2 = (lua_toboolean(L, 2)!=0);
79905 lua_error(L);
79910 static int _wrap_SBVariablesOptions_GetUseDynamic(lua_State* L) {
79917 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetUseDynamic",1,"lldb::SBVariablesOptions const *");
79919 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79924 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
79929 lua_error(L);
79934 static int _wrap_SBVariablesOptions_SetUseDynamic(lua_State* L) {
79941 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetUseDynamic",1,"lldb::SBVariablesOptions *");
79942 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetUseDynamic",2,"lldb::DynamicValueType");
79944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){
79948 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2);
79955 lua_error(L);
79964 static int _proxy__wrap_new_SBVariablesOptions(lua_State *L) {
79965 assert(lua_istable(L,1));
79966 lua_pushcfunction(L,_wrap_new_SBVariablesOptions);
79967 assert(!lua_isnil(L,-1));
79968 lua_replace(L,1); /* replace our table with real constructor */
79969 lua_call(L,lua_gettop(L)-1,1);
80022 static int _wrap_new_SBWatchpoint__SWIG_0(lua_State* L) {
80029 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
80034 lua_error(L);
80039 static int _wrap_new_SBWatchpoint__SWIG_1(lua_State* L) {
80046 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SBWatchpoint",1,"lldb::SBWatchpoint const &");
80048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80053 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
80058 lua_error(L);
80063 static int _wrap_new_SBWatchpoint(lua_State* L) {
80069 argc = lua_gettop(L);
80071 return _wrap_new_SBWatchpoint__SWIG_0(L);
80077 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBWatchpoint, SWIG_POINTER_NO_NULL)) {
80084 return _wrap_new_SBWatchpoint__SWIG_1(L);
80088 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBWatchpoint'\n"
80092 lua_error(L);return 0;
80096 static int _wrap_SBWatchpoint___eq(lua_State* L) {
80104 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::operator ==",1,"lldb::SBWatchpoint const *");
80105 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::operator ==",2,"lldb::SBWatchpoint const &");
80107 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80117 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80122 lua_error(L);
80127 static int _wrap_SBWatchpoint_IsValid(lua_State* L) {
80134 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsValid",1,"lldb::SBWatchpoint const *");
80136 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80141 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80146 lua_error(L);
80151 static int _wrap_SBWatchpoint_GetError(lua_State* L) {
80158 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetError",1,"lldb::SBWatchpoint *");
80160 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80167 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++;
80173 lua_error(L);
80178 static int _wrap_SBWatchpoint_GetID(lua_State* L) {
80185 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetID",1,"lldb::SBWatchpoint *");
80187 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80192 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80197 lua_error(L);
80202 static int _wrap_SBWatchpoint_GetHardwareIndex(lua_State* L) {
80209 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetHardwareIndex",1,"lldb::SBWatchpoint *");
80211 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80216 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80221 lua_error(L);
80226 static int _wrap_SBWatchpoint_GetWatchAddress(lua_State* L) {
80233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchAddress",1,"lldb::SBWatchpoint *");
80235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80240 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80245 lua_error(L);
80250 static int _wrap_SBWatchpoint_GetWatchSize(lua_State* L) {
80257 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchSize",1,"lldb::SBWatchpoint *");
80259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80264 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80269 lua_error(L);
80274 static int _wrap_SBWatchpoint_SetEnabled(lua_State* L) {
80281 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SetEnabled",1,"lldb::SBWatchpoint *");
80282 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::SetEnabled",2,"bool");
80284 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80288 arg2 = (lua_toboolean(L, 2)!=0);
80295 lua_error(L);
80300 static int _wrap_SBWatchpoint_IsEnabled(lua_State* L) {
80307 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsEnabled",1,"lldb::SBWatchpoint *");
80309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80314 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80319 lua_error(L);
80324 static int _wrap_SBWatchpoint_GetHitCount(lua_State* L) {
80331 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetHitCount",1,"lldb::SBWatchpoint *");
80333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80338 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80343 lua_error(L);
80348 static int _wrap_SBWatchpoint_GetIgnoreCount(lua_State* L) {
80355 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetIgnoreCount",1,"lldb::SBWatchpoint *");
80357 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80362 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80367 lua_error(L);
80372 static int _wrap_SBWatchpoint_SetIgnoreCount(lua_State* L) {
80379 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SetIgnoreCount",1,"lldb::SBWatchpoint *");
80380 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::SetIgnoreCount",2,"uint32_t");
80382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80386 arg2 = (uint32_t)lua_tointeger(L, 2);
80393 lua_error(L);
80398 static int _wrap_SBWatchpoint_GetCondition(lua_State* L) {
80405 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetCondition",1,"lldb::SBWatchpoint *");
80407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80412 lua_pushstring(L,(const char *)result); SWIG_arg++;
80417 lua_error(L);
80422 static int _wrap_SBWatchpoint_SetCondition(lua_State* L) {
80429 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SetCondition",1,"lldb::SBWatchpoint *");
80430 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::SetCondition",2,"char const *");
80432 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80436 arg2 = (char *)lua_tostring(L, 2);
80443 lua_error(L);
80448 static int _wrap_SBWatchpoint_GetDescription(lua_State* L) {
80457 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetDescription",1,"lldb::SBWatchpoint *");
80458 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::GetDescription",2,"lldb::SBStream &");
80459 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBWatchpoint::GetDescription",3,"lldb::DescriptionLevel");
80461 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80466 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){
80470 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3);
80472 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80477 lua_error(L);
80482 static int _wrap_SBWatchpoint_Clear(lua_State* L) {
80488 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::Clear",1,"lldb::SBWatchpoint *");
80490 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80500 lua_error(L);
80505 static int _wrap_SBWatchpoint_EventIsWatchpointEvent(lua_State* L) {
80512 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::EventIsWatchpointEvent",1,"lldb::SBEvent const &");
80514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
80519 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80524 lua_error(L);
80529 static int _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent(lua_State* L) {
80536 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchpointEventTypeFromEvent",1,"lldb::SBEvent const &");
80538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
80543 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80548 lua_error(L);
80553 static int _wrap_SBWatchpoint_GetWatchpointFromEvent(lua_State* L) {
80560 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchpointFromEvent",1,"lldb::SBEvent const &");
80562 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){
80569 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++;
80575 lua_error(L);
80580 static int _wrap_SBWatchpoint_GetType(lua_State* L) {
80587 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetType",1,"lldb::SBWatchpoint *");
80589 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80596 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++;
80602 lua_error(L);
80607 static int _wrap_SBWatchpoint_GetWatchValueKind(lua_State* L) {
80614 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchValueKind",1,"lldb::SBWatchpoint *");
80616 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80621 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80626 lua_error(L);
80631 static int _wrap_SBWatchpoint_GetWatchSpec(lua_State* L) {
80638 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchSpec",1,"lldb::SBWatchpoint *");
80640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80645 lua_pushstring(L,(const char *)result); SWIG_arg++;
80650 lua_error(L);
80655 static int _wrap_SBWatchpoint_IsWatchingReads(lua_State* L) {
80662 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsWatchingReads",1,"lldb::SBWatchpoint *");
80664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80669 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80674 lua_error(L);
80679 static int _wrap_SBWatchpoint_IsWatchingWrites(lua_State* L) {
80686 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsWatchingWrites",1,"lldb::SBWatchpoint *");
80688 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80693 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80698 lua_error(L);
80703 static int _wrap_SBWatchpoint___tostring(lua_State* L) {
80710 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::__repr__",1,"lldb::SBWatchpoint *");
80712 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){
80717 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++;
80722 lua_error(L);
80731 static int _proxy__wrap_new_SBWatchpoint(lua_State *L) {
80732 assert(lua_istable(L,1));
80733 lua_pushcfunction(L,_wrap_new_SBWatchpoint);
80734 assert(!lua_isnil(L,-1));
80735 lua_replace(L,1); /* replace our table with real constructor */
80736 lua_call(L,lua_gettop(L)-1,1);
80801 static int _wrap_new_SBWatchpointOptions__SWIG_0(lua_State* L) {
80808 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpointOptions,1); SWIG_arg++;
80813 lua_error(L);
80818 static int _wrap_new_SBWatchpointOptions__SWIG_1(lua_State* L) {
80825 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::SBWatchpointOptions",1,"lldb::SBWatchpointOptions const &");
80827 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){
80832 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpointOptions,1); SWIG_arg++;
80837 lua_error(L);
80842 static int _wrap_new_SBWatchpointOptions(lua_State* L) {
80848 argc = lua_gettop(L);
80850 return _wrap_new_SBWatchpointOptions__SWIG_0(L);
80856 if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SBWatchpointOptions, SWIG_POINTER_NO_NULL)) {
80863 return _wrap_new_SBWatchpointOptions__SWIG_1(L);
80867 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBWatchpointOptions'\n"
80871 lua_error(L);return 0;
80875 static int _wrap_SBWatchpointOptions_SetWatchpointTypeRead(lua_State* L) {
80882 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeRead",1,"lldb::SBWatchpointOptions *");
80883 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeRead",2,"bool");
80885 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){
80889 arg2 = (lua_toboolean(L, 2)!=0);
80896 lua_error(L);
80901 static int _wrap_SBWatchpointOptions_GetWatchpointTypeRead(lua_State* L) {
80908 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::GetWatchpointTypeRead",1,"lldb::SBWatchpointOptions const *");
80910 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){
80915 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++;
80920 lua_error(L);
80925 static int _wrap_SBWatchpointOptions_SetWatchpointTypeWrite(lua_State* L) {
80932 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeWrite",1,"lldb::SBWatchpointOptions *");
80933 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeWrite",2,"lldb::WatchpointWriteType");
80935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){
80939 arg2 = (lldb::WatchpointWriteType)lua_tointeger(L, 2);
80946 lua_error(L);
80951 static int _wrap_SBWatchpointOptions_GetWatchpointTypeWrite(lua_State* L) {
80958 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::GetWatchpointTypeWrite",1,"lldb::SBWatchpointOptions const *");
80960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){
80965 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++;
80970 lua_error(L);
80979 static int _proxy__wrap_new_SBWatchpointOptions(lua_State *L) {
80980 assert(lua_istable(L,1));
80981 lua_pushcfunction(L,_wrap_new_SBWatchpointOptions);
80982 assert(!lua_isnil(L,-1));
80983 lua_replace(L,1); /* replace our table with real constructor */
80984 lua_call(L,lua_gettop(L)-1,1);
83417 void SWIG_init_user(lua_State* L );
83427 LUALIB_API int SWIG_init(lua_State* L)
83429 SWIGEXPORT int SWIG_init(lua_State* L) /* default Lua action */
83436 lua_pushglobaltable (L);
83438 SWIG_InitializeModule((void*)L);
83444 SWIG_Lua_add_function(L,"swig_type",SWIG_Lua_type);
83445 SWIG_Lua_add_function(L,"swig_equals",SWIG_Lua_class_equal);
83452 SWIG_Lua_init_base_class(L,(swig_lua_class*)(swig_types[i]->clientdata));
83461 SWIG_Lua_namespace_register(L,&swig_SwigModule, globalRegister);
83467 SWIG_Lua_elua_class_register_instance(L,(swig_lua_class*)(swig_types[i]->clientdata));
83473 lua_newtable(L);
83474 SWIG_Lua_elua_emulate_register(L,swig_SwigModule.ns_methods);
83475 SWIG_Lua_elua_emulate_register_clear(L);
83477 lua_pushstring(L,swig_SwigModule.name);
83478 lua_pushvalue(L,-2);
83479 lua_rawset(L,-4);
83487 SWIG_init_user(L);
83506 void SWIG_init_user(lua_State* L)
83509 SWIG_Lua_dostring(L,SWIG_LUACODE);