Lines Matching refs:L

843 #define lua_pushrotable(L,p)\  argument
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) argument
942 # define lua_absindex(L,i) ((i)>0 || (i) <= LUA_REGISTRYINDEX ? (i) : lua_gettop(L) + (i) + 1) argument
947 #define lua_rawsetp(L,index,ptr)\ argument
948 lua_pushlightuserdata(L,(void*)(ptr));\
949 lua_insert(L,-2);\
950 lua_rawset(L,index);
952 #define lua_rawgetp(L,index,ptr)\ argument
953 lua_pushlightuserdata(L,(void*)(ptr));\
954 lua_rawget(L,index);
966 SWIG_Lua_pusherrstring (lua_State *L, const char *str) in SWIG_Lua_pusherrstring() argument
968 luaL_where (L, 1); in SWIG_Lua_pusherrstring()
969 lua_pushstring (L, str); in SWIG_Lua_pusherrstring()
970 lua_concat (L, 2); in SWIG_Lua_pusherrstring()
977 SWIG_Lua_pushferrstring (lua_State *L, const char *fmt, ...) in SWIG_Lua_pushferrstring() argument
981 luaL_where(L, 1); in SWIG_Lua_pushferrstring()
982 lua_pushvfstring(L, fmt, argp); in SWIG_Lua_pushferrstring()
984 lua_concat(L, 2); in SWIG_Lua_pushferrstring()
1076 #define SWIG_NewPointerObj(L, ptr, type, owner) SWIG_Lua_NewPointerObj(L, (void *)ptr, type, … argument
1077 #define SWIG_ConvertPtr(L,idx, ptr, type, flags) SWIG_Lua_ConvertPtr(L,idx,ptr,type,flags) argument
1078 #define SWIG_MustGetPtr(L,idx, type,flags, argnum,fnname) SWIG_Lua_MustGetPtr(L,idx, type,flags, a… argument
1080 #define SWIG_ConvertMember(L, idx, ptr, sz, ty) SWIG_Lua_ConvertPacked(L, idx, ptr, sz, ty) argument
1081 #define SWIG_NewMemberObj(L, ptr, sz, type) SWIG_Lua_NewPackedObj(L, ptr, sz, type) argument
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) \ argument
1108 (lua_pushstring(L, n), lua_rawget(L,-2))
1110 #define SWIG_Lua_add_function(L,n,f) \ argument
1111 (lua_pushstring(L, n), \
1112 lua_pushcfunction(L, f), \
1113 lua_rawset(L,-3))
1115 #define SWIG_Lua_add_boolean(L,n,b) \ argument
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)) argument
1131 SWIG_Lua_GetModule(lua_State *L) { in SWIG_Lua_GetModule() argument
1133 lua_pushstring(L,"swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME); in SWIG_Lua_GetModule()
1134 lua_rawget(L,LUA_REGISTRYINDEX); in SWIG_Lua_GetModule()
1135 if (lua_islightuserdata(L,-1)) in SWIG_Lua_GetModule()
1136 ret=(swig_module_info*)lua_touserdata(L,-1); in SWIG_Lua_GetModule()
1137 lua_pop(L,1); /* tidy */ in SWIG_Lua_GetModule()
1142 SWIG_Lua_SetModule(lua_State *L, swig_module_info *module) { in SWIG_Lua_SetModule() argument
1144 lua_pushstring(L,"swig_runtime_data_type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME); in SWIG_Lua_SetModule()
1145 lua_pushlightuserdata(L,(void*)module); in SWIG_Lua_SetModule()
1146 lua_rawset(L,LUA_REGISTRYINDEX); in SWIG_Lua_SetModule()
1156 SWIGINTERN int SWIG_Lua_set_immutable(lua_State *L) in SWIG_Lua_set_immutable() argument
1160 lua_pop(L,1); /* remove it */ in SWIG_Lua_set_immutable()
1161 luaL_error(L,"This variable is immutable"); in SWIG_Lua_set_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) in SWIG_Lua_elua_emulate_register() argument
1176 assert(lua_istable(L,-1)); in SWIG_Lua_elua_emulate_register()
1177 target_table = lua_gettop(L); in SWIG_Lua_elua_emulate_register()
1179 lua_rawgetp(L, LUA_REGISTRYINDEX, &swig_lua_elua_emulate_unique_key); in SWIG_Lua_elua_emulate_register()
1180 if(lua_isnil(L,-1)) { in SWIG_Lua_elua_emulate_register()
1181 lua_pop(L,1); in SWIG_Lua_elua_emulate_register()
1182 lua_newtable(L); in SWIG_Lua_elua_emulate_register()
1183 lua_pushvalue(L,-1); in SWIG_Lua_elua_emulate_register()
1184 lua_rawsetp(L,LUA_REGISTRYINDEX,(void*)(&swig_lua_elua_emulate_unique_key)); in SWIG_Lua_elua_emulate_register()
1186 parsed_tables_array = lua_gettop(L); in SWIG_Lua_elua_emulate_register()
1187 lua_pushvalue(L,target_table); in SWIG_Lua_elua_emulate_register()
1188 lua_rawsetp(L, parsed_tables_array, table); in SWIG_Lua_elua_emulate_register()
1190 const int SWIGUNUSED pairs_start = lua_gettop(L); in SWIG_Lua_elua_emulate_register()
1197 lua_pushstring(L,entry->key.key.strkey); in SWIG_Lua_elua_emulate_register()
1202 lua_pushnumber(L,entry->key.key.numkey); in SWIG_Lua_elua_emulate_register()
1205 lua_pushnil(L); in SWIG_Lua_elua_emulate_register()
1212 lua_pushstring(L,entry->value.value.string); in SWIG_Lua_elua_emulate_register()
1215 lua_pushnumber(L,entry->value.value.number); in SWIG_Lua_elua_emulate_register()
1218 lua_pushcfunction(L,entry->value.value.function); in SWIG_Lua_elua_emulate_register()
1221 lua_rawgetp(L,parsed_tables_array, entry->value.value.table); in SWIG_Lua_elua_emulate_register()
1222 table_parsed = !lua_isnil(L,-1); in SWIG_Lua_elua_emulate_register()
1224 lua_pop(L,1); /*remove nil */ in SWIG_Lua_elua_emulate_register()
1225 lua_newtable(L); in SWIG_Lua_elua_emulate_register()
1226 SWIG_Lua_elua_emulate_register(L,entry->value.value.table); in SWIG_Lua_elua_emulate_register()
1229 assert(lua_istable(L,-1)); in SWIG_Lua_elua_emulate_register()
1230 lua_pushvalue(L,-1); in SWIG_Lua_elua_emulate_register()
1231 lua_setmetatable(L,target_table); in SWIG_Lua_elua_emulate_register()
1237 SWIG_NewMemberObj(L,entry->value.value.userdata.pvalue, in SWIG_Lua_elua_emulate_register()
1241 SWIG_NewPointerObj(L,entry->value.value.userdata.pvalue, in SWIG_Lua_elua_emulate_register()
1245 lua_pushnil(L); in SWIG_Lua_elua_emulate_register()
1250 assert(lua_gettop(L) == pairs_start + 2); in SWIG_Lua_elua_emulate_register()
1251 lua_rawset(L,target_table); in SWIG_Lua_elua_emulate_register()
1253 lua_pop(L,1); /* Removing parsed tables storage */ in SWIG_Lua_elua_emulate_register()
1254 assert(lua_gettop(L) == target_table); in SWIG_Lua_elua_emulate_register()
1257 SWIGINTERN void SWIG_Lua_elua_emulate_register_clear(lua_State *L) in SWIG_Lua_elua_emulate_register_clear() argument
1259 lua_pushnil(L); in SWIG_Lua_elua_emulate_register_clear()
1260 lua_rawsetp(L, LUA_REGISTRYINDEX, &swig_lua_elua_emulate_unique_key); in SWIG_Lua_elua_emulate_register_clear()
1263 SWIGINTERN void SWIG_Lua_get_class_registry(lua_State *L);
1265 SWIGINTERN int SWIG_Lua_emulate_elua_getmetatable(lua_State *L) in SWIG_Lua_emulate_elua_getmetatable() argument
1268 SWIG_Lua_get_class_registry(L); in SWIG_Lua_emulate_elua_getmetatable()
1269 lua_getfield(L,-1,"lua_getmetatable"); in SWIG_Lua_emulate_elua_getmetatable()
1270 lua_remove(L,-2); /* remove the registry*/ in SWIG_Lua_emulate_elua_getmetatable()
1271 assert(!lua_isnil(L,-1)); in SWIG_Lua_emulate_elua_getmetatable()
1272 lua_pushvalue(L,1); in SWIG_Lua_emulate_elua_getmetatable()
1273 assert(lua_gettop(L) == 3); /* object | function | object again */ in SWIG_Lua_emulate_elua_getmetatable()
1274 lua_call(L,1,1); in SWIG_Lua_emulate_elua_getmetatable()
1275 if(!lua_isnil(L,-1)) /*There is an ordinary metatable */ in SWIG_Lua_emulate_elua_getmetatable()
1278 assert(lua_gettop(L) == 2); in SWIG_Lua_emulate_elua_getmetatable()
1279 if(lua_istable(L,-2)) { in SWIG_Lua_emulate_elua_getmetatable()
1280 lua_pop(L,1); /*remove the nil*/ in SWIG_Lua_emulate_elua_getmetatable()
1281 lua_getfield(L,-1, SWIG_LUA_ELUA_EMUL_METATABLE_KEY); in SWIG_Lua_emulate_elua_getmetatable()
1283 assert(lua_gettop(L) == 2); in SWIG_Lua_emulate_elua_getmetatable()
1287 lua_error(L); in SWIG_Lua_emulate_elua_getmetatable()
1291 SWIGINTERN void SWIG_Lua_emulate_elua_swap_getmetatable(lua_State *L) in SWIG_Lua_emulate_elua_swap_getmetatable() argument
1293 SWIG_Lua_get_class_registry(L); in SWIG_Lua_emulate_elua_swap_getmetatable()
1294 lua_pushglobaltable(L); in SWIG_Lua_emulate_elua_swap_getmetatable()
1295 lua_pushstring(L,"lua_getmetatable"); in SWIG_Lua_emulate_elua_swap_getmetatable()
1296 lua_getfield(L,-2,"getmetatable"); in SWIG_Lua_emulate_elua_swap_getmetatable()
1297 assert(!lua_isnil(L,-1)); in SWIG_Lua_emulate_elua_swap_getmetatable()
1298 lua_rawset(L,-4); in SWIG_Lua_emulate_elua_swap_getmetatable()
1299 lua_pushstring(L, "getmetatable"); in SWIG_Lua_emulate_elua_swap_getmetatable()
1300 lua_pushcfunction(L, SWIG_Lua_emulate_elua_getmetatable); in SWIG_Lua_emulate_elua_swap_getmetatable()
1301 lua_rawset(L,-3); in SWIG_Lua_emulate_elua_swap_getmetatable()
1302 lua_pop(L,2); in SWIG_Lua_emulate_elua_swap_getmetatable()
1312 SWIGINTERN int SWIG_Lua_namespace_get(lua_State *L) in SWIG_Lua_namespace_get() argument
1318 assert(lua_istable(L,-2)); /* just in case */ in SWIG_Lua_namespace_get()
1319 lua_getmetatable(L,-2); in SWIG_Lua_namespace_get()
1320 assert(lua_istable(L,-1)); in SWIG_Lua_namespace_get()
1321 SWIG_Lua_get_table(L,".get"); /* find the .get table */ in SWIG_Lua_namespace_get()
1322 assert(lua_istable(L,-1)); in SWIG_Lua_namespace_get()
1324 lua_pushvalue(L,2); /* key */ in SWIG_Lua_namespace_get()
1325 lua_rawget(L,-2); in SWIG_Lua_namespace_get()
1326 lua_remove(L,-2); /* stack tidy, remove .get table */ in SWIG_Lua_namespace_get()
1327 if (lua_iscfunction(L,-1)) in SWIG_Lua_namespace_get()
1329 lua_call(L,0,1); /* 1 value in (userdata),1 out (result) */ in SWIG_Lua_namespace_get()
1330 lua_remove(L,-2); /* stack tidy, remove metatable */ in SWIG_Lua_namespace_get()
1333 lua_pop(L,1); /* remove whatever was there */ in SWIG_Lua_namespace_get()
1335 SWIG_Lua_get_table(L,".fn"); /* find the .get table */ in SWIG_Lua_namespace_get()
1336 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_namespace_get()
1337 lua_pushvalue(L,2); /* key */ in SWIG_Lua_namespace_get()
1338 lua_rawget(L,-2); /* look for the fn */ in SWIG_Lua_namespace_get()
1339 lua_remove(L,-2); /* stack tidy, remove .fn table */ in SWIG_Lua_namespace_get()
1340 if (lua_isfunction(L,-1)) /* note: whether it's a C function or lua function */ in SWIG_Lua_namespace_get()
1342 lua_remove(L,-2); /* stack tidy, remove metatable */ in SWIG_Lua_namespace_get()
1345 lua_pop(L,1); /* remove whatever was there */ in SWIG_Lua_namespace_get()
1349 SWIGINTERN int SWIG_Lua_namespace_set(lua_State *L) in SWIG_Lua_namespace_set() argument
1357 assert(lua_istable(L,1)); in SWIG_Lua_namespace_set()
1358 lua_getmetatable(L,1); /* get the meta table */ in SWIG_Lua_namespace_set()
1359 assert(lua_istable(L,-1)); in SWIG_Lua_namespace_set()
1361 SWIG_Lua_get_table(L,".set"); /* find the .set table */ in SWIG_Lua_namespace_set()
1362 if (lua_istable(L,-1)) in SWIG_Lua_namespace_set()
1365 lua_pushvalue(L,2); /* key */ in SWIG_Lua_namespace_set()
1366 lua_rawget(L,-2); in SWIG_Lua_namespace_set()
1367 if (lua_iscfunction(L,-1)) in SWIG_Lua_namespace_set()
1369 lua_pushvalue(L,3); /* value */ in SWIG_Lua_namespace_set()
1370 lua_call(L,1,0); in SWIG_Lua_namespace_set()
1373 lua_pop(L,1); /* remove the value */ in SWIG_Lua_namespace_set()
1375 lua_pop(L,1); /* remove the value .set table */ in SWIG_Lua_namespace_set()
1376 lua_pop(L,1); /* remote metatable */ in SWIG_Lua_namespace_set()
1377 lua_rawset(L,-3); in SWIG_Lua_namespace_set()
1382 SWIGINTERN void SWIG_Lua_InstallConstants(lua_State *L, swig_lua_const_info constants[]); /* forwar…
1383 SWIGINTERN void SWIG_Lua_add_variable(lua_State *L,const char *name,lua_CFunction getFn,lua_CFunct…
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) in SWIG_Lua_add_namespace_details() argument
1391 assert(lua_istable(L,-1)); in SWIG_Lua_add_namespace_details()
1392 SWIG_Lua_InstallConstants(L, ns->ns_constants); in SWIG_Lua_add_namespace_details()
1396 SWIG_Lua_add_function(L,ns->ns_methods[i].name,ns->ns_methods[i].func); in SWIG_Lua_add_namespace_details()
1398 lua_getmetatable(L,-1); in SWIG_Lua_add_namespace_details()
1402 …SWIG_Lua_add_variable(L,ns->ns_attributes[i].name,ns->ns_attributes[i].getmethod,ns->ns_attributes… in SWIG_Lua_add_namespace_details()
1406 lua_pop(L,1); in SWIG_Lua_add_namespace_details()
1411 SWIGINTERN void SWIG_Lua_add_namespace_classes(lua_State *L, swig_lua_namespace *ns) in SWIG_Lua_add_namespace_classes() argument
1416 assert(lua_istable(L,-1)); in SWIG_Lua_add_namespace_classes()
1422 SWIG_Lua_class_register(L, *classes); in SWIG_Lua_add_namespace_classes()
1433 SWIGINTERN void SWIG_Lua_namespace_register(lua_State *L, swig_lua_namespace *ns, int reg) in SWIG_Lua_namespace_register() argument
1437 const int SWIGUNUSED begin = lua_gettop(L); in SWIG_Lua_namespace_register()
1438 …assert(lua_istable(L,-1)); /* just in case. This is supposed to be module table or parent namespac… in SWIG_Lua_namespace_register()
1439 lua_checkstack(L,5); in SWIG_Lua_namespace_register()
1440 lua_newtable(L); /* namespace itself */ in SWIG_Lua_namespace_register()
1441 lua_newtable(L); /* metatable for namespace */ in SWIG_Lua_namespace_register()
1444 lua_pushstring(L,".get"); in SWIG_Lua_namespace_register()
1445 lua_newtable(L); in SWIG_Lua_namespace_register()
1446 lua_rawset(L,-3); in SWIG_Lua_namespace_register()
1448 lua_pushstring(L,".set"); in SWIG_Lua_namespace_register()
1449 lua_newtable(L); in SWIG_Lua_namespace_register()
1450 lua_rawset(L,-3); in SWIG_Lua_namespace_register()
1452 lua_pushstring(L,".fn"); in SWIG_Lua_namespace_register()
1453 lua_newtable(L); in SWIG_Lua_namespace_register()
1454 lua_rawset(L,-3); in SWIG_Lua_namespace_register()
1457 SWIG_Lua_add_function(L,"__index",SWIG_Lua_namespace_get); in SWIG_Lua_namespace_register()
1458 SWIG_Lua_add_function(L,"__newindex",SWIG_Lua_namespace_set); in SWIG_Lua_namespace_register()
1460 lua_setmetatable(L,-2); /* set metatable */ in SWIG_Lua_namespace_register()
1463 SWIG_Lua_add_namespace_details(L,ns); in SWIG_Lua_namespace_register()
1465 SWIG_Lua_add_namespace_classes(L,ns); in SWIG_Lua_namespace_register()
1470 SWIG_Lua_namespace_register(L, *sub_namespace, 1); in SWIG_Lua_namespace_register()
1471 lua_pop(L,1); /* removing sub-namespace table */ in SWIG_Lua_namespace_register()
1477 lua_pushstring(L,ns->name); in SWIG_Lua_namespace_register()
1478 lua_pushvalue(L,-2); in SWIG_Lua_namespace_register()
1479 lua_rawset(L,-4); /* add namespace to module table */ in SWIG_Lua_namespace_register()
1481 assert(lua_gettop(L) == begin+1); in SWIG_Lua_namespace_register()
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, in SWIG_Lua_iterate_bases() argument
1498 int last_arg = lua_gettop(L);/* position of last argument */ in SWIG_Lua_iterate_bases()
1504 lua_getmetatable(L,first_arg); in SWIG_Lua_iterate_bases()
1508 SWIG_Lua_get_table(L,".bases"); in SWIG_Lua_iterate_bases()
1509 assert(lua_istable(L,-1)); in SWIG_Lua_iterate_bases()
1510 bases_count = lua_rawlen(L,-1); in SWIG_Lua_iterate_bases()
1511 bases_table = lua_gettop(L); in SWIG_Lua_iterate_bases()
1516 swig_module_info *module=SWIG_GetModule(L); in SWIG_Lua_iterate_bases()
1532 int subcall_first_arg = lua_gettop(L) + 1;/* Here a copy of first_arg and arguments begin */ in SWIG_Lua_iterate_bases()
1536 lua_pushvalue(L,j); in SWIG_Lua_iterate_bases()
1537 subcall_last_arg = lua_gettop(L); in SWIG_Lua_iterate_bases()
1543 lua_rawgeti(L,bases_table,i+1); in SWIG_Lua_iterate_bases()
1545 if(lua_isnil(L,-1)) { in SWIG_Lua_iterate_bases()
1547 lua_pop(L,1); in SWIG_Lua_iterate_bases()
1557 SWIG_Lua_get_class_metatable(L,base_class->fqname); in SWIG_Lua_iterate_bases()
1565 assert(lua_isuserdata(L, subcall_first_arg)); in SWIG_Lua_iterate_bases()
1566 assert(lua_istable(L,-1)); in SWIG_Lua_iterate_bases()
1567 lua_setmetatable(L,subcall_first_arg); /* Set new metatable */ in SWIG_Lua_iterate_bases()
1568 assert(lua_gettop(L) == subcall_last_arg); in SWIG_Lua_iterate_bases()
1569 result = func(L, base_swig_type,subcall_first_arg, ret); /* Forward call */ in SWIG_Lua_iterate_bases()
1575 lua_pushvalue(L,original_metatable); in SWIG_Lua_iterate_bases()
1576 lua_setmetatable(L,first_arg); in SWIG_Lua_iterate_bases()
1580 lua_remove(L,last_arg+1); in SWIG_Lua_iterate_bases()
1583 lua_pop(L, lua_gettop(L) - last_arg); in SWIG_Lua_iterate_bases()
1585 if(ret) assert(lua_gettop(L) == last_arg + *ret); in SWIG_Lua_iterate_bases()
1593 SWIGINTERN int SWIG_Lua_class_do_get_item(lua_State *L, swig_type_info *type, int SWIGUNUSED first… in SWIG_Lua_class_do_get_item() argument
1600 int substack_start = lua_gettop(L)-2; in SWIG_Lua_class_do_get_item()
1603 lua_checkstack(L,5); in SWIG_Lua_class_do_get_item()
1604 assert(lua_isuserdata(L,-2)); /* just in case */ in SWIG_Lua_class_do_get_item()
1605 lua_getmetatable(L,-2); /* get the meta table */ in SWIG_Lua_class_do_get_item()
1606 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_do_get_item()
1609 SWIG_Lua_get_table(L,"__getitem"); /* find the __getitem fn */ in SWIG_Lua_class_do_get_item()
1610 if (lua_iscfunction(L,-1)) /* if it's there */ in SWIG_Lua_class_do_get_item()
1612 lua_pushvalue(L,substack_start+1); /* the userdata */ in SWIG_Lua_class_do_get_item()
1613 lua_pushvalue(L,substack_start+2); /* the parameter */ in SWIG_Lua_class_do_get_item()
1614 lua_call(L,2,1); /* 2 value in (userdata),1 out (result) */ in SWIG_Lua_class_do_get_item()
1615 lua_remove(L,-2); /* stack tidy, remove metatable */ in SWIG_Lua_class_do_get_item()
1619 lua_pop(L,1); in SWIG_Lua_class_do_get_item()
1621 lua_pop(L,1); in SWIG_Lua_class_do_get_item()
1623 …bases_search_result = SWIG_Lua_iterate_bases(L,type,substack_start+1,SWIG_Lua_class_do_get_item,re… in SWIG_Lua_class_do_get_item()
1632 SWIGINTERN int SWIG_Lua_class_do_get(lua_State *L, swig_type_info *type, int SWIGUNUSED first_arg,… in SWIG_Lua_class_do_get() argument
1639 int substack_start = lua_gettop(L)-2; in SWIG_Lua_class_do_get()
1642 lua_checkstack(L,5); in SWIG_Lua_class_do_get()
1643 assert(lua_isuserdata(L,-2)); /* just in case */ in SWIG_Lua_class_do_get()
1644 lua_getmetatable(L,-2); /* get the meta table */ in SWIG_Lua_class_do_get()
1645 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_do_get()
1646 SWIG_Lua_get_table(L,".get"); /* find the .get table */ in SWIG_Lua_class_do_get()
1647 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_do_get()
1649 lua_pushvalue(L,substack_start+2); /* key */ in SWIG_Lua_class_do_get()
1650 lua_rawget(L,-2); in SWIG_Lua_class_do_get()
1651 lua_remove(L,-2); /* stack tidy, remove .get table */ in SWIG_Lua_class_do_get()
1652 if (lua_iscfunction(L,-1)) in SWIG_Lua_class_do_get()
1654 lua_pushvalue(L,substack_start+1); /* the userdata */ in SWIG_Lua_class_do_get()
1655 lua_call(L,1,1); /* 1 value in (userdata),1 out (result) */ in SWIG_Lua_class_do_get()
1656 lua_remove(L,-2); /* stack tidy, remove metatable */ in SWIG_Lua_class_do_get()
1661 lua_pop(L,1); /* remove whatever was there */ in SWIG_Lua_class_do_get()
1663 SWIG_Lua_get_table(L,".fn"); /* find the .fn table */ in SWIG_Lua_class_do_get()
1664 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_do_get()
1665 lua_pushvalue(L,substack_start+2); /* key */ in SWIG_Lua_class_do_get()
1666 lua_rawget(L,-2); /* look for the fn */ in SWIG_Lua_class_do_get()
1667 lua_remove(L,-2); /* stack tidy, remove .fn table */ in SWIG_Lua_class_do_get()
1668 if (lua_isfunction(L,-1)) /* note: if it's a C function or lua function */ in SWIG_Lua_class_do_get()
1670 lua_remove(L,-2); /* stack tidy, remove metatable */ in SWIG_Lua_class_do_get()
1675 lua_pop(L,1); /* remove whatever was there */ in SWIG_Lua_class_do_get()
1677 lua_pop(L,1); in SWIG_Lua_class_do_get()
1679 bases_search_result = SWIG_Lua_iterate_bases(L,type,substack_start+1,SWIG_Lua_class_do_get,ret); in SWIG_Lua_class_do_get()
1685 SWIGINTERN int SWIG_Lua_class_get(lua_State *L) in SWIG_Lua_class_get() argument
1695 assert(lua_isuserdata(L,1)); in SWIG_Lua_class_get()
1696 usr=(swig_lua_userdata*)lua_touserdata(L,1); /* get data */ in SWIG_Lua_class_get()
1698 result = SWIG_Lua_class_do_get(L,type,1,&ret); in SWIG_Lua_class_get()
1702 result = SWIG_Lua_class_do_get_item(L,type,1,&ret); in SWIG_Lua_class_get()
1712 SWIGINTERN int SWIG_Lua_class_do_set(lua_State *L, swig_type_info *type, int first_arg, int *ret) in SWIG_Lua_class_do_set() argument
1721 int substack_start = lua_gettop(L) - 3; in SWIG_Lua_class_do_set()
1722 lua_checkstack(L,5); in SWIG_Lua_class_do_set()
1723 assert(lua_isuserdata(L,substack_start+1)); /* just in case */ in SWIG_Lua_class_do_set()
1724 lua_getmetatable(L,substack_start+1); /* get the meta table */ in SWIG_Lua_class_do_set()
1725 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_do_set()
1729 SWIG_Lua_get_table(L,".set"); /* find the .set table */ in SWIG_Lua_class_do_set()
1730 if (lua_istable(L,-1)) in SWIG_Lua_class_do_set()
1733 lua_pushvalue(L,substack_start+2); /* key */ in SWIG_Lua_class_do_set()
1734 lua_rawget(L,-2); in SWIG_Lua_class_do_set()
1735 lua_remove(L,-2); /* tidy stack, remove .set table */ in SWIG_Lua_class_do_set()
1736 if (lua_iscfunction(L,-1)) in SWIG_Lua_class_do_set()
1738 lua_pushvalue(L,substack_start+1); /* userdata */ in SWIG_Lua_class_do_set()
1739 lua_pushvalue(L,substack_start+3); /* value */ in SWIG_Lua_class_do_set()
1740 lua_call(L,2,0); in SWIG_Lua_class_do_set()
1741 lua_remove(L,substack_start+4); /*remove metatable*/ in SWIG_Lua_class_do_set()
1744 lua_pop(L,1); /* remove the value */ in SWIG_Lua_class_do_set()
1746 lua_pop(L,1); /* remove the answer for .set table request*/ in SWIG_Lua_class_do_set()
1750 SWIG_Lua_get_table(L,"__setitem"); /* find the fn */ in SWIG_Lua_class_do_set()
1751 if (lua_iscfunction(L,-1)) /* if it's there */ in SWIG_Lua_class_do_set()
1753 lua_pushvalue(L,substack_start+1); /* the userdata */ in SWIG_Lua_class_do_set()
1754 lua_pushvalue(L,substack_start+2); /* the parameter */ in SWIG_Lua_class_do_set()
1755 lua_pushvalue(L,substack_start+3); /* the value */ in SWIG_Lua_class_do_set()
1756 lua_call(L,3,0); /* 3 values in ,0 out */ in SWIG_Lua_class_do_set()
1757 lua_remove(L,-2); /* stack tidy, remove metatable */ in SWIG_Lua_class_do_set()
1760 lua_pop(L,1); /* remove value */ in SWIG_Lua_class_do_set()
1762 lua_pop(L,1); /* remove metatable */ in SWIG_Lua_class_do_set()
1764 bases_search_result = SWIG_Lua_iterate_bases(L,type,first_arg,SWIG_Lua_class_do_set,ret); in SWIG_Lua_class_do_set()
1767 assert(lua_gettop(L) == substack_start + 3); in SWIG_Lua_class_do_set()
1774 SWIGINTERN int SWIG_Lua_class_set(lua_State *L) in SWIG_Lua_class_set() argument
1785 assert(lua_isuserdata(L,1)); in SWIG_Lua_class_set()
1786 usr=(swig_lua_userdata*)lua_touserdata(L,1); /* get data */ in SWIG_Lua_class_set()
1788 result = SWIG_Lua_class_do_set(L,type,1,&ret); in SWIG_Lua_class_set()
1790 …SWIG_Lua_pushferrstring(L,"Assignment not possible. No setter/member with this name. For custom as… in SWIG_Lua_class_set()
1791 lua_error(L); in SWIG_Lua_class_set()
1799 SWIGINTERN int SWIG_Lua_class_destruct(lua_State *L) in SWIG_Lua_class_destruct() argument
1805 assert(lua_isuserdata(L,-1)); /* just in case */ in SWIG_Lua_class_destruct()
1806 usr=(swig_lua_userdata*)lua_touserdata(L,-1); /* get it */ in SWIG_Lua_class_destruct()
1820 SWIGINTERN int SWIG_Lua_class_tostring(lua_State *L) in SWIG_Lua_class_tostring() argument
1825 assert(lua_isuserdata(L,1)); /* just in case */ in SWIG_Lua_class_tostring()
1826 userData = (swig_lua_userdata*)lua_touserdata(L,1); /* get the userdata address */ in SWIG_Lua_class_tostring()
1828 lua_pushfstring(L, "<userdata of type '%s' at %p>", userData->type->str, userData->ptr); in SWIG_Lua_class_tostring()
1833 SWIGINTERN int SWIG_Lua_class_disown(lua_State *L) in SWIG_Lua_class_disown() argument
1838 assert(lua_isuserdata(L,-1)); /* just in case */ in SWIG_Lua_class_disown()
1839 usr=(swig_lua_userdata*)lua_touserdata(L,-1); /* get it */ in SWIG_Lua_class_disown()
1848 SWIGRUNTIME int SWIG_Lua_class_equal(lua_State *L) in SWIG_Lua_class_equal() argument
1852 if (!lua_isuserdata(L,1) || !lua_isuserdata(L,2)) /* just in case */ in SWIG_Lua_class_equal()
1854 usr1=(swig_lua_userdata*)lua_touserdata(L,1); /* get data */ in SWIG_Lua_class_equal()
1855 usr2=(swig_lua_userdata*)lua_touserdata(L,2); /* get data */ in SWIG_Lua_class_equal()
1858 lua_pushboolean(L,result); in SWIG_Lua_class_equal()
1863 SWIGINTERN void SWIG_Lua_populate_inheritable_metamethods(lua_State *L) in SWIG_Lua_populate_inheritable_metamethods() argument
1865 SWIG_Lua_add_boolean(L, "__add", 1); in SWIG_Lua_populate_inheritable_metamethods()
1866 SWIG_Lua_add_boolean(L, "__sub", 1); in SWIG_Lua_populate_inheritable_metamethods()
1867 SWIG_Lua_add_boolean(L, "__mul", 1); in SWIG_Lua_populate_inheritable_metamethods()
1868 SWIG_Lua_add_boolean(L, "__div", 1); in SWIG_Lua_populate_inheritable_metamethods()
1869 SWIG_Lua_add_boolean(L, "__mod", 1); in SWIG_Lua_populate_inheritable_metamethods()
1870 SWIG_Lua_add_boolean(L, "__pow", 1); in SWIG_Lua_populate_inheritable_metamethods()
1871 SWIG_Lua_add_boolean(L, "__unm", 1); in SWIG_Lua_populate_inheritable_metamethods()
1872 SWIG_Lua_add_boolean(L, "__len", 1 ); in SWIG_Lua_populate_inheritable_metamethods()
1873 SWIG_Lua_add_boolean(L, "__concat", 1 ); in SWIG_Lua_populate_inheritable_metamethods()
1874 SWIG_Lua_add_boolean(L, "__eq", 1); in SWIG_Lua_populate_inheritable_metamethods()
1875 SWIG_Lua_add_boolean(L, "__lt", 1); in SWIG_Lua_populate_inheritable_metamethods()
1876 SWIG_Lua_add_boolean(L, "__le", 1); in SWIG_Lua_populate_inheritable_metamethods()
1877 SWIG_Lua_add_boolean(L, "__call", 1); in SWIG_Lua_populate_inheritable_metamethods()
1878 SWIG_Lua_add_boolean(L, "__tostring", 1); in SWIG_Lua_populate_inheritable_metamethods()
1879 SWIG_Lua_add_boolean(L, "__gc", 0); in SWIG_Lua_populate_inheritable_metamethods()
1883 SWIGINTERN void SWIG_Lua_create_class_registry(lua_State *L) in SWIG_Lua_create_class_registry() argument
1886 lua_pushstring(L,"SWIG"); in SWIG_Lua_create_class_registry()
1887 lua_newtable(L); in SWIG_Lua_create_class_registry()
1891 lua_pushstring(L,".library"); in SWIG_Lua_create_class_registry()
1892 lua_newtable(L); in SWIG_Lua_create_class_registry()
1895 lua_pushstring(L,"inheritable_metamethods"); in SWIG_Lua_create_class_registry()
1896 lua_newtable(L); in SWIG_Lua_create_class_registry()
1898 SWIG_Lua_populate_inheritable_metamethods(L); in SWIG_Lua_create_class_registry()
1899 lua_rawset(L,-3); in SWIG_Lua_create_class_registry()
1901 lua_rawset(L,-3); in SWIG_Lua_create_class_registry()
1903 lua_rawset(L,LUA_REGISTRYINDEX); in SWIG_Lua_create_class_registry()
1907 SWIGINTERN void SWIG_Lua_get_class_registry(lua_State *L) in SWIG_Lua_get_class_registry() argument
1910 lua_pushstring(L,"SWIG"); in SWIG_Lua_get_class_registry()
1911 lua_rawget(L,LUA_REGISTRYINDEX); /* get the registry */ in SWIG_Lua_get_class_registry()
1912 if (!lua_istable(L,-1)) /* not there */ in SWIG_Lua_get_class_registry()
1914 lua_pop(L,1); /* remove the result */ in SWIG_Lua_get_class_registry()
1915 SWIG_Lua_create_class_registry(L); in SWIG_Lua_get_class_registry()
1917 lua_pushstring(L,"SWIG"); in SWIG_Lua_get_class_registry()
1918 lua_rawget(L,LUA_REGISTRYINDEX); in SWIG_Lua_get_class_registry()
1922 SWIGINTERN void SWIG_Lua_get_inheritable_metamethods(lua_State *L) in SWIG_Lua_get_inheritable_metamethods() argument
1924 SWIG_Lua_get_class_registry(L); in SWIG_Lua_get_inheritable_metamethods()
1925 lua_pushstring(L, ".library"); in SWIG_Lua_get_inheritable_metamethods()
1926 lua_rawget(L,-2); in SWIG_Lua_get_inheritable_metamethods()
1927 assert( !lua_isnil(L,-1) ); in SWIG_Lua_get_inheritable_metamethods()
1928 lua_pushstring(L, "inheritable_metamethods"); in SWIG_Lua_get_inheritable_metamethods()
1929 lua_rawget(L,-2); in SWIG_Lua_get_inheritable_metamethods()
1932 lua_remove(L,-2); in SWIG_Lua_get_inheritable_metamethods()
1933 lua_remove(L,-2); in SWIG_Lua_get_inheritable_metamethods()
1937 SWIGINTERN void SWIG_Lua_get_class_metatable(lua_State *L,const char *cname) in SWIG_Lua_get_class_metatable() argument
1939 SWIG_Lua_get_class_registry(L); /* get the registry */ in SWIG_Lua_get_class_metatable()
1940 lua_pushstring(L,cname); /* get the name */ in SWIG_Lua_get_class_metatable()
1941 lua_rawget(L,-2); /* get it */ in SWIG_Lua_get_class_metatable()
1942 lua_remove(L,-2); /* tidy up (remove registry) */ in SWIG_Lua_get_class_metatable()
1952 SWIGINTERN void SWIG_Lua_init_base_class(lua_State *L,swig_lua_class *clss) in SWIG_Lua_init_base_class() argument
1955 swig_module_info *module=SWIG_GetModule(L); in SWIG_Lua_init_base_class()
1969 SWIGINTERN void SWIG_Lua_merge_tables_by_index(lua_State *L, int target, int source) in SWIG_Lua_merge_tables_by_index() argument
1972 lua_pushnil(L); in SWIG_Lua_merge_tables_by_index()
1973 while (lua_next(L,source) != 0) { in SWIG_Lua_merge_tables_by_index()
1976 lua_pushvalue(L,-2); /* copy of index */ in SWIG_Lua_merge_tables_by_index()
1977 lua_pushvalue(L,-2); /* copy of value */ in SWIG_Lua_merge_tables_by_index()
1978 lua_rawset(L, target); in SWIG_Lua_merge_tables_by_index()
1979 lua_pop(L,1); in SWIG_Lua_merge_tables_by_index()
1985 SWIGINTERN void SWIG_Lua_merge_tables(lua_State *L, const char* name, int original, int base) in SWIG_Lua_merge_tables() argument
1988 lua_pushstring(L,name); in SWIG_Lua_merge_tables()
1989 lua_rawget(L,original); in SWIG_Lua_merge_tables()
1990 int original_table = lua_gettop(L); in SWIG_Lua_merge_tables()
1991 lua_pushstring(L,name); in SWIG_Lua_merge_tables()
1992 lua_rawget(L,base); in SWIG_Lua_merge_tables()
1993 int base_table = lua_gettop(L); in SWIG_Lua_merge_tables()
1994 SWIG_Lua_merge_tables_by_index(L, original_table, base_table); in SWIG_Lua_merge_tables()
1996 lua_pop(L,2); in SWIG_Lua_merge_tables()
2000 SWIGINTERN void SWIG_Lua_class_squash_base(lua_State *L, swig_lua_class *base_cls) in SWIG_Lua_class_squash_base() argument
2003 assert(lua_istable(L,-1)); in SWIG_Lua_class_squash_base()
2004 int original = lua_gettop(L); in SWIG_Lua_class_squash_base()
2005 SWIG_Lua_get_class_metatable(L,base_cls->fqname); in SWIG_Lua_class_squash_base()
2006 int base = lua_gettop(L); in SWIG_Lua_class_squash_base()
2007 SWIG_Lua_merge_tables(L, ".fn", original, base ); in SWIG_Lua_class_squash_base()
2008 SWIG_Lua_merge_tables(L, ".set", original, base ); in SWIG_Lua_class_squash_base()
2009 SWIG_Lua_merge_tables(L, ".get", original, base ); in SWIG_Lua_class_squash_base()
2010 lua_pop(L,1); in SWIG_Lua_class_squash_base()
2014 SWIGINTERN void SWIG_Lua_class_squash_bases(lua_State *L, swig_lua_class *clss) in SWIG_Lua_class_squash_bases() argument
2017 SWIG_Lua_get_class_metatable(L,clss->fqname); in SWIG_Lua_class_squash_bases()
2026 SWIG_Lua_class_squash_base(L, clss->bases[i]); in SWIG_Lua_class_squash_bases()
2028 lua_pop(L,1); /*tidy stack*/ in SWIG_Lua_class_squash_bases()
2034 SWIGINTERN void SWIG_Lua_add_variable(lua_State *L,const char *name,lua_CFunction getFn,lua_CFunct… in SWIG_Lua_add_variable() argument
2036 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_add_variable()
2037 SWIG_Lua_get_table(L,".get"); /* find the .get table */ in SWIG_Lua_add_variable()
2038 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_add_variable()
2039 SWIG_Lua_add_function(L,name,getFn); in SWIG_Lua_add_variable()
2040 lua_pop(L,1); /* tidy stack (remove table) */ in SWIG_Lua_add_variable()
2043 SWIG_Lua_get_table(L,".set"); /* find the .set table */ in SWIG_Lua_add_variable()
2044 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_add_variable()
2045 SWIG_Lua_add_function(L,name,setFn); in SWIG_Lua_add_variable()
2046 lua_pop(L,1); /* tidy stack (remove table) */ in SWIG_Lua_add_variable()
2051 SWIGINTERN void SWIG_Lua_add_class_static_details(lua_State *L, swig_lua_class *clss) in SWIG_Lua_add_class_static_details() argument
2055 assert(lua_istable(L,-1)); in SWIG_Lua_add_class_static_details()
2059 SWIG_Lua_add_class_static_details(L,clss->bases[i]); in SWIG_Lua_add_class_static_details()
2062 SWIG_Lua_add_namespace_details(L, clss->cls_static); in SWIG_Lua_add_class_static_details()
2065 SWIGINTERN void SWIG_Lua_add_class_user_metamethods(lua_State *L, swig_lua_class *clss); /* forward…
2068 SWIGINTERN void SWIG_Lua_add_class_instance_details(lua_State *L, swig_lua_class *clss) in SWIG_Lua_add_class_instance_details() argument
2073 SWIG_Lua_get_table(L,".bases"); in SWIG_Lua_add_class_instance_details()
2074 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_add_class_instance_details()
2077 SWIG_Lua_get_class_metatable(L,clss->bases[i]->fqname); in SWIG_Lua_add_class_instance_details()
2079 assert(lua_istable(L,-1)); in SWIG_Lua_add_class_instance_details()
2080 lua_rawseti(L,-2,i+1); /* In lua indexing starts from 1 */ in SWIG_Lua_add_class_instance_details()
2083 assert(lua_rawlen(L,-1) == bases_count); in SWIG_Lua_add_class_instance_details()
2084 lua_pop(L,1); /* remove .bases table */ in SWIG_Lua_add_class_instance_details()
2087 …SWIG_Lua_add_variable(L,clss->attributes[i].name,clss->attributes[i].getmethod,clss->attributes[i]… in SWIG_Lua_add_class_instance_details()
2090 SWIG_Lua_get_table(L,".fn"); /* find the .fn table */ in SWIG_Lua_add_class_instance_details()
2091 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_add_class_instance_details()
2093 SWIG_Lua_add_function(L,clss->methods[i].name,clss->methods[i].func); in SWIG_Lua_add_class_instance_details()
2095 lua_pop(L,1); /* tidy stack (remove table) */ in SWIG_Lua_add_class_instance_details()
2102 SWIG_Lua_add_function(L,clss->metatable[i].name,clss->metatable[i].func); in SWIG_Lua_add_class_instance_details()
2110 SWIG_Lua_add_class_user_metamethods(L, clss); in SWIG_Lua_add_class_instance_details()
2125 SWIGRUNTIME int SWIG_Lua_resolve_metamethod(lua_State *L); /*forward declaration*/
2139 SWIGINTERN int SWIG_Lua_do_resolve_metamethod(lua_State *L, const swig_lua_class *clss, int metamet… in SWIG_Lua_do_resolve_metamethod() argument
2147 SWIG_Lua_get_class_metatable(L, clss->fqname); in SWIG_Lua_do_resolve_metamethod()
2148 lua_pushvalue(L, metamethod_name_idx); in SWIG_Lua_do_resolve_metamethod()
2149 lua_rawget(L,-2); in SWIG_Lua_do_resolve_metamethod()
2154 if (!lua_isnil(L,-1) && lua_tocfunction(L,-1) != SWIG_Lua_resolve_metamethod ) { in SWIG_Lua_do_resolve_metamethod()
2155 lua_remove(L,-2); /* removing class metatable */ in SWIG_Lua_do_resolve_metamethod()
2158 lua_pop(L,2); /* remove class metatable and query result */ in SWIG_Lua_do_resolve_metamethod()
2164 result = SWIG_Lua_do_resolve_metamethod(L, clss->bases[i], metamethod_name_idx, 0); in SWIG_Lua_do_resolve_metamethod()
2174 SWIGRUNTIME int SWIG_Lua_resolve_metamethod(lua_State *L) in SWIG_Lua_resolve_metamethod() argument
2181 lua_checkstack(L,5); in SWIG_Lua_resolve_metamethod()
2182 numargs = lua_gettop(L); /* number of arguments to pass to actual metamethod */ in SWIG_Lua_resolve_metamethod()
2185 lua_pushvalue(L, lua_upvalueindex(1)); /*Get function name*/ in SWIG_Lua_resolve_metamethod()
2186 metamethod_name_idx = lua_gettop(L); in SWIG_Lua_resolve_metamethod()
2188 lua_pushvalue(L, lua_upvalueindex(2)); in SWIG_Lua_resolve_metamethod()
2189 clss = (const swig_lua_class*)(lua_touserdata(L,-1)); in SWIG_Lua_resolve_metamethod()
2190 lua_pop(L,1); /* remove lightuserdata with clss from stack */ in SWIG_Lua_resolve_metamethod()
2193 result = SWIG_Lua_do_resolve_metamethod(L, clss, metamethod_name_idx, 1); in SWIG_Lua_resolve_metamethod()
2195 …SWIG_Lua_pushferrstring(L,"The metamethod proxy is set, but it failed to find actual metamethod. M… in SWIG_Lua_resolve_metamethod()
2196 lua_error(L); in SWIG_Lua_resolve_metamethod()
2200 lua_remove(L,-2); /* remove metamethod key */ in SWIG_Lua_resolve_metamethod()
2201 lua_insert(L,1); /* move function to correct position */ in SWIG_Lua_resolve_metamethod()
2202 lua_call(L, numargs, LUA_MULTRET); in SWIG_Lua_resolve_metamethod()
2203 return lua_gettop(L); /* return all results */ in SWIG_Lua_resolve_metamethod()
2211 SWIGINTERN int SWIG_Lua_add_class_user_metamethod(lua_State *L, swig_lua_class *clss, const int met… in SWIG_Lua_add_class_user_metamethod() argument
2218 assert(lua_isstring(L,-1)); in SWIG_Lua_add_class_user_metamethod()
2220 key_index = lua_gettop(L); in SWIG_Lua_add_class_user_metamethod()
2223 lua_pushvalue(L,key_index); /* copy of the key */ in SWIG_Lua_add_class_user_metamethod()
2224 lua_gettable(L,metatable_index); in SWIG_Lua_add_class_user_metamethod()
2225 if( !lua_isnil(L,-1) ) { in SWIG_Lua_add_class_user_metamethod()
2226 lua_pop(L,1); in SWIG_Lua_add_class_user_metamethod()
2229 lua_pop(L,1); in SWIG_Lua_add_class_user_metamethod()
2235 SWIG_Lua_get_class_metatable(L, base->fqname); in SWIG_Lua_add_class_user_metamethod()
2236 lua_pushvalue(L, key_index); in SWIG_Lua_add_class_user_metamethod()
2237 lua_rawget(L, -2); in SWIG_Lua_add_class_user_metamethod()
2238 if( !lua_isnil(L,-1) ) { in SWIG_Lua_add_class_user_metamethod()
2239 lua_pushvalue(L, key_index); in SWIG_Lua_add_class_user_metamethod()
2242 lua_pushvalue(L, key_index); /* first closure value is function name */ in SWIG_Lua_add_class_user_metamethod()
2243 lua_pushlightuserdata(L, clss); /* second closure value is swig_lua_class structure */ in SWIG_Lua_add_class_user_metamethod()
2244 lua_pushcclosure(L, SWIG_Lua_resolve_metamethod, 2); in SWIG_Lua_add_class_user_metamethod()
2246 lua_rawset(L, metatable_index); in SWIG_Lua_add_class_user_metamethod()
2249 lua_pop(L,1); /* remove function or nil */ in SWIG_Lua_add_class_user_metamethod()
2250 lua_pop(L,1); /* remove base class metatable */ in SWIG_Lua_add_class_user_metamethod()
2259 SWIGINTERN void SWIG_Lua_add_class_user_metamethods(lua_State *L, swig_lua_class *clss) in SWIG_Lua_add_class_user_metamethods() argument
2266 SWIG_Lua_get_class_metatable(L, clss->fqname); in SWIG_Lua_add_class_user_metamethods()
2267 metatable_index = lua_gettop(L); in SWIG_Lua_add_class_user_metamethods()
2268 SWIG_Lua_get_inheritable_metamethods(L); in SWIG_Lua_add_class_user_metamethods()
2269 assert(lua_istable(L,-1)); in SWIG_Lua_add_class_user_metamethods()
2270 metamethods_info_index = lua_gettop(L); in SWIG_Lua_add_class_user_metamethods()
2271 lua_pushnil(L); /* first key */ in SWIG_Lua_add_class_user_metamethods()
2272 while(lua_next(L, metamethods_info_index) != 0 ) { in SWIG_Lua_add_class_user_metamethods()
2274 const int is_inheritable = lua_toboolean(L,-2); in SWIG_Lua_add_class_user_metamethods()
2275 lua_pop(L,1); /* remove value - we don't need it anymore */ in SWIG_Lua_add_class_user_metamethods()
2278 SWIG_Lua_add_class_user_metamethod(L,clss,metatable_index); in SWIG_Lua_add_class_user_metamethods()
2282 lua_pop(L,1); /* remove inheritable metamethods table */ in SWIG_Lua_add_class_user_metamethods()
2285 lua_pushstring(L, "__tostring"); in SWIG_Lua_add_class_user_metamethods()
2286 lua_pushvalue(L,-1); in SWIG_Lua_add_class_user_metamethods()
2287 lua_rawget(L,metatable_index); in SWIG_Lua_add_class_user_metamethods()
2288 tostring_undefined = lua_isnil(L,-1); in SWIG_Lua_add_class_user_metamethods()
2289 lua_pop(L,1); in SWIG_Lua_add_class_user_metamethods()
2291 lua_pushcfunction(L, SWIG_Lua_class_tostring); in SWIG_Lua_add_class_user_metamethods()
2292 lua_rawset(L, metatable_index); in SWIG_Lua_add_class_user_metamethods()
2294 lua_pop(L,1); /* remove copy of the key */ in SWIG_Lua_add_class_user_metamethods()
2298 lua_pushstring(L, "__eq"); in SWIG_Lua_add_class_user_metamethods()
2299 lua_pushvalue(L,-1); in SWIG_Lua_add_class_user_metamethods()
2300 lua_rawget(L,metatable_index); in SWIG_Lua_add_class_user_metamethods()
2301 eq_undefined = lua_isnil(L,-1); in SWIG_Lua_add_class_user_metamethods()
2302 lua_pop(L,1); in SWIG_Lua_add_class_user_metamethods()
2304 lua_pushcfunction(L, SWIG_Lua_class_equal); in SWIG_Lua_add_class_user_metamethods()
2305 lua_rawset(L, metatable_index); in SWIG_Lua_add_class_user_metamethods()
2307 lua_pop(L,1); /* remove copy of the key */ in SWIG_Lua_add_class_user_metamethods()
2312 lua_pop(L,1); /* pop class metatable */ in SWIG_Lua_add_class_user_metamethods()
2316 SWIGINTERN void SWIG_Lua_class_register_static(lua_State *L, swig_lua_class *clss) in SWIG_Lua_class_register_static() argument
2318 const int SWIGUNUSED begin = lua_gettop(L); in SWIG_Lua_class_register_static()
2319 lua_checkstack(L,5); /* just in case */ in SWIG_Lua_class_register_static()
2320 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_register_static()
2323 SWIG_Lua_namespace_register(L,clss->cls_static, 1); in SWIG_Lua_class_register_static()
2325 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_register_static()
2333 lua_getmetatable(L,-1); in SWIG_Lua_class_register_static()
2334 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_register_static()
2335 SWIG_Lua_add_function(L,"__call", clss->constructor); in SWIG_Lua_class_register_static()
2336 lua_pop(L,1); in SWIG_Lua_class_register_static()
2339 assert(lua_istable(L,-1)); /* just in case */ in SWIG_Lua_class_register_static()
2340 SWIG_Lua_add_class_static_details(L, clss); in SWIG_Lua_class_register_static()
2343 lua_pop(L,1); in SWIG_Lua_class_register_static()
2344 assert( lua_gettop(L) == begin ); in SWIG_Lua_class_register_static()
2350 SWIGINTERN void SWIG_Lua_class_register_instance(lua_State *L,swig_lua_class *clss) in SWIG_Lua_class_register_instance() argument
2352 const int SWIGUNUSED begin = lua_gettop(L); in SWIG_Lua_class_register_instance()
2355 SWIG_Lua_get_class_registry(L); /* get the registry */ in SWIG_Lua_class_register_instance()
2356 lua_pushstring(L,clss->fqname); /* get the name */ in SWIG_Lua_class_register_instance()
2357 lua_rawget(L,-2); in SWIG_Lua_class_register_instance()
2358 if(!lua_isnil(L,-1)) { in SWIG_Lua_class_register_instance()
2359 lua_pop(L,2); in SWIG_Lua_class_register_instance()
2360 assert(lua_gettop(L)==begin); in SWIG_Lua_class_register_instance()
2363 lua_pop(L,2); /* tidy stack */ in SWIG_Lua_class_register_instance()
2367 SWIG_Lua_class_register_instance(L,clss->bases[i]); in SWIG_Lua_class_register_instance()
2370 SWIG_Lua_get_class_registry(L); /* get the registry */ in SWIG_Lua_class_register_instance()
2371 lua_pushstring(L,clss->fqname); /* get the name */ in SWIG_Lua_class_register_instance()
2372 lua_newtable(L); /* create the metatable */ in SWIG_Lua_class_register_instance()
2379 int new_metatable_index = lua_absindex(L,-1); in SWIG_Lua_class_register_instance()
2383 SWIG_Lua_get_class_metatable(L,clss->bases[i]->fqname); in SWIG_Lua_class_register_instance()
2384 base_metatable = lua_absindex(L,-1); in SWIG_Lua_class_register_instance()
2385 SWIG_Lua_merge_tables_by_index(L,new_metatable_index, base_metatable); in SWIG_Lua_class_register_instance()
2386 lua_pop(L,1); in SWIG_Lua_class_register_instance()
2392 lua_pushstring(L,".type"); in SWIG_Lua_class_register_instance()
2393 lua_pushstring(L,clss->fqname); in SWIG_Lua_class_register_instance()
2394 lua_rawset(L,-3); in SWIG_Lua_class_register_instance()
2396 lua_pushstring(L,".bases"); in SWIG_Lua_class_register_instance()
2397 lua_newtable(L); in SWIG_Lua_class_register_instance()
2398 lua_rawset(L,-3); in SWIG_Lua_class_register_instance()
2400 lua_pushstring(L,".get"); in SWIG_Lua_class_register_instance()
2401 lua_newtable(L); in SWIG_Lua_class_register_instance()
2402 lua_rawset(L,-3); in SWIG_Lua_class_register_instance()
2404 lua_pushstring(L,".set"); in SWIG_Lua_class_register_instance()
2405 lua_newtable(L); in SWIG_Lua_class_register_instance()
2406 lua_rawset(L,-3); in SWIG_Lua_class_register_instance()
2408 lua_pushstring(L,".fn"); in SWIG_Lua_class_register_instance()
2409 lua_newtable(L); in SWIG_Lua_class_register_instance()
2411 SWIG_Lua_add_function(L,"__disown",SWIG_Lua_class_disown); in SWIG_Lua_class_register_instance()
2412 lua_rawset(L,-3); in SWIG_Lua_class_register_instance()
2414 SWIG_Lua_add_function(L,"__index",SWIG_Lua_class_get); in SWIG_Lua_class_register_instance()
2415 SWIG_Lua_add_function(L,"__newindex",SWIG_Lua_class_set); in SWIG_Lua_class_register_instance()
2416 SWIG_Lua_add_function(L,"__gc",SWIG_Lua_class_destruct); in SWIG_Lua_class_register_instance()
2418 lua_rawset(L,-3); /* metatable into registry */ in SWIG_Lua_class_register_instance()
2419 lua_pop(L,1); /* tidy stack (remove registry) */ in SWIG_Lua_class_register_instance()
2420 assert(lua_gettop(L) == begin); in SWIG_Lua_class_register_instance()
2424 SWIG_Lua_class_squash_bases(L,clss); in SWIG_Lua_class_register_instance()
2426 SWIG_Lua_get_class_metatable(L,clss->fqname); in SWIG_Lua_class_register_instance()
2427 SWIG_Lua_add_class_instance_details(L,clss); /* recursive adding of details (atts & ops) */ in SWIG_Lua_class_register_instance()
2428 lua_pop(L,1); /* tidy stack (remove class metatable) */ in SWIG_Lua_class_register_instance()
2429 assert( lua_gettop(L) == begin ); in SWIG_Lua_class_register_instance()
2432 SWIGINTERN void SWIG_Lua_class_register(lua_State *L,swig_lua_class *clss) in SWIG_Lua_class_register() argument
2435 assert(lua_istable(L,-1)); /* This is a table (module or namespace) where classes will be added */ in SWIG_Lua_class_register()
2436 SWIG_Lua_class_register_instance(L,clss); in SWIG_Lua_class_register()
2437 SWIG_Lua_class_register_static(L,clss); in SWIG_Lua_class_register()
2449 begin = lua_gettop(L); in SWIG_Lua_class_register()
2450 lua_pushstring(L,clss->cls_static->name); in SWIG_Lua_class_register()
2451 lua_rawget(L,-2); /* get class static table */ in SWIG_Lua_class_register()
2452 assert(lua_istable(L,-1)); in SWIG_Lua_class_register()
2453 lua_getmetatable(L,-1); in SWIG_Lua_class_register()
2454 assert(lua_istable(L,-1)); /* get class static metatable */ in SWIG_Lua_class_register()
2455 lua_pushstring(L,".instance"); /* prepare key */ in SWIG_Lua_class_register()
2457 SWIG_Lua_get_class_metatable(L,clss->fqname); /* get class metatable */ in SWIG_Lua_class_register()
2458 assert(lua_istable(L,-1)); in SWIG_Lua_class_register()
2459 lua_pushstring(L,".static"); /* prepare key */ in SWIG_Lua_class_register()
2460 lua_pushvalue(L, -4); /* push static class TABLE */ in SWIG_Lua_class_register()
2461 assert(lua_istable(L,-1)); in SWIG_Lua_class_register()
2462 …lua_rawset(L,-3); /* assign static class table(!NOT metatable) as ".static" member of class metata… in SWIG_Lua_class_register()
2463 lua_rawset(L,-3); /* assign class metatable as ".instance" member of class static METATABLE */ in SWIG_Lua_class_register()
2464 lua_pop(L,2); in SWIG_Lua_class_register()
2465 assert(lua_gettop(L) == begin); in SWIG_Lua_class_register()
2470 SWIGINTERN void SWIG_Lua_elua_class_register_instance(lua_State *L, swig_lua_class *clss) in SWIG_Lua_elua_class_register_instance() argument
2472 const int SWIGUNUSED begin = lua_gettop(L); in SWIG_Lua_elua_class_register_instance()
2475 SWIG_Lua_get_class_registry(L); /* get the registry */ in SWIG_Lua_elua_class_register_instance()
2476 lua_pushstring(L,clss->fqname); /* get the name */ in SWIG_Lua_elua_class_register_instance()
2477 lua_rawget(L,-2); in SWIG_Lua_elua_class_register_instance()
2478 if(!lua_isnil(L,-1)) { in SWIG_Lua_elua_class_register_instance()
2479 lua_pop(L,2); in SWIG_Lua_elua_class_register_instance()
2480 assert(lua_gettop(L)==begin); in SWIG_Lua_elua_class_register_instance()
2483 lua_pop(L,2); /* tidy stack */ in SWIG_Lua_elua_class_register_instance()
2487 SWIG_Lua_elua_class_register_instance(L,clss->bases[i]); in SWIG_Lua_elua_class_register_instance()
2490 SWIG_Lua_get_class_registry(L); /* get the registry */ in SWIG_Lua_elua_class_register_instance()
2491 lua_pushstring(L,clss->fqname); /* get the name */ in SWIG_Lua_elua_class_register_instance()
2493 lua_pushrotable(L, (void*)(clss->metatable)); /* create the metatable */ in SWIG_Lua_elua_class_register_instance()
2494 lua_rawset(L,-3); in SWIG_Lua_elua_class_register_instance()
2495 lua_pop(L,1); in SWIG_Lua_elua_class_register_instance()
2496 assert(lua_gettop(L) == begin); in SWIG_Lua_elua_class_register_instance()
2505 SWIGINTERN void SWIG_Lua_AddMetatable(lua_State *L,swig_type_info *type) in SWIG_Lua_AddMetatable() argument
2509 SWIG_Lua_get_class_metatable(L,((swig_lua_class*)(type->clientdata))->fqname); in SWIG_Lua_AddMetatable()
2510 if (lua_istable(L,-1)) in SWIG_Lua_AddMetatable()
2512 lua_setmetatable(L,-2); in SWIG_Lua_AddMetatable()
2516 lua_pop(L,1); in SWIG_Lua_AddMetatable()
2522 SWIGRUNTIME void SWIG_Lua_NewPointerObj(lua_State *L,void *ptr,swig_type_info *type, int own) in SWIG_Lua_NewPointerObj() argument
2526 lua_pushnil(L); in SWIG_Lua_NewPointerObj()
2529 usr=(swig_lua_userdata*)lua_newuserdata(L,sizeof(swig_lua_userdata)); /* get data */ in SWIG_Lua_NewPointerObj()
2534 SWIG_Lua_AddMetatable(L,type); /* add metatable */ in SWIG_Lua_NewPointerObj()
2540 SWIGRUNTIME int SWIG_Lua_ConvertPtr(lua_State *L,int index,void **ptr,swig_type_info *type,int fla… in SWIG_Lua_ConvertPtr() argument
2546 if (lua_isnil(L,index)) in SWIG_Lua_ConvertPtr()
2551 if (lua_islightuserdata(L,index)) in SWIG_Lua_ConvertPtr()
2553 *ptr=lua_touserdata(L,index); in SWIG_Lua_ConvertPtr()
2556 usr=(swig_lua_userdata*)lua_touserdata(L,index); /* get data */ in SWIG_Lua_ConvertPtr()
2591 SWIGRUNTIME void* SWIG_Lua_MustGetPtr(lua_State *L,int index,swig_type_info *type,int flags, in SWIG_Lua_MustGetPtr() argument
2594 if (!SWIG_IsOK(SWIG_ConvertPtr(L,index,&result,type,flags))){ in SWIG_Lua_MustGetPtr()
2595 luaL_error (L,"Error in %s, expected a %s at argument number %d\n", in SWIG_Lua_MustGetPtr()
2602 SWIGRUNTIME void SWIG_Lua_NewPackedObj(lua_State *L,void *ptr,size_t size,swig_type_info *type) in SWIG_Lua_NewPackedObj() argument
2606 raw=(swig_lua_rawdata*)lua_newuserdata(L,sizeof(swig_lua_rawdata)-1+size); /* alloc data */ in SWIG_Lua_NewPackedObj()
2610 SWIG_Lua_AddMetatable(L,type); /* add metatable */ in SWIG_Lua_NewPackedObj()
2614 SWIGRUNTIME int SWIG_Lua_ConvertPacked(lua_State *L,int index,void *ptr,size_t size,swig_type_info… in SWIG_Lua_ConvertPacked() argument
2617 raw=(swig_lua_rawdata*)lua_touserdata(L,index); /* get data */ in SWIG_Lua_ConvertPacked()
2628 SWIGRUNTIME const char *SWIG_Lua_typename(lua_State *L, int tp) in SWIG_Lua_typename() argument
2631 if (lua_isuserdata(L,tp)) in SWIG_Lua_typename()
2633 usr=(swig_lua_userdata*)lua_touserdata(L,tp); /* get data */ in SWIG_Lua_typename()
2638 return lua_typename(L,lua_type(L,tp)); in SWIG_Lua_typename()
2642 SWIGRUNTIME int SWIG_Lua_type(lua_State *L) in SWIG_Lua_type() argument
2644 lua_pushstring(L,SWIG_Lua_typename(L,1)); in SWIG_Lua_type()
2655 SWIG_Lua_InstallConstants(lua_State *L, swig_lua_const_info constants[]) { in SWIG_Lua_InstallConstants() argument
2660 lua_pushstring(L,constants[i].name); in SWIG_Lua_InstallConstants()
2661 lua_pushinteger(L,(lua_Integer)constants[i].lvalue); in SWIG_Lua_InstallConstants()
2662 lua_rawset(L,-3); in SWIG_Lua_InstallConstants()
2665 lua_pushstring(L,constants[i].name); in SWIG_Lua_InstallConstants()
2666 lua_pushnumber(L,(lua_Number)constants[i].dvalue); in SWIG_Lua_InstallConstants()
2667 lua_rawset(L,-3); in SWIG_Lua_InstallConstants()
2670 lua_pushstring(L,constants[i].name); in SWIG_Lua_InstallConstants()
2673 lua_pushlstring(L,&c,1); in SWIG_Lua_InstallConstants()
2675 lua_rawset(L,-3); in SWIG_Lua_InstallConstants()
2678 lua_pushstring(L,constants[i].name); in SWIG_Lua_InstallConstants()
2679 lua_pushstring(L,(char *) constants[i].pvalue); in SWIG_Lua_InstallConstants()
2680 lua_rawset(L,-3); in SWIG_Lua_InstallConstants()
2683 lua_pushstring(L,constants[i].name); in SWIG_Lua_InstallConstants()
2684 SWIG_NewPointerObj(L,constants[i].pvalue, *(constants[i]).ptype,0); in SWIG_Lua_InstallConstants()
2685 lua_rawset(L,-3); in SWIG_Lua_InstallConstants()
2688 lua_pushstring(L,constants[i].name); in SWIG_Lua_InstallConstants()
2689 SWIG_NewMemberObj(L,constants[i].pvalue,constants[i].lvalue,*(constants[i]).ptype); in SWIG_Lua_InstallConstants()
2690 lua_rawset(L,-3); in SWIG_Lua_InstallConstants()
2712 SWIG_Lua_dostring(lua_State *L, const char *str) { in SWIG_Lua_dostring() argument
2715 top=lua_gettop(L); /* save stack */ in SWIG_Lua_dostring()
2717 ok=luaL_dostring(L,str); /* looks like this is lua 5.1.X or later, good */ in SWIG_Lua_dostring()
2719 ok=lua_dostring(L,str); /* might be lua 5.0.x, using lua_dostring */ in SWIG_Lua_dostring()
2722 SWIG_DOSTRING_FAIL(lua_tostring(L,-1)); in SWIG_Lua_dostring()
2724 lua_settop(L,top); /* restore the stack */ in SWIG_Lua_dostring()
3062 SWIGINTERN int SWIG_lua_isnilstring(lua_State *L, int idx) { in SWIG_lua_isnilstring() argument
3063 int ret = lua_isstring(L, idx); in SWIG_lua_isnilstring()
3065 ret = lua_isnil(L, idx); in SWIG_lua_isnilstring()
3078 SWIGINTERN int SWIG_itable_size(lua_State* L, int index) in SWIG_itable_size() argument
3082 lua_rawgeti(L,index,n+1); in SWIG_itable_size()
3083 if (lua_isnil(L,-1))break; in SWIG_itable_size()
3085 lua_pop(L,1); in SWIG_itable_size()
3087 lua_pop(L,1); in SWIG_itable_size()
3091 SWIGINTERN int SWIG_table_size(lua_State* L, int index) in SWIG_table_size() argument
3094 lua_pushnil(L); /* first key*/ in SWIG_table_size()
3095 while (lua_next(L, index) != 0) { in SWIG_table_size()
3097 lua_pop(L, 1); /* removes `value'; keeps `key' for next iteration*/ in SWIG_table_size()
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 *typ… in SWIG_DECLARE_TYPEMAP_ARR_FN()
3175 lua_rawgeti(L,index,i+1); in SWIG_DECLARE_TYPEMAP_ARR_FN()
3176 if (!lua_isuserdata(L,-1) || SWIG_ConvertPtr(L,-1,&array[i],type,0)==-1){ in SWIG_DECLARE_TYPEMAP_ARR_FN()
3177 lua_pop(L,1); in SWIG_DECLARE_TYPEMAP_ARR_FN()
3180 lua_pop(L,1); in SWIG_DECLARE_TYPEMAP_ARR_FN()
3184 SWIGINTERN void** SWIG_get_ptr_array_fixed(lua_State* L, int index, int size,swig_type_info *type){ in SWIG_get_ptr_array_fixed() argument
3186 if (!lua_istable(L,index) || SWIG_itable_size(L,index) != size) { in SWIG_get_ptr_array_fixed()
3187 SWIG_Lua_pushferrstring(L,"expected a table of size %d",size); in SWIG_get_ptr_array_fixed()
3191 if (!SWIG_read_ptr_array(L,index,array,size,type)){ in SWIG_get_ptr_array_fixed()
3192 SWIG_Lua_pushferrstring(L,"table must contain pointers of type %s",type->name); in SWIG_get_ptr_array_fixed()
3198 SWIGINTERN void** SWIG_get_ptr_array_var(lua_State* L, int index, int* size,swig_type_info *type){ in SWIG_get_ptr_array_var() argument
3200 if (!lua_istable(L,index)) { in SWIG_get_ptr_array_var()
3201 SWIG_Lua_pusherrstring(L,"expected a table"); in SWIG_get_ptr_array_var()
3204 *size=SWIG_itable_size(L,index); in SWIG_get_ptr_array_var()
3206 SWIG_Lua_pusherrstring(L,"table appears to be empty"); in SWIG_get_ptr_array_var()
3210 if (!SWIG_read_ptr_array(L,index,array,*size,type)){ in SWIG_get_ptr_array_var()
3211 SWIG_Lua_pushferrstring(L,"table must contain pointers of type %s",type->name); in SWIG_get_ptr_array_var()
3217 SWIGINTERN void SWIG_write_ptr_array(lua_State* L,void **array,int size,swig_type_info *type,int ow… in SWIG_write_ptr_array() argument
3219 lua_newtable(L); in SWIG_write_ptr_array()
3221 SWIG_NewPointerObj(L,array[i],type,own); in SWIG_write_ptr_array()
3222 lua_rawseti(L,-2,i+1);/* -1 is the number, -2 is the table*/ in SWIG_write_ptr_array()
3796 template <typename T> void PushSBClass(lua_State * L, T * obj);
3801 lua_State * L, lldb::StackFrameSP stop_frame_sp, in LLDBSwigLuaBreakpointCallbackFunction() argument
3811 PushSBClass(L, &sb_frame); in LLDBSwigLuaBreakpointCallbackFunction()
3812 PushSBClass(L, &sb_bp_loc); in LLDBSwigLuaBreakpointCallbackFunction()
3815 PushSBClass(L, &extra_args); in LLDBSwigLuaBreakpointCallbackFunction()
3821 if (lua_pcall(L, nargs, 1, 0) != LUA_OK) { in LLDBSwigLuaBreakpointCallbackFunction()
3823 llvm::formatv("{0}\n", lua_tostring(L, -1)), in LLDBSwigLuaBreakpointCallbackFunction()
3826 lua_pop(L, 1); in LLDBSwigLuaBreakpointCallbackFunction()
3831 bool stop = lua_toboolean(L, -1); in LLDBSwigLuaBreakpointCallbackFunction()
3832 lua_pop(L, 1); in LLDBSwigLuaBreakpointCallbackFunction()
3840 lua_State * L, lldb::StackFrameSP stop_frame_sp, lldb::WatchpointSP wp_sp) { in LLDBSwigLuaWatchpointCallbackFunction() argument
3846 PushSBClass(L, &sb_frame); in LLDBSwigLuaWatchpointCallbackFunction()
3847 PushSBClass(L, &sb_wp); in LLDBSwigLuaWatchpointCallbackFunction()
3851 if (lua_pcall(L, nargs, 1, 0) != LUA_OK) { in LLDBSwigLuaWatchpointCallbackFunction()
3853 llvm::formatv("{0}\n", lua_tostring(L, -1)), in LLDBSwigLuaWatchpointCallbackFunction()
3856 lua_pop(L, 1); in LLDBSwigLuaWatchpointCallbackFunction()
3861 bool stop = lua_toboolean(L, -1); in LLDBSwigLuaWatchpointCallbackFunction()
3862 lua_pop(L, 1); in LLDBSwigLuaWatchpointCallbackFunction()
3868 lua_State *L = (lua_State *)baton; in LLDBSwigLuaCallLuaLogOutputCallback() local
3870 lua_pushlightuserdata(L, (void *)&LLDBSwigLuaCallLuaLogOutputCallback); in LLDBSwigLuaCallLuaLogOutputCallback()
3871 lua_gettable(L, LUA_REGISTRYINDEX); in LLDBSwigLuaCallLuaLogOutputCallback()
3874 lua_pushstring(L, str); in LLDBSwigLuaCallLuaLogOutputCallback()
3875 lua_pcall(L, 1, 0, 0); in LLDBSwigLuaCallLuaLogOutputCallback()
3878 static int LLDBSwigLuaCloseFileHandle(lua_State * L) { in LLDBSwigLuaCloseFileHandle() argument
3879 return luaL_error(L, "You cannot close a file handle used by lldb."); in LLDBSwigLuaCloseFileHandle()
3886 static int _wrap_new_string__SWIG_0(lua_State* L) { in _wrap_new_string__SWIG_0() argument
3893 SWIG_NewPointerObj(L,result,SWIGTYPE_p_std__string,1); SWIG_arg++; in _wrap_new_string__SWIG_0()
3898 lua_error(L); in _wrap_new_string__SWIG_0()
3903 static int _wrap_new_string__SWIG_1(lua_State* L) { in _wrap_new_string__SWIG_1() argument
3910 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("std::string::string",1,"char const *"); in _wrap_new_string__SWIG_1()
3911 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_string__SWIG_1()
3913 SWIG_NewPointerObj(L,result,SWIGTYPE_p_std__string,1); SWIG_arg++; in _wrap_new_string__SWIG_1()
3918 lua_error(L); in _wrap_new_string__SWIG_1()
3923 static int _wrap_new_string(lua_State* L) { in _wrap_new_string() argument
3929 argc = lua_gettop(L); in _wrap_new_string()
3931 return _wrap_new_string__SWIG_0(L); in _wrap_new_string()
3936 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_string()
3939 return _wrap_new_string__SWIG_1(L); in _wrap_new_string()
3943 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_string'\n" in _wrap_new_string()
3947 lua_error(L);return 0; in _wrap_new_string()
3951 static int _wrap_string_size(lua_State* L) { in _wrap_string_size() argument
3958 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::size",1,"std::string const *"); in _wrap_string_size()
3960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){ in _wrap_string_size()
3965 lua_pushnumber(L, (lua_Number) result); SWIG_arg++; in _wrap_string_size()
3970 lua_error(L); in _wrap_string_size()
3975 static int _wrap_string_length(lua_State* L) { in _wrap_string_length() argument
3982 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::length",1,"std::string const *"); in _wrap_string_length()
3984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){ in _wrap_string_length()
3989 lua_pushnumber(L, (lua_Number) result); SWIG_arg++; in _wrap_string_length()
3994 lua_error(L); in _wrap_string_length()
3999 static int _wrap_string_empty(lua_State* L) { in _wrap_string_empty() argument
4006 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::empty",1,"std::string const *"); in _wrap_string_empty()
4008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){ in _wrap_string_empty()
4013 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_string_empty()
4018 lua_error(L); in _wrap_string_empty()
4023 static int _wrap_string_c_str(lua_State* L) { in _wrap_string_c_str() argument
4030 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::c_str",1,"std::string const *"); in _wrap_string_c_str()
4032 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){ in _wrap_string_c_str()
4037 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_string_c_str()
4042 lua_error(L); in _wrap_string_c_str()
4047 static int _wrap_string_data(lua_State* L) { in _wrap_string_data() argument
4054 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::data",1,"std::string const *"); in _wrap_string_data()
4056 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){ in _wrap_string_data()
4061 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_string_data()
4066 lua_error(L); in _wrap_string_data()
4071 static int _wrap_string_assign(lua_State* L) { in _wrap_string_assign() argument
4078 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("std::string::assign",1,"std::string *"); in _wrap_string_assign()
4079 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("std::string::assign",2,"char const *"); in _wrap_string_assign()
4081 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_std__string,0))){ in _wrap_string_assign()
4085 arg2 = (char *)lua_tostring(L, 2); in _wrap_string_assign()
4092 lua_error(L); in _wrap_string_assign()
4101 static int _proxy__wrap_new_string(lua_State *L) { in _proxy__wrap_new_string() argument
4102 assert(lua_istable(L,1)); in _proxy__wrap_new_string()
4103 lua_pushcfunction(L,_wrap_new_string); in _proxy__wrap_new_string()
4104 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_string()
4105 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_string()
4106 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_string()
4150 static int _wrap_new_SBAddress__SWIG_0(lua_State* L) { in _wrap_new_SBAddress__SWIG_0() argument
4157 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_new_SBAddress__SWIG_0()
4162 lua_error(L); in _wrap_new_SBAddress__SWIG_0()
4167 static int _wrap_new_SBAddress__SWIG_1(lua_State* L) { in _wrap_new_SBAddress__SWIG_1() argument
4174 … if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddress::SBAddress",1,"lldb::SBAddress const &"); in _wrap_new_SBAddress__SWIG_1()
4176 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_new_SBAddress__SWIG_1()
4181 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_new_SBAddress__SWIG_1()
4186 lua_error(L); in _wrap_new_SBAddress__SWIG_1()
4191 static int _wrap_new_SBAddress__SWIG_2(lua_State* L) { in _wrap_new_SBAddress__SWIG_2() argument
4200 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddress::SBAddress",1,"lldb::SBSection"); in _wrap_new_SBAddress__SWIG_2()
4201 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::SBAddress",2,"lldb::addr_t"); in _wrap_new_SBAddress__SWIG_2()
4203 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_new_SBAddress__SWIG_2()
4208 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_new_SBAddress__SWIG_2()
4210 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_new_SBAddress__SWIG_2()
4215 lua_error(L); in _wrap_new_SBAddress__SWIG_2()
4220 static int _wrap_new_SBAddress__SWIG_3(lua_State* L) { in _wrap_new_SBAddress__SWIG_3() argument
4228 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBAddress::SBAddress",1,"lldb::addr_t"); in _wrap_new_SBAddress__SWIG_3()
4229 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::SBAddress",2,"lldb::SBTarget &"); in _wrap_new_SBAddress__SWIG_3()
4230 arg1 = (lldb::addr_t)lua_tointeger(L, 1); in _wrap_new_SBAddress__SWIG_3()
4232 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_new_SBAddress__SWIG_3()
4237 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_new_SBAddress__SWIG_3()
4242 lua_error(L); in _wrap_new_SBAddress__SWIG_3()
4247 static int _wrap_new_SBAddress(lua_State* L) { in _wrap_new_SBAddress() argument
4253 argc = lua_gettop(L); in _wrap_new_SBAddress()
4255 return _wrap_new_SBAddress__SWIG_0(L); in _wrap_new_SBAddress()
4261 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAddress()
4268 return _wrap_new_SBAddress__SWIG_1(L); in _wrap_new_SBAddress()
4275 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAddress()
4283 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBAddress()
4286 return _wrap_new_SBAddress__SWIG_2(L); in _wrap_new_SBAddress()
4293 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBAddress()
4298 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAddress()
4305 return _wrap_new_SBAddress__SWIG_3(L); in _wrap_new_SBAddress()
4310 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAddress'\n" in _wrap_new_SBAddress()
4316 lua_error(L);return 0; in _wrap_new_SBAddress()
4320 static int _wrap_SBAddress_IsValid(lua_State* L) { in _wrap_SBAddress_IsValid() argument
4327 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::IsValid",1,"lldb::SBAddress const *"); in _wrap_SBAddress_IsValid()
4329 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_IsValid()
4334 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddress_IsValid()
4339 lua_error(L); in _wrap_SBAddress_IsValid()
4344 static int _wrap_SBAddress_Clear(lua_State* L) { in _wrap_SBAddress_Clear() argument
4350 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::Clear",1,"lldb::SBAddress *"); in _wrap_SBAddress_Clear()
4352 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_Clear()
4362 lua_error(L); in _wrap_SBAddress_Clear()
4367 static int _wrap_SBAddress_GetFileAddress(lua_State* L) { in _wrap_SBAddress_GetFileAddress() argument
4374 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetFileAddress",1,"lldb::SBAddress const … in _wrap_SBAddress_GetFileAddress()
4376 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetFileAddress()
4381 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAddress_GetFileAddress()
4386 lua_error(L); in _wrap_SBAddress_GetFileAddress()
4391 static int _wrap_SBAddress_GetLoadAddress(lua_State* L) { in _wrap_SBAddress_GetLoadAddress() argument
4399 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetLoadAddress",1,"lldb::SBAddress const … in _wrap_SBAddress_GetLoadAddress()
4400 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::GetLoadAddress",2,"lldb::SBTarget const &… in _wrap_SBAddress_GetLoadAddress()
4402 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetLoadAddress()
4407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBAddress_GetLoadAddress()
4412 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAddress_GetLoadAddress()
4417 lua_error(L); in _wrap_SBAddress_GetLoadAddress()
4422 static int _wrap_SBAddress_SetAddress(lua_State* L) { in _wrap_SBAddress_SetAddress() argument
4431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::SetAddress",1,"lldb::SBAddress *"); in _wrap_SBAddress_SetAddress()
4432 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::SetAddress",2,"lldb::SBSection"); in _wrap_SBAddress_SetAddress()
4433 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBAddress::SetAddress",3,"lldb::addr_t"); in _wrap_SBAddress_SetAddress()
4435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_SetAddress()
4440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBAddress_SetAddress()
4445 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBAddress_SetAddress()
4452 lua_error(L); in _wrap_SBAddress_SetAddress()
4457 static int _wrap_SBAddress_SetLoadAddress(lua_State* L) { in _wrap_SBAddress_SetLoadAddress() argument
4465 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::SetLoadAddress",1,"lldb::SBAddress *"); in _wrap_SBAddress_SetLoadAddress()
4466 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::SetLoadAddress",2,"lldb::addr_t"); in _wrap_SBAddress_SetLoadAddress()
4467 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBAddress::SetLoadAddress",3,"lldb::SBTarget &"); in _wrap_SBAddress_SetLoadAddress()
4469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_SetLoadAddress()
4473 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBAddress_SetLoadAddress()
4475 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBAddress_SetLoadAddress()
4485 lua_error(L); in _wrap_SBAddress_SetLoadAddress()
4490 static int _wrap_SBAddress_OffsetAddress(lua_State* L) { in _wrap_SBAddress_OffsetAddress() argument
4498 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::OffsetAddress",1,"lldb::SBAddress *"); in _wrap_SBAddress_OffsetAddress()
4499 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::OffsetAddress",2,"lldb::addr_t"); in _wrap_SBAddress_OffsetAddress()
4501 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_OffsetAddress()
4505 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBAddress_OffsetAddress()
4507 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddress_OffsetAddress()
4512 lua_error(L); in _wrap_SBAddress_OffsetAddress()
4517 static int _wrap_SBAddress_GetDescription(lua_State* L) { in _wrap_SBAddress_GetDescription() argument
4525 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetDescription",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetDescription()
4526 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddress::GetDescription",2,"lldb::SBStream &"); in _wrap_SBAddress_GetDescription()
4528 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetDescription()
4533 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBAddress_GetDescription()
4538 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddress_GetDescription()
4543 lua_error(L); in _wrap_SBAddress_GetDescription()
4548 static int _wrap_SBAddress_GetSymbolContext(lua_State* L) { in _wrap_SBAddress_GetSymbolContext() argument
4556 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetSymbolContext",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetSymbolContext()
4557 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddress::GetSymbolContext",2,"uint32_t"); in _wrap_SBAddress_GetSymbolContext()
4559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetSymbolContext()
4563 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBAddress_GetSymbolContext()
4567 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_SBAddress_GetSymbolContext()
4573 lua_error(L); in _wrap_SBAddress_GetSymbolContext()
4578 static int _wrap_SBAddress_GetSection(lua_State* L) { in _wrap_SBAddress_GetSection() argument
4585 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetSection",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetSection()
4587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetSection()
4594 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_SBAddress_GetSection()
4600 lua_error(L); in _wrap_SBAddress_GetSection()
4605 static int _wrap_SBAddress_GetOffset(lua_State* L) { in _wrap_SBAddress_GetOffset() argument
4612 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetOffset",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetOffset()
4614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetOffset()
4619 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAddress_GetOffset()
4624 lua_error(L); in _wrap_SBAddress_GetOffset()
4629 static int _wrap_SBAddress_GetModule(lua_State* L) { in _wrap_SBAddress_GetModule() argument
4636 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetModule",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetModule()
4638 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetModule()
4645 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBAddress_GetModule()
4651 lua_error(L); in _wrap_SBAddress_GetModule()
4656 static int _wrap_SBAddress_GetCompileUnit(lua_State* L) { in _wrap_SBAddress_GetCompileUnit() argument
4663 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetCompileUnit",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetCompileUnit()
4665 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetCompileUnit()
4672 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++; in _wrap_SBAddress_GetCompileUnit()
4678 lua_error(L); in _wrap_SBAddress_GetCompileUnit()
4683 static int _wrap_SBAddress_GetFunction(lua_State* L) { in _wrap_SBAddress_GetFunction() argument
4690 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetFunction",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetFunction()
4692 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetFunction()
4699 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++; in _wrap_SBAddress_GetFunction()
4705 lua_error(L); in _wrap_SBAddress_GetFunction()
4710 static int _wrap_SBAddress_GetBlock(lua_State* L) { in _wrap_SBAddress_GetBlock() argument
4717 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetBlock",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetBlock()
4719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetBlock()
4726 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBAddress_GetBlock()
4732 lua_error(L); in _wrap_SBAddress_GetBlock()
4737 static int _wrap_SBAddress_GetSymbol(lua_State* L) { in _wrap_SBAddress_GetSymbol() argument
4744 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetSymbol",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetSymbol()
4746 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetSymbol()
4753 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_SBAddress_GetSymbol()
4759 lua_error(L); in _wrap_SBAddress_GetSymbol()
4764 static int _wrap_SBAddress_GetLineEntry(lua_State* L) { in _wrap_SBAddress_GetLineEntry() argument
4771 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::GetLineEntry",1,"lldb::SBAddress *"); in _wrap_SBAddress_GetLineEntry()
4773 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress_GetLineEntry()
4780 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++; in _wrap_SBAddress_GetLineEntry()
4786 lua_error(L); in _wrap_SBAddress_GetLineEntry()
4791 static int _wrap_SBAddress___tostring(lua_State* L) { in _wrap_SBAddress___tostring() argument
4798 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddress::__repr__",1,"lldb::SBAddress *"); in _wrap_SBAddress___tostring()
4800 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBAddress___tostring()
4805 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBAddress___tostring()
4810 lua_error(L); in _wrap_SBAddress___tostring()
4819 static int _proxy__wrap_new_SBAddress(lua_State *L) { in _proxy__wrap_new_SBAddress() argument
4820 assert(lua_istable(L,1)); in _proxy__wrap_new_SBAddress()
4821 lua_pushcfunction(L,_wrap_new_SBAddress); in _proxy__wrap_new_SBAddress()
4822 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBAddress()
4823 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBAddress()
4824 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBAddress()
4881 static int _wrap_new_SBAddressRange__SWIG_0(lua_State* L) { in _wrap_new_SBAddressRange__SWIG_0() argument
4888 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++; in _wrap_new_SBAddressRange__SWIG_0()
4893 lua_error(L); in _wrap_new_SBAddressRange__SWIG_0()
4898 static int _wrap_new_SBAddressRange__SWIG_1(lua_State* L) { in _wrap_new_SBAddressRange__SWIG_1() argument
4905 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddressRange::SBAddressRange",1,"lldb::SBAddressRa… in _wrap_new_SBAddressRange__SWIG_1()
4907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_new_SBAddressRange__SWIG_1()
4912 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++; in _wrap_new_SBAddressRange__SWIG_1()
4917 lua_error(L); in _wrap_new_SBAddressRange__SWIG_1()
4922 static int _wrap_new_SBAddressRange__SWIG_2(lua_State* L) { in _wrap_new_SBAddressRange__SWIG_2() argument
4931 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddressRange::SBAddressRange",1,"lldb::SBAddress"); in _wrap_new_SBAddressRange__SWIG_2()
4932 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddressRange::SBAddressRange",2,"lldb::addr_t"); in _wrap_new_SBAddressRange__SWIG_2()
4934 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_new_SBAddressRange__SWIG_2()
4939 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_new_SBAddressRange__SWIG_2()
4941 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++; in _wrap_new_SBAddressRange__SWIG_2()
4946 lua_error(L); in _wrap_new_SBAddressRange__SWIG_2()
4951 static int _wrap_new_SBAddressRange(lua_State* L) { in _wrap_new_SBAddressRange() argument
4957 argc = lua_gettop(L); in _wrap_new_SBAddressRange()
4959 return _wrap_new_SBAddressRange__SWIG_0(L); in _wrap_new_SBAddressRange()
4965 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAddressRange()
4972 return _wrap_new_SBAddressRange__SWIG_1(L); in _wrap_new_SBAddressRange()
4979 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAddressRange()
4987 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBAddressRange()
4990 return _wrap_new_SBAddressRange__SWIG_2(L); in _wrap_new_SBAddressRange()
4995 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAddressRange'\n" in _wrap_new_SBAddressRange()
5000 lua_error(L);return 0; in _wrap_new_SBAddressRange()
5004 static int _wrap_SBAddressRange_Clear(lua_State* L) { in _wrap_SBAddressRange_Clear() argument
5010 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::Clear",1,"lldb::SBAddressRange *"); in _wrap_SBAddressRange_Clear()
5012 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange_Clear()
5022 lua_error(L); in _wrap_SBAddressRange_Clear()
5027 static int _wrap_SBAddressRange_IsValid(lua_State* L) { in _wrap_SBAddressRange_IsValid() argument
5034 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::IsValid",1,"lldb::SBAddressRange con… in _wrap_SBAddressRange_IsValid()
5036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange_IsValid()
5041 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddressRange_IsValid()
5046 lua_error(L); in _wrap_SBAddressRange_IsValid()
5051 static int _wrap_SBAddressRange_GetBaseAddress(lua_State* L) { in _wrap_SBAddressRange_GetBaseAddress() argument
5058 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::GetBaseAddress",1,"lldb::SBAddressRa… in _wrap_SBAddressRange_GetBaseAddress()
5060 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange_GetBaseAddress()
5067 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBAddressRange_GetBaseAddress()
5073 lua_error(L); in _wrap_SBAddressRange_GetBaseAddress()
5078 static int _wrap_SBAddressRange_GetByteSize(lua_State* L) { in _wrap_SBAddressRange_GetByteSize() argument
5085 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::GetByteSize",1,"lldb::SBAddressRange… in _wrap_SBAddressRange_GetByteSize()
5087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange_GetByteSize()
5092 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAddressRange_GetByteSize()
5097 lua_error(L); in _wrap_SBAddressRange_GetByteSize()
5102 static int _wrap_SBAddressRange___eq(lua_State* L) { in _wrap_SBAddressRange___eq() argument
5110 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::operator ==",1,"lldb::SBAddressRange… in _wrap_SBAddressRange___eq()
5111 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRange::operator ==",2,"lldb::SBAddressRange… in _wrap_SBAddressRange___eq()
5113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange___eq()
5118 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange___eq()
5123 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddressRange___eq()
5128 lua_error(L); in _wrap_SBAddressRange___eq()
5133 static int _wrap_SBAddressRange_GetDescription(lua_State* L) { in _wrap_SBAddressRange_GetDescription() argument
5143 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRange::GetDescription",1,"lldb::SBAddressRa… in _wrap_SBAddressRange_GetDescription()
5144 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRange::GetDescription",2,"lldb::SBStream &"… in _wrap_SBAddressRange_GetDescription()
5145 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBAddressRange::GetDescription",3,"lldb::SBTarget co… in _wrap_SBAddressRange_GetDescription()
5147 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRange_GetDescription()
5152 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBAddressRange_GetDescription()
5157 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBAddressRange_GetDescription()
5163 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddressRange_GetDescription()
5168 lua_error(L); in _wrap_SBAddressRange_GetDescription()
5177 static int _proxy__wrap_new_SBAddressRange(lua_State *L) { in _proxy__wrap_new_SBAddressRange() argument
5178 assert(lua_istable(L,1)); in _proxy__wrap_new_SBAddressRange()
5179 lua_pushcfunction(L,_wrap_new_SBAddressRange); in _proxy__wrap_new_SBAddressRange()
5180 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBAddressRange()
5181 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBAddressRange()
5182 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBAddressRange()
5227 static int _wrap_new_SBAddressRangeList__SWIG_0(lua_State* L) { in _wrap_new_SBAddressRangeList__SWIG_0() argument
5234 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++; in _wrap_new_SBAddressRangeList__SWIG_0()
5239 lua_error(L); in _wrap_new_SBAddressRangeList__SWIG_0()
5244 static int _wrap_new_SBAddressRangeList__SWIG_1(lua_State* L) { in _wrap_new_SBAddressRangeList__SWIG_1() argument
5251 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::SBAddressRangeList",1,"lldb::SBA… in _wrap_new_SBAddressRangeList__SWIG_1()
5253 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_new_SBAddressRangeList__SWIG_1()
5258 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++; in _wrap_new_SBAddressRangeList__SWIG_1()
5263 lua_error(L); in _wrap_new_SBAddressRangeList__SWIG_1()
5268 static int _wrap_new_SBAddressRangeList(lua_State* L) { in _wrap_new_SBAddressRangeList() argument
5274 argc = lua_gettop(L); in _wrap_new_SBAddressRangeList()
5276 return _wrap_new_SBAddressRangeList__SWIG_0(L); in _wrap_new_SBAddressRangeList()
5282 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAddressRangeList()
5289 return _wrap_new_SBAddressRangeList__SWIG_1(L); in _wrap_new_SBAddressRangeList()
5293 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAddressRangeList'\n" in _wrap_new_SBAddressRangeList()
5297 lua_error(L);return 0; in _wrap_new_SBAddressRangeList()
5301 static int _wrap_SBAddressRangeList_GetSize(lua_State* L) { in _wrap_SBAddressRangeList_GetSize() argument
5308 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::GetSize",1,"lldb::SBAddressRange… in _wrap_SBAddressRangeList_GetSize()
5310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_GetSize()
5315 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAddressRangeList_GetSize()
5320 lua_error(L); in _wrap_SBAddressRangeList_GetSize()
5325 static int _wrap_SBAddressRangeList_Clear(lua_State* L) { in _wrap_SBAddressRangeList_Clear() argument
5331 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::Clear",1,"lldb::SBAddressRangeLi… in _wrap_SBAddressRangeList_Clear()
5333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_Clear()
5343 lua_error(L); in _wrap_SBAddressRangeList_Clear()
5348 static int _wrap_SBAddressRangeList_GetAddressRangeAtIndex(lua_State* L) { in _wrap_SBAddressRangeList_GetAddressRangeAtIndex() argument
5356 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::GetAddressRangeAtIndex",1,"lldb:… in _wrap_SBAddressRangeList_GetAddressRangeAtIndex()
5357 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::GetAddressRangeAtIndex",2,"uint64… in _wrap_SBAddressRangeList_GetAddressRangeAtIndex()
5359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_GetAddressRangeAtIndex()
5363 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBAddressRangeList_GetAddressRangeAtIndex()
5367 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRange,1); SWIG_arg++; in _wrap_SBAddressRangeList_GetAddressRangeAtIndex()
5373 lua_error(L); in _wrap_SBAddressRangeList_GetAddressRangeAtIndex()
5378 static int _wrap_SBAddressRangeList_Append__SWIG_0(lua_State* L) { in _wrap_SBAddressRangeList_Append__SWIG_0() argument
5385 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",1,"lldb::SBAddressRangeL… in _wrap_SBAddressRangeList_Append__SWIG_0()
5386 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",2,"lldb::SBAddressRange … in _wrap_SBAddressRangeList_Append__SWIG_0()
5388 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_Append__SWIG_0()
5393 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBAddressRangeList_Append__SWIG_0()
5403 lua_error(L); in _wrap_SBAddressRangeList_Append__SWIG_0()
5408 static int _wrap_SBAddressRangeList_Append__SWIG_1(lua_State* L) { in _wrap_SBAddressRangeList_Append__SWIG_1() argument
5415 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",1,"lldb::SBAddressRangeL… in _wrap_SBAddressRangeList_Append__SWIG_1()
5416 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::Append",2,"lldb::SBAddressRangeL… in _wrap_SBAddressRangeList_Append__SWIG_1()
5418 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_Append__SWIG_1()
5423 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_Append__SWIG_1()
5433 lua_error(L); in _wrap_SBAddressRangeList_Append__SWIG_1()
5438 static int _wrap_SBAddressRangeList_Append(lua_State* L) { in _wrap_SBAddressRangeList_Append() argument
5444 argc = lua_gettop(L); in _wrap_SBAddressRangeList_Append()
5449 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAddressRangeList_Append()
5458 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAddressRangeList_Append()
5465 return _wrap_SBAddressRangeList_Append__SWIG_0(L); in _wrap_SBAddressRangeList_Append()
5473 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAddressRangeList_Append()
5482 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAddressRangeList_Append()
5489 return _wrap_SBAddressRangeList_Append__SWIG_1(L); in _wrap_SBAddressRangeList_Append()
5494 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBAddressRangeList_Append'\n" in _wrap_SBAddressRangeList_Append()
5498 lua_error(L);return 0; in _wrap_SBAddressRangeList_Append()
5502 static int _wrap_SBAddressRangeList_GetDescription(lua_State* L) { in _wrap_SBAddressRangeList_GetDescription() argument
5511 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAddressRangeList::GetDescription",1,"lldb::SBAddre… in _wrap_SBAddressRangeList_GetDescription()
5512 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAddressRangeList::GetDescription",2,"lldb::SBStrea… in _wrap_SBAddressRangeList_GetDescription()
5513 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBAddressRangeList::GetDescription",3,"lldb::SBTarge… in _wrap_SBAddressRangeList_GetDescription()
5515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBAddressRangeList_GetDescription()
5520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBAddressRangeList_GetDescription()
5525 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBAddressRangeList_GetDescription()
5530 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAddressRangeList_GetDescription()
5535 lua_error(L); in _wrap_SBAddressRangeList_GetDescription()
5544 static int _proxy__wrap_new_SBAddressRangeList(lua_State *L) { in _proxy__wrap_new_SBAddressRangeList() argument
5545 assert(lua_istable(L,1)); in _proxy__wrap_new_SBAddressRangeList()
5546 lua_pushcfunction(L,_wrap_new_SBAddressRangeList); in _proxy__wrap_new_SBAddressRangeList()
5547 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBAddressRangeList()
5548 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBAddressRangeList()
5549 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBAddressRangeList()
5592 static int _wrap_new_SBAttachInfo__SWIG_0(lua_State* L) { in _wrap_new_SBAttachInfo__SWIG_0() argument
5599 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++; in _wrap_new_SBAttachInfo__SWIG_0()
5604 lua_error(L); in _wrap_new_SBAttachInfo__SWIG_0()
5609 static int _wrap_new_SBAttachInfo__SWIG_1(lua_State* L) { in _wrap_new_SBAttachInfo__SWIG_1() argument
5616 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"lldb::pid_t"); in _wrap_new_SBAttachInfo__SWIG_1()
5617 arg1 = (lldb::pid_t)lua_tointeger(L, 1); in _wrap_new_SBAttachInfo__SWIG_1()
5619 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++; in _wrap_new_SBAttachInfo__SWIG_1()
5624 lua_error(L); in _wrap_new_SBAttachInfo__SWIG_1()
5629 static int _wrap_new_SBAttachInfo__SWIG_2(lua_State* L) { in _wrap_new_SBAttachInfo__SWIG_2() argument
5637 … if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"char const *"); in _wrap_new_SBAttachInfo__SWIG_2()
5638 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",2,"bool"); in _wrap_new_SBAttachInfo__SWIG_2()
5639 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBAttachInfo__SWIG_2()
5640 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_new_SBAttachInfo__SWIG_2()
5642 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++; in _wrap_new_SBAttachInfo__SWIG_2()
5647 lua_error(L); in _wrap_new_SBAttachInfo__SWIG_2()
5652 static int _wrap_new_SBAttachInfo__SWIG_3(lua_State* L) { in _wrap_new_SBAttachInfo__SWIG_3() argument
5661 … if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"char const *"); in _wrap_new_SBAttachInfo__SWIG_3()
5662 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",2,"bool"); in _wrap_new_SBAttachInfo__SWIG_3()
5663 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",3,"bool"); in _wrap_new_SBAttachInfo__SWIG_3()
5664 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBAttachInfo__SWIG_3()
5665 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_new_SBAttachInfo__SWIG_3()
5666 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_new_SBAttachInfo__SWIG_3()
5668 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++; in _wrap_new_SBAttachInfo__SWIG_3()
5673 lua_error(L); in _wrap_new_SBAttachInfo__SWIG_3()
5678 static int _wrap_new_SBAttachInfo__SWIG_4(lua_State* L) { in _wrap_new_SBAttachInfo__SWIG_4() argument
5685 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SBAttachInfo",1,"lldb::SBAttachInfo co… in _wrap_new_SBAttachInfo__SWIG_4()
5687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_new_SBAttachInfo__SWIG_4()
5692 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBAttachInfo,1); SWIG_arg++; in _wrap_new_SBAttachInfo__SWIG_4()
5697 lua_error(L); in _wrap_new_SBAttachInfo__SWIG_4()
5702 static int _wrap_new_SBAttachInfo(lua_State* L) { in _wrap_new_SBAttachInfo() argument
5708 argc = lua_gettop(L); in _wrap_new_SBAttachInfo()
5710 return _wrap_new_SBAttachInfo__SWIG_0(L); in _wrap_new_SBAttachInfo()
5716 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBAttachInfo()
5723 return _wrap_new_SBAttachInfo__SWIG_4(L); in _wrap_new_SBAttachInfo()
5729 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBAttachInfo()
5732 return _wrap_new_SBAttachInfo__SWIG_1(L); in _wrap_new_SBAttachInfo()
5738 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBAttachInfo()
5742 _v = lua_isboolean(L,argv[1]); in _wrap_new_SBAttachInfo()
5745 return _wrap_new_SBAttachInfo__SWIG_2(L); in _wrap_new_SBAttachInfo()
5752 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBAttachInfo()
5756 _v = lua_isboolean(L,argv[1]); in _wrap_new_SBAttachInfo()
5760 _v = lua_isboolean(L,argv[2]); in _wrap_new_SBAttachInfo()
5763 return _wrap_new_SBAttachInfo__SWIG_3(L); in _wrap_new_SBAttachInfo()
5769 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBAttachInfo'\n" in _wrap_new_SBAttachInfo()
5776 lua_error(L);return 0; in _wrap_new_SBAttachInfo()
5780 static int _wrap_SBAttachInfo_GetProcessID(lua_State* L) { in _wrap_SBAttachInfo_GetProcessID() argument
5787 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetProcessID",1,"lldb::SBAttachInfo *"… in _wrap_SBAttachInfo_GetProcessID()
5789 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetProcessID()
5794 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetProcessID()
5799 lua_error(L); in _wrap_SBAttachInfo_GetProcessID()
5804 static int _wrap_SBAttachInfo_SetProcessID(lua_State* L) { in _wrap_SBAttachInfo_SetProcessID() argument
5811 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessID",1,"lldb::SBAttachInfo *"… in _wrap_SBAttachInfo_SetProcessID()
5812 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessID",2,"lldb::pid_t"); in _wrap_SBAttachInfo_SetProcessID()
5814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetProcessID()
5818 arg2 = (lldb::pid_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetProcessID()
5825 lua_error(L); in _wrap_SBAttachInfo_SetProcessID()
5830 static int _wrap_SBAttachInfo_SetExecutable__SWIG_0(lua_State* L) { in _wrap_SBAttachInfo_SetExecutable__SWIG_0() argument
5837 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",1,"lldb::SBAttachInfo *… in _wrap_SBAttachInfo_SetExecutable__SWIG_0()
5838 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",2,"char const *"); in _wrap_SBAttachInfo_SetExecutable__SWIG_0()
5840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetExecutable__SWIG_0()
5844 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBAttachInfo_SetExecutable__SWIG_0()
5851 lua_error(L); in _wrap_SBAttachInfo_SetExecutable__SWIG_0()
5856 static int _wrap_SBAttachInfo_SetExecutable__SWIG_1(lua_State* L) { in _wrap_SBAttachInfo_SetExecutable__SWIG_1() argument
5864 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",1,"lldb::SBAttachInfo *… in _wrap_SBAttachInfo_SetExecutable__SWIG_1()
5865 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetExecutable",2,"lldb::SBFileSpec"); in _wrap_SBAttachInfo_SetExecutable__SWIG_1()
5867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetExecutable__SWIG_1()
5872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBAttachInfo_SetExecutable__SWIG_1()
5883 lua_error(L); in _wrap_SBAttachInfo_SetExecutable__SWIG_1()
5888 static int _wrap_SBAttachInfo_SetExecutable(lua_State* L) { in _wrap_SBAttachInfo_SetExecutable() argument
5894 argc = lua_gettop(L); in _wrap_SBAttachInfo_SetExecutable()
5899 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAttachInfo_SetExecutable()
5908 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAttachInfo_SetExecutable()
5915 return _wrap_SBAttachInfo_SetExecutable__SWIG_1(L); in _wrap_SBAttachInfo_SetExecutable()
5923 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAttachInfo_SetExecutable()
5931 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBAttachInfo_SetExecutable()
5934 return _wrap_SBAttachInfo_SetExecutable__SWIG_0(L); in _wrap_SBAttachInfo_SetExecutable()
5939 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBAttachInfo_SetExecutable'\n" in _wrap_SBAttachInfo_SetExecutable()
5943 lua_error(L);return 0; in _wrap_SBAttachInfo_SetExecutable()
5947 static int _wrap_SBAttachInfo_GetWaitForLaunch(lua_State* L) { in _wrap_SBAttachInfo_GetWaitForLaunch() argument
5954 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetWaitForLaunch",1,"lldb::SBAttachInf… in _wrap_SBAttachInfo_GetWaitForLaunch()
5956 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetWaitForLaunch()
5961 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_GetWaitForLaunch()
5966 lua_error(L); in _wrap_SBAttachInfo_GetWaitForLaunch()
5971 static int _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0(lua_State* L) { in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0() argument
5978 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",1,"lldb::SBAttachInf… in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0()
5979 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",2,"bool"); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0()
5981 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0()
5985 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0()
5992 lua_error(L); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0()
5997 static int _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1(lua_State* L) { in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1() argument
6005 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",1,"lldb::SBAttachInf… in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6006 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",2,"bool"); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6007 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBAttachInfo::SetWaitForLaunch",3,"bool"); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6013 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6014 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6021 lua_error(L); in _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1()
6026 static int _wrap_SBAttachInfo_SetWaitForLaunch(lua_State* L) { in _wrap_SBAttachInfo_SetWaitForLaunch() argument
6032 argc = lua_gettop(L); in _wrap_SBAttachInfo_SetWaitForLaunch()
6037 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAttachInfo_SetWaitForLaunch()
6045 _v = lua_isboolean(L,argv[1]); in _wrap_SBAttachInfo_SetWaitForLaunch()
6048 return _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_0(L); in _wrap_SBAttachInfo_SetWaitForLaunch()
6056 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBAttachInfo_SetWaitForLaunch()
6064 _v = lua_isboolean(L,argv[1]); in _wrap_SBAttachInfo_SetWaitForLaunch()
6068 _v = lua_isboolean(L,argv[2]); in _wrap_SBAttachInfo_SetWaitForLaunch()
6071 return _wrap_SBAttachInfo_SetWaitForLaunch__SWIG_1(L); in _wrap_SBAttachInfo_SetWaitForLaunch()
6077 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBAttachInfo_SetWaitForLaunch'\… in _wrap_SBAttachInfo_SetWaitForLaunch()
6081 lua_error(L);return 0; in _wrap_SBAttachInfo_SetWaitForLaunch()
6085 static int _wrap_SBAttachInfo_GetIgnoreExisting(lua_State* L) { in _wrap_SBAttachInfo_GetIgnoreExisting() argument
6092 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetIgnoreExisting",1,"lldb::SBAttachIn… in _wrap_SBAttachInfo_GetIgnoreExisting()
6094 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetIgnoreExisting()
6099 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_GetIgnoreExisting()
6104 lua_error(L); in _wrap_SBAttachInfo_GetIgnoreExisting()
6109 static int _wrap_SBAttachInfo_SetIgnoreExisting(lua_State* L) { in _wrap_SBAttachInfo_SetIgnoreExisting() argument
6116 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetIgnoreExisting",1,"lldb::SBAttachIn… in _wrap_SBAttachInfo_SetIgnoreExisting()
6117 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetIgnoreExisting",2,"bool"); in _wrap_SBAttachInfo_SetIgnoreExisting()
6119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetIgnoreExisting()
6123 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBAttachInfo_SetIgnoreExisting()
6130 lua_error(L); in _wrap_SBAttachInfo_SetIgnoreExisting()
6135 static int _wrap_SBAttachInfo_GetResumeCount(lua_State* L) { in _wrap_SBAttachInfo_GetResumeCount() argument
6142 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetResumeCount",1,"lldb::SBAttachInfo … in _wrap_SBAttachInfo_GetResumeCount()
6144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetResumeCount()
6149 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetResumeCount()
6154 lua_error(L); in _wrap_SBAttachInfo_GetResumeCount()
6159 static int _wrap_SBAttachInfo_SetResumeCount(lua_State* L) { in _wrap_SBAttachInfo_SetResumeCount() argument
6166 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetResumeCount",1,"lldb::SBAttachInfo … in _wrap_SBAttachInfo_SetResumeCount()
6167 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetResumeCount",2,"uint32_t"); in _wrap_SBAttachInfo_SetResumeCount()
6169 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetResumeCount()
6173 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetResumeCount()
6180 lua_error(L); in _wrap_SBAttachInfo_SetResumeCount()
6185 static int _wrap_SBAttachInfo_GetProcessPluginName(lua_State* L) { in _wrap_SBAttachInfo_GetProcessPluginName() argument
6192 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetProcessPluginName",1,"lldb::SBAttac… in _wrap_SBAttachInfo_GetProcessPluginName()
6194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetProcessPluginName()
6199 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBAttachInfo_GetProcessPluginName()
6204 lua_error(L); in _wrap_SBAttachInfo_GetProcessPluginName()
6209 static int _wrap_SBAttachInfo_SetProcessPluginName(lua_State* L) { in _wrap_SBAttachInfo_SetProcessPluginName() argument
6216 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessPluginName",1,"lldb::SBAttac… in _wrap_SBAttachInfo_SetProcessPluginName()
6217 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetProcessPluginName",2,"char co… in _wrap_SBAttachInfo_SetProcessPluginName()
6219 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetProcessPluginName()
6223 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBAttachInfo_SetProcessPluginName()
6230 lua_error(L); in _wrap_SBAttachInfo_SetProcessPluginName()
6235 static int _wrap_SBAttachInfo_GetUserID(lua_State* L) { in _wrap_SBAttachInfo_GetUserID() argument
6242 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetUserID",1,"lldb::SBAttachInfo *"); in _wrap_SBAttachInfo_GetUserID()
6244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetUserID()
6249 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetUserID()
6254 lua_error(L); in _wrap_SBAttachInfo_GetUserID()
6259 static int _wrap_SBAttachInfo_GetGroupID(lua_State* L) { in _wrap_SBAttachInfo_GetGroupID() argument
6266 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetGroupID",1,"lldb::SBAttachInfo *"); in _wrap_SBAttachInfo_GetGroupID()
6268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetGroupID()
6273 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetGroupID()
6278 lua_error(L); in _wrap_SBAttachInfo_GetGroupID()
6283 static int _wrap_SBAttachInfo_UserIDIsValid(lua_State* L) { in _wrap_SBAttachInfo_UserIDIsValid() argument
6290 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::UserIDIsValid",1,"lldb::SBAttachInfo *… in _wrap_SBAttachInfo_UserIDIsValid()
6292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_UserIDIsValid()
6297 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_UserIDIsValid()
6302 lua_error(L); in _wrap_SBAttachInfo_UserIDIsValid()
6307 static int _wrap_SBAttachInfo_GroupIDIsValid(lua_State* L) { in _wrap_SBAttachInfo_GroupIDIsValid() argument
6314 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GroupIDIsValid",1,"lldb::SBAttachInfo … in _wrap_SBAttachInfo_GroupIDIsValid()
6316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GroupIDIsValid()
6321 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_GroupIDIsValid()
6326 lua_error(L); in _wrap_SBAttachInfo_GroupIDIsValid()
6331 static int _wrap_SBAttachInfo_SetUserID(lua_State* L) { in _wrap_SBAttachInfo_SetUserID() argument
6338 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetUserID",1,"lldb::SBAttachInfo *"); in _wrap_SBAttachInfo_SetUserID()
6339 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetUserID",2,"uint32_t"); in _wrap_SBAttachInfo_SetUserID()
6341 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetUserID()
6345 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetUserID()
6352 lua_error(L); in _wrap_SBAttachInfo_SetUserID()
6357 static int _wrap_SBAttachInfo_SetGroupID(lua_State* L) { in _wrap_SBAttachInfo_SetGroupID() argument
6364 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetGroupID",1,"lldb::SBAttachInfo *"); in _wrap_SBAttachInfo_SetGroupID()
6365 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetGroupID",2,"uint32_t"); in _wrap_SBAttachInfo_SetGroupID()
6367 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetGroupID()
6371 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetGroupID()
6378 lua_error(L); in _wrap_SBAttachInfo_SetGroupID()
6383 static int _wrap_SBAttachInfo_GetEffectiveUserID(lua_State* L) { in _wrap_SBAttachInfo_GetEffectiveUserID() argument
6390 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetEffectiveUserID",1,"lldb::SBAttachI… in _wrap_SBAttachInfo_GetEffectiveUserID()
6392 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetEffectiveUserID()
6397 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetEffectiveUserID()
6402 lua_error(L); in _wrap_SBAttachInfo_GetEffectiveUserID()
6407 static int _wrap_SBAttachInfo_GetEffectiveGroupID(lua_State* L) { in _wrap_SBAttachInfo_GetEffectiveGroupID() argument
6414 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetEffectiveGroupID",1,"lldb::SBAttach… in _wrap_SBAttachInfo_GetEffectiveGroupID()
6416 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetEffectiveGroupID()
6421 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetEffectiveGroupID()
6426 lua_error(L); in _wrap_SBAttachInfo_GetEffectiveGroupID()
6431 static int _wrap_SBAttachInfo_EffectiveUserIDIsValid(lua_State* L) { in _wrap_SBAttachInfo_EffectiveUserIDIsValid() argument
6438 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::EffectiveUserIDIsValid",1,"lldb::SBAtt… in _wrap_SBAttachInfo_EffectiveUserIDIsValid()
6440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_EffectiveUserIDIsValid()
6445 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_EffectiveUserIDIsValid()
6450 lua_error(L); in _wrap_SBAttachInfo_EffectiveUserIDIsValid()
6455 static int _wrap_SBAttachInfo_EffectiveGroupIDIsValid(lua_State* L) { in _wrap_SBAttachInfo_EffectiveGroupIDIsValid() argument
6462 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::EffectiveGroupIDIsValid",1,"lldb::SBAt… in _wrap_SBAttachInfo_EffectiveGroupIDIsValid()
6464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_EffectiveGroupIDIsValid()
6469 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_EffectiveGroupIDIsValid()
6474 lua_error(L); in _wrap_SBAttachInfo_EffectiveGroupIDIsValid()
6479 static int _wrap_SBAttachInfo_SetEffectiveUserID(lua_State* L) { in _wrap_SBAttachInfo_SetEffectiveUserID() argument
6486 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveUserID",1,"lldb::SBAttachI… in _wrap_SBAttachInfo_SetEffectiveUserID()
6487 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveUserID",2,"uint32_t"); in _wrap_SBAttachInfo_SetEffectiveUserID()
6489 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetEffectiveUserID()
6493 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetEffectiveUserID()
6500 lua_error(L); in _wrap_SBAttachInfo_SetEffectiveUserID()
6505 static int _wrap_SBAttachInfo_SetEffectiveGroupID(lua_State* L) { in _wrap_SBAttachInfo_SetEffectiveGroupID() argument
6512 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveGroupID",1,"lldb::SBAttach… in _wrap_SBAttachInfo_SetEffectiveGroupID()
6513 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetEffectiveGroupID",2,"uint32_t"); in _wrap_SBAttachInfo_SetEffectiveGroupID()
6515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetEffectiveGroupID()
6519 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetEffectiveGroupID()
6526 lua_error(L); in _wrap_SBAttachInfo_SetEffectiveGroupID()
6531 static int _wrap_SBAttachInfo_GetParentProcessID(lua_State* L) { in _wrap_SBAttachInfo_GetParentProcessID() argument
6538 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetParentProcessID",1,"lldb::SBAttachI… in _wrap_SBAttachInfo_GetParentProcessID()
6540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetParentProcessID()
6545 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBAttachInfo_GetParentProcessID()
6550 lua_error(L); in _wrap_SBAttachInfo_GetParentProcessID()
6555 static int _wrap_SBAttachInfo_SetParentProcessID(lua_State* L) { in _wrap_SBAttachInfo_SetParentProcessID() argument
6562 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetParentProcessID",1,"lldb::SBAttachI… in _wrap_SBAttachInfo_SetParentProcessID()
6563 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetParentProcessID",2,"lldb::pid_t"); in _wrap_SBAttachInfo_SetParentProcessID()
6565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetParentProcessID()
6569 arg2 = (lldb::pid_t)lua_tointeger(L, 2); in _wrap_SBAttachInfo_SetParentProcessID()
6576 lua_error(L); in _wrap_SBAttachInfo_SetParentProcessID()
6581 static int _wrap_SBAttachInfo_ParentProcessIDIsValid(lua_State* L) { in _wrap_SBAttachInfo_ParentProcessIDIsValid() argument
6588 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::ParentProcessIDIsValid",1,"lldb::SBAtt… in _wrap_SBAttachInfo_ParentProcessIDIsValid()
6590 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_ParentProcessIDIsValid()
6595 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBAttachInfo_ParentProcessIDIsValid()
6600 lua_error(L); in _wrap_SBAttachInfo_ParentProcessIDIsValid()
6605 static int _wrap_SBAttachInfo_GetListener(lua_State* L) { in _wrap_SBAttachInfo_GetListener() argument
6612 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetListener",1,"lldb::SBAttachInfo *"); in _wrap_SBAttachInfo_GetListener()
6614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetListener()
6621 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_SBAttachInfo_GetListener()
6627 lua_error(L); in _wrap_SBAttachInfo_GetListener()
6632 static int _wrap_SBAttachInfo_SetListener(lua_State* L) { in _wrap_SBAttachInfo_SetListener() argument
6639 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetListener",1,"lldb::SBAttachInfo *"); in _wrap_SBAttachInfo_SetListener()
6640 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetListener",2,"lldb::SBListener &"); in _wrap_SBAttachInfo_SetListener()
6642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetListener()
6647 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBAttachInfo_SetListener()
6657 lua_error(L); in _wrap_SBAttachInfo_SetListener()
6662 static int _wrap_SBAttachInfo_GetShadowListener(lua_State* L) { in _wrap_SBAttachInfo_GetShadowListener() argument
6669 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetShadowListener",1,"lldb::SBAttachIn… in _wrap_SBAttachInfo_GetShadowListener()
6671 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetShadowListener()
6678 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_SBAttachInfo_GetShadowListener()
6684 lua_error(L); in _wrap_SBAttachInfo_GetShadowListener()
6689 static int _wrap_SBAttachInfo_SetShadowListener(lua_State* L) { in _wrap_SBAttachInfo_SetShadowListener() argument
6696 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetShadowListener",1,"lldb::SBAttachIn… in _wrap_SBAttachInfo_SetShadowListener()
6697 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetShadowListener",2,"lldb::SBListener… in _wrap_SBAttachInfo_SetShadowListener()
6699 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetShadowListener()
6704 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBAttachInfo_SetShadowListener()
6714 lua_error(L); in _wrap_SBAttachInfo_SetShadowListener()
6719 static int _wrap_SBAttachInfo_GetScriptedProcessClassName(lua_State* L) { in _wrap_SBAttachInfo_GetScriptedProcessClassName() argument
6726 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetScriptedProcessClassName",1,"lldb::… in _wrap_SBAttachInfo_GetScriptedProcessClassName()
6728 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetScriptedProcessClassName()
6733 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBAttachInfo_GetScriptedProcessClassName()
6738 lua_error(L); in _wrap_SBAttachInfo_GetScriptedProcessClassName()
6743 static int _wrap_SBAttachInfo_SetScriptedProcessClassName(lua_State* L) { in _wrap_SBAttachInfo_SetScriptedProcessClassName() argument
6750 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessClassName",1,"lldb::… in _wrap_SBAttachInfo_SetScriptedProcessClassName()
6751 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessClassName",2,"… in _wrap_SBAttachInfo_SetScriptedProcessClassName()
6753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetScriptedProcessClassName()
6757 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBAttachInfo_SetScriptedProcessClassName()
6764 lua_error(L); in _wrap_SBAttachInfo_SetScriptedProcessClassName()
6769 static int _wrap_SBAttachInfo_GetScriptedProcessDictionary(lua_State* L) { in _wrap_SBAttachInfo_GetScriptedProcessDictionary() argument
6776 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::GetScriptedProcessDictionary",1,"lldb:… in _wrap_SBAttachInfo_GetScriptedProcessDictionary()
6778 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_GetScriptedProcessDictionary()
6785 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBAttachInfo_GetScriptedProcessDictionary()
6791 lua_error(L); in _wrap_SBAttachInfo_GetScriptedProcessDictionary()
6796 static int _wrap_SBAttachInfo_SetScriptedProcessDictionary(lua_State* L) { in _wrap_SBAttachInfo_SetScriptedProcessDictionary() argument
6804 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessDictionary",1,"lldb:… in _wrap_SBAttachInfo_SetScriptedProcessDictionary()
6805 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBAttachInfo::SetScriptedProcessDictionary",2,"lldb:… in _wrap_SBAttachInfo_SetScriptedProcessDictionary()
6807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBAttachInfo_SetScriptedProcessDictionary()
6812 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBAttachInfo_SetScriptedProcessDictionary()
6823 lua_error(L); in _wrap_SBAttachInfo_SetScriptedProcessDictionary()
6832 static int _proxy__wrap_new_SBAttachInfo(lua_State *L) { in _proxy__wrap_new_SBAttachInfo() argument
6833 assert(lua_istable(L,1)); in _proxy__wrap_new_SBAttachInfo()
6834 lua_pushcfunction(L,_wrap_new_SBAttachInfo); in _proxy__wrap_new_SBAttachInfo()
6835 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBAttachInfo()
6836 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBAttachInfo()
6837 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBAttachInfo()
6909 static int _wrap_new_SBBlock__SWIG_0(lua_State* L) { in _wrap_new_SBBlock__SWIG_0() argument
6916 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_new_SBBlock__SWIG_0()
6921 lua_error(L); in _wrap_new_SBBlock__SWIG_0()
6926 static int _wrap_new_SBBlock__SWIG_1(lua_State* L) { in _wrap_new_SBBlock__SWIG_1() argument
6933 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBlock::SBBlock",1,"lldb::SBBlock const &"); in _wrap_new_SBBlock__SWIG_1()
6935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_new_SBBlock__SWIG_1()
6940 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_new_SBBlock__SWIG_1()
6945 lua_error(L); in _wrap_new_SBBlock__SWIG_1()
6950 static int _wrap_new_SBBlock(lua_State* L) { in _wrap_new_SBBlock() argument
6956 argc = lua_gettop(L); in _wrap_new_SBBlock()
6958 return _wrap_new_SBBlock__SWIG_0(L); in _wrap_new_SBBlock()
6964 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBlock()
6971 return _wrap_new_SBBlock__SWIG_1(L); in _wrap_new_SBBlock()
6975 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBlock'\n" in _wrap_new_SBBlock()
6979 lua_error(L);return 0; in _wrap_new_SBBlock()
6983 static int _wrap_SBBlock_IsInlined(lua_State* L) { in _wrap_SBBlock_IsInlined() argument
6990 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::IsInlined",1,"lldb::SBBlock const *"); in _wrap_SBBlock_IsInlined()
6992 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_IsInlined()
6997 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBlock_IsInlined()
7002 lua_error(L); in _wrap_SBBlock_IsInlined()
7007 static int _wrap_SBBlock_IsValid(lua_State* L) { in _wrap_SBBlock_IsValid() argument
7014 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::IsValid",1,"lldb::SBBlock const *"); in _wrap_SBBlock_IsValid()
7016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_IsValid()
7021 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBlock_IsValid()
7026 lua_error(L); in _wrap_SBBlock_IsValid()
7031 static int _wrap_SBBlock_GetInlinedName(lua_State* L) { in _wrap_SBBlock_GetInlinedName() argument
7038 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedName",1,"lldb::SBBlock const *"); in _wrap_SBBlock_GetInlinedName()
7040 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetInlinedName()
7045 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBlock_GetInlinedName()
7050 lua_error(L); in _wrap_SBBlock_GetInlinedName()
7055 static int _wrap_SBBlock_GetInlinedCallSiteFile(lua_State* L) { in _wrap_SBBlock_GetInlinedCallSiteFile() argument
7062 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedCallSiteFile",1,"lldb::SBBlock co… in _wrap_SBBlock_GetInlinedCallSiteFile()
7064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetInlinedCallSiteFile()
7071 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBBlock_GetInlinedCallSiteFile()
7077 lua_error(L); in _wrap_SBBlock_GetInlinedCallSiteFile()
7082 static int _wrap_SBBlock_GetInlinedCallSiteLine(lua_State* L) { in _wrap_SBBlock_GetInlinedCallSiteLine() argument
7089 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedCallSiteLine",1,"lldb::SBBlock co… in _wrap_SBBlock_GetInlinedCallSiteLine()
7091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetInlinedCallSiteLine()
7096 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBlock_GetInlinedCallSiteLine()
7101 lua_error(L); in _wrap_SBBlock_GetInlinedCallSiteLine()
7106 static int _wrap_SBBlock_GetInlinedCallSiteColumn(lua_State* L) { in _wrap_SBBlock_GetInlinedCallSiteColumn() argument
7113 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetInlinedCallSiteColumn",1,"lldb::SBBlock … in _wrap_SBBlock_GetInlinedCallSiteColumn()
7115 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetInlinedCallSiteColumn()
7120 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBlock_GetInlinedCallSiteColumn()
7125 lua_error(L); in _wrap_SBBlock_GetInlinedCallSiteColumn()
7130 static int _wrap_SBBlock_GetParent(lua_State* L) { in _wrap_SBBlock_GetParent() argument
7137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetParent",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetParent()
7139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetParent()
7146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBBlock_GetParent()
7152 lua_error(L); in _wrap_SBBlock_GetParent()
7157 static int _wrap_SBBlock_GetSibling(lua_State* L) { in _wrap_SBBlock_GetSibling() argument
7164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetSibling",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetSibling()
7166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetSibling()
7173 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBBlock_GetSibling()
7179 lua_error(L); in _wrap_SBBlock_GetSibling()
7184 static int _wrap_SBBlock_GetFirstChild(lua_State* L) { in _wrap_SBBlock_GetFirstChild() argument
7191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetFirstChild",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetFirstChild()
7193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetFirstChild()
7200 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBBlock_GetFirstChild()
7206 lua_error(L); in _wrap_SBBlock_GetFirstChild()
7211 static int _wrap_SBBlock_GetNumRanges(lua_State* L) { in _wrap_SBBlock_GetNumRanges() argument
7218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetNumRanges",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetNumRanges()
7220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetNumRanges()
7225 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBlock_GetNumRanges()
7230 lua_error(L); in _wrap_SBBlock_GetNumRanges()
7235 static int _wrap_SBBlock_GetRangeStartAddress(lua_State* L) { in _wrap_SBBlock_GetRangeStartAddress() argument
7243 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRangeStartAddress",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetRangeStartAddress()
7244 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBlock::GetRangeStartAddress",2,"uint32_t"); in _wrap_SBBlock_GetRangeStartAddress()
7246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetRangeStartAddress()
7250 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBlock_GetRangeStartAddress()
7254 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBBlock_GetRangeStartAddress()
7260 lua_error(L); in _wrap_SBBlock_GetRangeStartAddress()
7265 static int _wrap_SBBlock_GetRangeEndAddress(lua_State* L) { in _wrap_SBBlock_GetRangeEndAddress() argument
7273 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRangeEndAddress",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetRangeEndAddress()
7274 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBlock::GetRangeEndAddress",2,"uint32_t"); in _wrap_SBBlock_GetRangeEndAddress()
7276 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetRangeEndAddress()
7280 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBlock_GetRangeEndAddress()
7284 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBBlock_GetRangeEndAddress()
7290 lua_error(L); in _wrap_SBBlock_GetRangeEndAddress()
7295 static int _wrap_SBBlock_GetRanges(lua_State* L) { in _wrap_SBBlock_GetRanges() argument
7302 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRanges",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetRanges()
7304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetRanges()
7311 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++; in _wrap_SBBlock_GetRanges()
7317 lua_error(L); in _wrap_SBBlock_GetRanges()
7322 static int _wrap_SBBlock_GetRangeIndexForBlockAddress(lua_State* L) { in _wrap_SBBlock_GetRangeIndexForBlockAddress() argument
7331 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetRangeIndexForBlockAddress",1,"lldb::SBBl… in _wrap_SBBlock_GetRangeIndexForBlockAddress()
7332 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetRangeIndexForBlockAddress",2,"lldb::SBAd… in _wrap_SBBlock_GetRangeIndexForBlockAddress()
7334 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetRangeIndexForBlockAddress()
7339 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBBlock_GetRangeIndexForBlockAddress()
7345 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBlock_GetRangeIndexForBlockAddress()
7350 lua_error(L); in _wrap_SBBlock_GetRangeIndexForBlockAddress()
7355 static int _wrap_SBBlock_GetVariables__SWIG_0(lua_State* L) { in _wrap_SBBlock_GetVariables__SWIG_0() argument
7367 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetVariables",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetVariables__SWIG_0()
7368 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetVariables",2,"lldb::SBFrame &"); in _wrap_SBBlock_GetVariables__SWIG_0()
7369 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBlock::GetVariables",3,"bool"); in _wrap_SBBlock_GetVariables__SWIG_0()
7370 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBBlock::GetVariables",4,"bool"); in _wrap_SBBlock_GetVariables__SWIG_0()
7371 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBBlock::GetVariables",5,"bool"); in _wrap_SBBlock_GetVariables__SWIG_0()
7372 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBBlock::GetVariables",6,"lldb::DynamicValueType"); in _wrap_SBBlock_GetVariables__SWIG_0()
7374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetVariables__SWIG_0()
7379 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBBlock_GetVariables__SWIG_0()
7383 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBBlock_GetVariables__SWIG_0()
7384 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBBlock_GetVariables__SWIG_0()
7385 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBBlock_GetVariables__SWIG_0()
7386 arg6 = (lldb::DynamicValueType)lua_tointeger(L, 6); in _wrap_SBBlock_GetVariables__SWIG_0()
7390 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBBlock_GetVariables__SWIG_0()
7396 lua_error(L); in _wrap_SBBlock_GetVariables__SWIG_0()
7401 static int _wrap_SBBlock_GetVariables__SWIG_1(lua_State* L) { in _wrap_SBBlock_GetVariables__SWIG_1() argument
7412 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetVariables",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetVariables__SWIG_1()
7413 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetVariables",2,"lldb::SBTarget &"); in _wrap_SBBlock_GetVariables__SWIG_1()
7414 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBlock::GetVariables",3,"bool"); in _wrap_SBBlock_GetVariables__SWIG_1()
7415 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBBlock::GetVariables",4,"bool"); in _wrap_SBBlock_GetVariables__SWIG_1()
7416 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBBlock::GetVariables",5,"bool"); in _wrap_SBBlock_GetVariables__SWIG_1()
7418 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetVariables__SWIG_1()
7423 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBBlock_GetVariables__SWIG_1()
7427 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBBlock_GetVariables__SWIG_1()
7428 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBBlock_GetVariables__SWIG_1()
7429 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBBlock_GetVariables__SWIG_1()
7433 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBBlock_GetVariables__SWIG_1()
7439 lua_error(L); in _wrap_SBBlock_GetVariables__SWIG_1()
7444 static int _wrap_SBBlock_GetVariables(lua_State* L) { in _wrap_SBBlock_GetVariables() argument
7450 argc = lua_gettop(L); in _wrap_SBBlock_GetVariables()
7455 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBlock_GetVariables()
7464 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBlock_GetVariables()
7472 _v = lua_isboolean(L,argv[2]); in _wrap_SBBlock_GetVariables()
7476 _v = lua_isboolean(L,argv[3]); in _wrap_SBBlock_GetVariables()
7480 _v = lua_isboolean(L,argv[4]); in _wrap_SBBlock_GetVariables()
7483 return _wrap_SBBlock_GetVariables__SWIG_1(L); in _wrap_SBBlock_GetVariables()
7494 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBlock_GetVariables()
7503 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBlock_GetVariables()
7511 _v = lua_isboolean(L,argv[2]); in _wrap_SBBlock_GetVariables()
7515 _v = lua_isboolean(L,argv[3]); in _wrap_SBBlock_GetVariables()
7519 _v = lua_isboolean(L,argv[4]); in _wrap_SBBlock_GetVariables()
7523 _v = lua_isnumber(L,argv[5]); in _wrap_SBBlock_GetVariables()
7526 return _wrap_SBBlock_GetVariables__SWIG_0(L); in _wrap_SBBlock_GetVariables()
7535 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBlock_GetVariables'\n" in _wrap_SBBlock_GetVariables()
7539 lua_error(L);return 0; in _wrap_SBBlock_GetVariables()
7543 static int _wrap_SBBlock_GetContainingInlinedBlock(lua_State* L) { in _wrap_SBBlock_GetContainingInlinedBlock() argument
7550 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetContainingInlinedBlock",1,"lldb::SBBlock… in _wrap_SBBlock_GetContainingInlinedBlock()
7552 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetContainingInlinedBlock()
7559 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBBlock_GetContainingInlinedBlock()
7565 lua_error(L); in _wrap_SBBlock_GetContainingInlinedBlock()
7570 static int _wrap_SBBlock_GetDescription(lua_State* L) { in _wrap_SBBlock_GetDescription() argument
7578 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::GetDescription",1,"lldb::SBBlock *"); in _wrap_SBBlock_GetDescription()
7579 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBlock::GetDescription",2,"lldb::SBStream &"); in _wrap_SBBlock_GetDescription()
7581 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock_GetDescription()
7586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBBlock_GetDescription()
7591 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBlock_GetDescription()
7596 lua_error(L); in _wrap_SBBlock_GetDescription()
7601 static int _wrap_SBBlock___tostring(lua_State* L) { in _wrap_SBBlock___tostring() argument
7608 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBlock::__repr__",1,"lldb::SBBlock *"); in _wrap_SBBlock___tostring()
7610 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBBlock___tostring()
7615 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBBlock___tostring()
7620 lua_error(L); in _wrap_SBBlock___tostring()
7629 static int _proxy__wrap_new_SBBlock(lua_State *L) { in _proxy__wrap_new_SBBlock() argument
7630 assert(lua_istable(L,1)); in _proxy__wrap_new_SBBlock()
7631 lua_pushcfunction(L,_wrap_new_SBBlock); in _proxy__wrap_new_SBBlock()
7632 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBBlock()
7633 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBBlock()
7634 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBBlock()
7691 static int _wrap_new_SBBreakpoint__SWIG_0(lua_State* L) { in _wrap_new_SBBreakpoint__SWIG_0() argument
7698 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_new_SBBreakpoint__SWIG_0()
7703 lua_error(L); in _wrap_new_SBBreakpoint__SWIG_0()
7708 static int _wrap_new_SBBreakpoint__SWIG_1(lua_State* L) { in _wrap_new_SBBreakpoint__SWIG_1() argument
7715 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SBBreakpoint",1,"lldb::SBBreakpoint co… in _wrap_new_SBBreakpoint__SWIG_1()
7717 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_new_SBBreakpoint__SWIG_1()
7722 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_new_SBBreakpoint__SWIG_1()
7727 lua_error(L); in _wrap_new_SBBreakpoint__SWIG_1()
7732 static int _wrap_new_SBBreakpoint(lua_State* L) { in _wrap_new_SBBreakpoint() argument
7738 argc = lua_gettop(L); in _wrap_new_SBBreakpoint()
7740 return _wrap_new_SBBreakpoint__SWIG_0(L); in _wrap_new_SBBreakpoint()
7746 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBreakpoint()
7753 return _wrap_new_SBBreakpoint__SWIG_1(L); in _wrap_new_SBBreakpoint()
7757 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBreakpoint'\n" in _wrap_new_SBBreakpoint()
7761 lua_error(L);return 0; in _wrap_new_SBBreakpoint()
7765 static int _wrap_SBBreakpoint___eq(lua_State* L) { in _wrap_SBBreakpoint___eq() argument
7773 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::operator ==",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint___eq()
7774 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::operator ==",2,"lldb::SBBreakpoint con… in _wrap_SBBreakpoint___eq()
7776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint___eq()
7781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint___eq()
7786 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint___eq()
7791 lua_error(L); in _wrap_SBBreakpoint___eq()
7796 static int _wrap_SBBreakpoint_GetID(lua_State* L) { in _wrap_SBBreakpoint_GetID() argument
7803 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetID",1,"lldb::SBBreakpoint const *"); in _wrap_SBBreakpoint_GetID()
7805 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetID()
7810 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetID()
7815 lua_error(L); in _wrap_SBBreakpoint_GetID()
7820 static int _wrap_SBBreakpoint_IsValid(lua_State* L) { in _wrap_SBBreakpoint_IsValid() argument
7827 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsValid",1,"lldb::SBBreakpoint const *… in _wrap_SBBreakpoint_IsValid()
7829 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_IsValid()
7834 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_IsValid()
7839 lua_error(L); in _wrap_SBBreakpoint_IsValid()
7844 static int _wrap_SBBreakpoint_ClearAllBreakpointSites(lua_State* L) { in _wrap_SBBreakpoint_ClearAllBreakpointSites() argument
7850 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::ClearAllBreakpointSites",1,"lldb::SBBr… in _wrap_SBBreakpoint_ClearAllBreakpointSites()
7852 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_ClearAllBreakpointSites()
7862 lua_error(L); in _wrap_SBBreakpoint_ClearAllBreakpointSites()
7867 static int _wrap_SBBreakpoint_GetTarget(lua_State* L) { in _wrap_SBBreakpoint_GetTarget() argument
7874 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetTarget",1,"lldb::SBBreakpoint const… in _wrap_SBBreakpoint_GetTarget()
7876 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetTarget()
7883 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBBreakpoint_GetTarget()
7889 lua_error(L); in _wrap_SBBreakpoint_GetTarget()
7894 static int _wrap_SBBreakpoint_FindLocationByAddress(lua_State* L) { in _wrap_SBBreakpoint_FindLocationByAddress() argument
7902 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByAddress",1,"lldb::SBBrea… in _wrap_SBBreakpoint_FindLocationByAddress()
7903 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByAddress",2,"lldb::addr_t"… in _wrap_SBBreakpoint_FindLocationByAddress()
7905 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_FindLocationByAddress()
7909 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_FindLocationByAddress()
7913 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++; in _wrap_SBBreakpoint_FindLocationByAddress()
7919 lua_error(L); in _wrap_SBBreakpoint_FindLocationByAddress()
7924 static int _wrap_SBBreakpoint_FindLocationIDByAddress(lua_State* L) { in _wrap_SBBreakpoint_FindLocationIDByAddress() argument
7932 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationIDByAddress",1,"lldb::SBBr… in _wrap_SBBreakpoint_FindLocationIDByAddress()
7933 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationIDByAddress",2,"lldb::addr_… in _wrap_SBBreakpoint_FindLocationIDByAddress()
7935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_FindLocationIDByAddress()
7939 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_FindLocationIDByAddress()
7941 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_FindLocationIDByAddress()
7946 lua_error(L); in _wrap_SBBreakpoint_FindLocationIDByAddress()
7951 static int _wrap_SBBreakpoint_FindLocationByID(lua_State* L) { in _wrap_SBBreakpoint_FindLocationByID() argument
7959 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByID",1,"lldb::SBBreakpoin… in _wrap_SBBreakpoint_FindLocationByID()
7960 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::FindLocationByID",2,"lldb::break_id_t"); in _wrap_SBBreakpoint_FindLocationByID()
7962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_FindLocationByID()
7966 arg2 = (lldb::break_id_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_FindLocationByID()
7970 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++; in _wrap_SBBreakpoint_FindLocationByID()
7976 lua_error(L); in _wrap_SBBreakpoint_FindLocationByID()
7981 static int _wrap_SBBreakpoint_GetLocationAtIndex(lua_State* L) { in _wrap_SBBreakpoint_GetLocationAtIndex() argument
7989 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetLocationAtIndex",1,"lldb::SBBreakpo… in _wrap_SBBreakpoint_GetLocationAtIndex()
7990 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetLocationAtIndex",2,"uint32_t"); in _wrap_SBBreakpoint_GetLocationAtIndex()
7992 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetLocationAtIndex()
7996 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_GetLocationAtIndex()
8000 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++; in _wrap_SBBreakpoint_GetLocationAtIndex()
8006 lua_error(L); in _wrap_SBBreakpoint_GetLocationAtIndex()
8011 static int _wrap_SBBreakpoint_SetEnabled(lua_State* L) { in _wrap_SBBreakpoint_SetEnabled() argument
8018 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetEnabled",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_SetEnabled()
8019 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetEnabled",2,"bool"); in _wrap_SBBreakpoint_SetEnabled()
8021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetEnabled()
8025 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpoint_SetEnabled()
8032 lua_error(L); in _wrap_SBBreakpoint_SetEnabled()
8037 static int _wrap_SBBreakpoint_IsEnabled(lua_State* L) { in _wrap_SBBreakpoint_IsEnabled() argument
8044 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsEnabled",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_IsEnabled()
8046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_IsEnabled()
8051 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_IsEnabled()
8056 lua_error(L); in _wrap_SBBreakpoint_IsEnabled()
8061 static int _wrap_SBBreakpoint_SetOneShot(lua_State* L) { in _wrap_SBBreakpoint_SetOneShot() argument
8068 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetOneShot",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_SetOneShot()
8069 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetOneShot",2,"bool"); in _wrap_SBBreakpoint_SetOneShot()
8071 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetOneShot()
8075 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpoint_SetOneShot()
8082 lua_error(L); in _wrap_SBBreakpoint_SetOneShot()
8087 static int _wrap_SBBreakpoint_IsOneShot(lua_State* L) { in _wrap_SBBreakpoint_IsOneShot() argument
8094 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsOneShot",1,"lldb::SBBreakpoint const… in _wrap_SBBreakpoint_IsOneShot()
8096 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_IsOneShot()
8101 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_IsOneShot()
8106 lua_error(L); in _wrap_SBBreakpoint_IsOneShot()
8111 static int _wrap_SBBreakpoint_IsInternal(lua_State* L) { in _wrap_SBBreakpoint_IsInternal() argument
8118 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsInternal",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_IsInternal()
8120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_IsInternal()
8125 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_IsInternal()
8130 lua_error(L); in _wrap_SBBreakpoint_IsInternal()
8135 static int _wrap_SBBreakpoint_GetHitCount(lua_State* L) { in _wrap_SBBreakpoint_GetHitCount() argument
8142 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetHitCount",1,"lldb::SBBreakpoint con… in _wrap_SBBreakpoint_GetHitCount()
8144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetHitCount()
8149 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetHitCount()
8154 lua_error(L); in _wrap_SBBreakpoint_GetHitCount()
8159 static int _wrap_SBBreakpoint_SetIgnoreCount(lua_State* L) { in _wrap_SBBreakpoint_SetIgnoreCount() argument
8166 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetIgnoreCount",1,"lldb::SBBreakpoint … in _wrap_SBBreakpoint_SetIgnoreCount()
8167 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetIgnoreCount",2,"uint32_t"); in _wrap_SBBreakpoint_SetIgnoreCount()
8169 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetIgnoreCount()
8173 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_SetIgnoreCount()
8180 lua_error(L); in _wrap_SBBreakpoint_SetIgnoreCount()
8185 static int _wrap_SBBreakpoint_GetIgnoreCount(lua_State* L) { in _wrap_SBBreakpoint_GetIgnoreCount() argument
8192 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetIgnoreCount",1,"lldb::SBBreakpoint … in _wrap_SBBreakpoint_GetIgnoreCount()
8194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetIgnoreCount()
8199 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetIgnoreCount()
8204 lua_error(L); in _wrap_SBBreakpoint_GetIgnoreCount()
8209 static int _wrap_SBBreakpoint_SetCondition(lua_State* L) { in _wrap_SBBreakpoint_SetCondition() argument
8216 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetCondition",1,"lldb::SBBreakpoint *"… in _wrap_SBBreakpoint_SetCondition()
8217 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetCondition",2,"char const *"); in _wrap_SBBreakpoint_SetCondition()
8219 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetCondition()
8223 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_SetCondition()
8230 lua_error(L); in _wrap_SBBreakpoint_SetCondition()
8235 static int _wrap_SBBreakpoint_GetCondition(lua_State* L) { in _wrap_SBBreakpoint_GetCondition() argument
8242 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetCondition",1,"lldb::SBBreakpoint *"… in _wrap_SBBreakpoint_GetCondition()
8244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetCondition()
8249 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpoint_GetCondition()
8254 lua_error(L); in _wrap_SBBreakpoint_GetCondition()
8259 static int _wrap_SBBreakpoint_SetAutoContinue(lua_State* L) { in _wrap_SBBreakpoint_SetAutoContinue() argument
8266 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetAutoContinue",1,"lldb::SBBreakpoint… in _wrap_SBBreakpoint_SetAutoContinue()
8267 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetAutoContinue",2,"bool"); in _wrap_SBBreakpoint_SetAutoContinue()
8269 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetAutoContinue()
8273 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpoint_SetAutoContinue()
8280 lua_error(L); in _wrap_SBBreakpoint_SetAutoContinue()
8285 static int _wrap_SBBreakpoint_GetAutoContinue(lua_State* L) { in _wrap_SBBreakpoint_GetAutoContinue() argument
8292 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetAutoContinue",1,"lldb::SBBreakpoint… in _wrap_SBBreakpoint_GetAutoContinue()
8294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetAutoContinue()
8299 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_GetAutoContinue()
8304 lua_error(L); in _wrap_SBBreakpoint_GetAutoContinue()
8309 static int _wrap_SBBreakpoint_SetThreadID(lua_State* L) { in _wrap_SBBreakpoint_SetThreadID() argument
8316 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadID",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_SetThreadID()
8317 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadID",2,"lldb::tid_t"); in _wrap_SBBreakpoint_SetThreadID()
8319 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetThreadID()
8323 arg2 = (lldb::tid_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_SetThreadID()
8330 lua_error(L); in _wrap_SBBreakpoint_SetThreadID()
8335 static int _wrap_SBBreakpoint_GetThreadID(lua_State* L) { in _wrap_SBBreakpoint_GetThreadID() argument
8342 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetThreadID",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_GetThreadID()
8344 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetThreadID()
8349 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetThreadID()
8354 lua_error(L); in _wrap_SBBreakpoint_GetThreadID()
8359 static int _wrap_SBBreakpoint_SetThreadIndex(lua_State* L) { in _wrap_SBBreakpoint_SetThreadIndex() argument
8366 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadIndex",1,"lldb::SBBreakpoint … in _wrap_SBBreakpoint_SetThreadIndex()
8367 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadIndex",2,"uint32_t"); in _wrap_SBBreakpoint_SetThreadIndex()
8369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetThreadIndex()
8373 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_SetThreadIndex()
8380 lua_error(L); in _wrap_SBBreakpoint_SetThreadIndex()
8385 static int _wrap_SBBreakpoint_GetThreadIndex(lua_State* L) { in _wrap_SBBreakpoint_GetThreadIndex() argument
8392 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetThreadIndex",1,"lldb::SBBreakpoint … in _wrap_SBBreakpoint_GetThreadIndex()
8394 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetThreadIndex()
8399 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetThreadIndex()
8404 lua_error(L); in _wrap_SBBreakpoint_GetThreadIndex()
8409 static int _wrap_SBBreakpoint_SetThreadName(lua_State* L) { in _wrap_SBBreakpoint_SetThreadName() argument
8416 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadName",1,"lldb::SBBreakpoint *… in _wrap_SBBreakpoint_SetThreadName()
8417 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetThreadName",2,"char const *"); in _wrap_SBBreakpoint_SetThreadName()
8419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetThreadName()
8423 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_SetThreadName()
8430 lua_error(L); in _wrap_SBBreakpoint_SetThreadName()
8435 static int _wrap_SBBreakpoint_GetThreadName(lua_State* L) { in _wrap_SBBreakpoint_GetThreadName() argument
8442 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetThreadName",1,"lldb::SBBreakpoint c… in _wrap_SBBreakpoint_GetThreadName()
8444 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetThreadName()
8449 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpoint_GetThreadName()
8454 lua_error(L); in _wrap_SBBreakpoint_GetThreadName()
8459 static int _wrap_SBBreakpoint_SetQueueName(lua_State* L) { in _wrap_SBBreakpoint_SetQueueName() argument
8466 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetQueueName",1,"lldb::SBBreakpoint *"… in _wrap_SBBreakpoint_SetQueueName()
8467 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetQueueName",2,"char const *"); in _wrap_SBBreakpoint_SetQueueName()
8469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetQueueName()
8473 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_SetQueueName()
8480 lua_error(L); in _wrap_SBBreakpoint_SetQueueName()
8485 static int _wrap_SBBreakpoint_GetQueueName(lua_State* L) { in _wrap_SBBreakpoint_GetQueueName() argument
8492 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetQueueName",1,"lldb::SBBreakpoint co… in _wrap_SBBreakpoint_GetQueueName()
8494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetQueueName()
8499 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpoint_GetQueueName()
8504 lua_error(L); in _wrap_SBBreakpoint_GetQueueName()
8509 static int _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0(lua_State* L) { in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0() argument
8516 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",1,"lldb::SB… in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0()
8517 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",2,"ch… in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0()
8519 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0()
8523 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0()
8530 lua_error(L); in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0()
8535 static int _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1(lua_State* L) { in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1() argument
8544 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",1,"lldb::SB… in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8545 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",2,"ch… in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8546 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackFunction",3,"lldb::SB… in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8552 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8554 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8561 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8567 lua_error(L); in _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1()
8572 static int _wrap_SBBreakpoint_SetScriptCallbackFunction(lua_State* L) { in _wrap_SBBreakpoint_SetScriptCallbackFunction() argument
8578 argc = lua_gettop(L); in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8583 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8591 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8594 return _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_0(L); in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8602 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8610 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8615 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8622 return _wrap_SBBreakpoint_SetScriptCallbackFunction__SWIG_1(L); in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8628 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpoint_SetScriptCallbackF… in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8632 lua_error(L);return 0; in _wrap_SBBreakpoint_SetScriptCallbackFunction()
8636 static int _wrap_SBBreakpoint_SetCommandLineCommands(lua_State* L) { in _wrap_SBBreakpoint_SetCommandLineCommands() argument
8643 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetCommandLineCommands",1,"lldb::SBBre… in _wrap_SBBreakpoint_SetCommandLineCommands()
8644 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetCommandLineCommands",2,"lldb::SBStr… in _wrap_SBBreakpoint_SetCommandLineCommands()
8646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetCommandLineCommands()
8651 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpoint_SetCommandLineCommands()
8661 lua_error(L); in _wrap_SBBreakpoint_SetCommandLineCommands()
8666 static int _wrap_SBBreakpoint_GetCommandLineCommands(lua_State* L) { in _wrap_SBBreakpoint_GetCommandLineCommands() argument
8674 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetCommandLineCommands",1,"lldb::SBBre… in _wrap_SBBreakpoint_GetCommandLineCommands()
8675 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetCommandLineCommands",2,"lldb::SBStr… in _wrap_SBBreakpoint_GetCommandLineCommands()
8677 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetCommandLineCommands()
8682 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpoint_GetCommandLineCommands()
8687 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_GetCommandLineCommands()
8692 lua_error(L); in _wrap_SBBreakpoint_GetCommandLineCommands()
8697 static int _wrap_SBBreakpoint_SetScriptCallbackBody(lua_State* L) { in _wrap_SBBreakpoint_SetScriptCallbackBody() argument
8705 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackBody",1,"lldb::SBBrea… in _wrap_SBBreakpoint_SetScriptCallbackBody()
8706 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::SetScriptCallbackBody",2,"char c… in _wrap_SBBreakpoint_SetScriptCallbackBody()
8708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SetScriptCallbackBody()
8712 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_SetScriptCallbackBody()
8716 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpoint_SetScriptCallbackBody()
8722 lua_error(L); in _wrap_SBBreakpoint_SetScriptCallbackBody()
8727 static int _wrap_SBBreakpoint_AddName(lua_State* L) { in _wrap_SBBreakpoint_AddName() argument
8735 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::AddName",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_AddName()
8736 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::AddName",2,"char const *"); in _wrap_SBBreakpoint_AddName()
8738 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_AddName()
8742 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_AddName()
8744 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_AddName()
8749 lua_error(L); in _wrap_SBBreakpoint_AddName()
8754 static int _wrap_SBBreakpoint_AddNameWithErrorHandling(lua_State* L) { in _wrap_SBBreakpoint_AddNameWithErrorHandling() argument
8762 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::AddNameWithErrorHandling",1,"lldb::SBB… in _wrap_SBBreakpoint_AddNameWithErrorHandling()
8763 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::AddNameWithErrorHandling",2,"cha… in _wrap_SBBreakpoint_AddNameWithErrorHandling()
8765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_AddNameWithErrorHandling()
8769 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_AddNameWithErrorHandling()
8773 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpoint_AddNameWithErrorHandling()
8779 lua_error(L); in _wrap_SBBreakpoint_AddNameWithErrorHandling()
8784 static int _wrap_SBBreakpoint_RemoveName(lua_State* L) { in _wrap_SBBreakpoint_RemoveName() argument
8791 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::RemoveName",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_RemoveName()
8792 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::RemoveName",2,"char const *"); in _wrap_SBBreakpoint_RemoveName()
8794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_RemoveName()
8798 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_RemoveName()
8805 lua_error(L); in _wrap_SBBreakpoint_RemoveName()
8810 static int _wrap_SBBreakpoint_MatchesName(lua_State* L) { in _wrap_SBBreakpoint_MatchesName() argument
8818 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::MatchesName",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_MatchesName()
8819 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::MatchesName",2,"char const *"); in _wrap_SBBreakpoint_MatchesName()
8821 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_MatchesName()
8825 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpoint_MatchesName()
8827 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_MatchesName()
8832 lua_error(L); in _wrap_SBBreakpoint_MatchesName()
8837 static int _wrap_SBBreakpoint_GetNames(lua_State* L) { in _wrap_SBBreakpoint_GetNames() argument
8844 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNames",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_GetNames()
8845 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetNames",2,"lldb::SBStringList &"); in _wrap_SBBreakpoint_GetNames()
8847 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetNames()
8852 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpoint_GetNames()
8862 lua_error(L); in _wrap_SBBreakpoint_GetNames()
8867 static int _wrap_SBBreakpoint_GetNumResolvedLocations(lua_State* L) { in _wrap_SBBreakpoint_GetNumResolvedLocations() argument
8874 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNumResolvedLocations",1,"lldb::SBBr… in _wrap_SBBreakpoint_GetNumResolvedLocations()
8876 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetNumResolvedLocations()
8881 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetNumResolvedLocations()
8886 lua_error(L); in _wrap_SBBreakpoint_GetNumResolvedLocations()
8891 static int _wrap_SBBreakpoint_GetNumLocations(lua_State* L) { in _wrap_SBBreakpoint_GetNumLocations() argument
8898 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNumLocations",1,"lldb::SBBreakpoint… in _wrap_SBBreakpoint_GetNumLocations()
8900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetNumLocations()
8905 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetNumLocations()
8910 lua_error(L); in _wrap_SBBreakpoint_GetNumLocations()
8915 static int _wrap_SBBreakpoint_GetDescription__SWIG_0(lua_State* L) { in _wrap_SBBreakpoint_GetDescription__SWIG_0() argument
8923 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",1,"lldb::SBBreakpoint … in _wrap_SBBreakpoint_GetDescription__SWIG_0()
8924 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",2,"lldb::SBStream &"); in _wrap_SBBreakpoint_GetDescription__SWIG_0()
8926 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetDescription__SWIG_0()
8931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBBreakpoint_GetDescription__SWIG_0()
8936 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_GetDescription__SWIG_0()
8941 lua_error(L); in _wrap_SBBreakpoint_GetDescription__SWIG_0()
8946 static int _wrap_SBBreakpoint_GetDescription__SWIG_1(lua_State* L) { in _wrap_SBBreakpoint_GetDescription__SWIG_1() argument
8955 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",1,"lldb::SBBreakpoint … in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8956 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",2,"lldb::SBStream &"); in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8957 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBreakpoint::GetDescription",3,"bool"); in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8964 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8968 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8975 lua_error(L); in _wrap_SBBreakpoint_GetDescription__SWIG_1()
8980 static int _wrap_SBBreakpoint_GetDescription(lua_State* L) { in _wrap_SBBreakpoint_GetDescription() argument
8986 argc = lua_gettop(L); in _wrap_SBBreakpoint_GetDescription()
8991 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_GetDescription()
9000 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_GetDescription()
9007 return _wrap_SBBreakpoint_GetDescription__SWIG_0(L); in _wrap_SBBreakpoint_GetDescription()
9015 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_GetDescription()
9024 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpoint_GetDescription()
9032 _v = lua_isboolean(L,argv[2]); in _wrap_SBBreakpoint_GetDescription()
9035 return _wrap_SBBreakpoint_GetDescription__SWIG_1(L); in _wrap_SBBreakpoint_GetDescription()
9041 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpoint_GetDescription'\n" in _wrap_SBBreakpoint_GetDescription()
9045 lua_error(L);return 0; in _wrap_SBBreakpoint_GetDescription()
9049 static int _wrap_SBBreakpoint_EventIsBreakpointEvent(lua_State* L) { in _wrap_SBBreakpoint_EventIsBreakpointEvent() argument
9056 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::EventIsBreakpointEvent",1,"lldb::SBEve… in _wrap_SBBreakpoint_EventIsBreakpointEvent()
9058 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBreakpoint_EventIsBreakpointEvent()
9063 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_EventIsBreakpointEvent()
9068 lua_error(L); in _wrap_SBBreakpoint_EventIsBreakpointEvent()
9073 static int _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent(lua_State* L) { in _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent() argument
9080 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointEventTypeFromEvent",1,"ll… in _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent()
9082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent()
9087 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent()
9092 lua_error(L); in _wrap_SBBreakpoint_GetBreakpointEventTypeFromEvent()
9097 static int _wrap_SBBreakpoint_GetBreakpointFromEvent(lua_State* L) { in _wrap_SBBreakpoint_GetBreakpointFromEvent() argument
9104 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointFromEvent",1,"lldb::SBEve… in _wrap_SBBreakpoint_GetBreakpointFromEvent()
9106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBreakpoint_GetBreakpointFromEvent()
9113 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBBreakpoint_GetBreakpointFromEvent()
9119 lua_error(L); in _wrap_SBBreakpoint_GetBreakpointFromEvent()
9124 static int _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent(lua_State* L) { in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent() argument
9132 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointLocationAtIndexFromEvent"… in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent()
9133 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::GetBreakpointLocationAtIndexFromEvent",… in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent()
9135 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent()
9139 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent()
9143 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++; in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent()
9149 lua_error(L); in _wrap_SBBreakpoint_GetBreakpointLocationAtIndexFromEvent()
9154 static int _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent(lua_State* L) { in _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent() argument
9161 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::GetNumBreakpointLocationsFromEvent",1,… in _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent()
9163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent()
9168 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent()
9173 lua_error(L); in _wrap_SBBreakpoint_GetNumBreakpointLocationsFromEvent()
9178 static int _wrap_SBBreakpoint_IsHardware(lua_State* L) { in _wrap_SBBreakpoint_IsHardware() argument
9185 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::IsHardware",1,"lldb::SBBreakpoint cons… in _wrap_SBBreakpoint_IsHardware()
9187 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_IsHardware()
9192 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpoint_IsHardware()
9197 lua_error(L); in _wrap_SBBreakpoint_IsHardware()
9202 static int _wrap_SBBreakpoint_AddLocation(lua_State* L) { in _wrap_SBBreakpoint_AddLocation() argument
9210 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::AddLocation",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint_AddLocation()
9211 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpoint::AddLocation",2,"lldb::SBAddress &"); in _wrap_SBBreakpoint_AddLocation()
9213 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_AddLocation()
9218 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBBreakpoint_AddLocation()
9225 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpoint_AddLocation()
9231 lua_error(L); in _wrap_SBBreakpoint_AddLocation()
9236 static int _wrap_SBBreakpoint_SerializeToStructuredData(lua_State* L) { in _wrap_SBBreakpoint_SerializeToStructuredData() argument
9243 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::SerializeToStructuredData",1,"lldb::SB… in _wrap_SBBreakpoint_SerializeToStructuredData()
9245 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint_SerializeToStructuredData()
9252 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBBreakpoint_SerializeToStructuredData()
9258 lua_error(L); in _wrap_SBBreakpoint_SerializeToStructuredData()
9263 static int _wrap_SBBreakpoint___tostring(lua_State* L) { in _wrap_SBBreakpoint___tostring() argument
9270 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpoint::__repr__",1,"lldb::SBBreakpoint *"); in _wrap_SBBreakpoint___tostring()
9272 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpoint___tostring()
9277 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBBreakpoint___tostring()
9282 lua_error(L); in _wrap_SBBreakpoint___tostring()
9291 static int _proxy__wrap_new_SBBreakpoint(lua_State *L) { in _proxy__wrap_new_SBBreakpoint() argument
9292 assert(lua_istable(L,1)); in _proxy__wrap_new_SBBreakpoint()
9293 lua_pushcfunction(L,_wrap_new_SBBreakpoint); in _proxy__wrap_new_SBBreakpoint()
9294 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBBreakpoint()
9295 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBBreakpoint()
9296 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBBreakpoint()
9386 static int _wrap_new_SBBreakpointList(lua_State* L) { in _wrap_new_SBBreakpointList() argument
9393 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::SBBreakpointList",1,"lldb::SBTarge… in _wrap_new_SBBreakpointList()
9395 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_new_SBBreakpointList()
9400 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointList,1); SWIG_arg++; in _wrap_new_SBBreakpointList()
9405 lua_error(L); in _wrap_new_SBBreakpointList()
9410 static int _wrap_SBBreakpointList_GetSize(lua_State* L) { in _wrap_SBBreakpointList_GetSize() argument
9417 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::GetSize",1,"lldb::SBBreakpointList… in _wrap_SBBreakpointList_GetSize()
9419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_GetSize()
9424 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointList_GetSize()
9429 lua_error(L); in _wrap_SBBreakpointList_GetSize()
9434 static int _wrap_SBBreakpointList_GetBreakpointAtIndex(lua_State* L) { in _wrap_SBBreakpointList_GetBreakpointAtIndex() argument
9442 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::GetBreakpointAtIndex",1,"lldb::SBB… in _wrap_SBBreakpointList_GetBreakpointAtIndex()
9443 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::GetBreakpointAtIndex",2,"size_t"); in _wrap_SBBreakpointList_GetBreakpointAtIndex()
9445 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_GetBreakpointAtIndex()
9449 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBBreakpointList_GetBreakpointAtIndex()
9453 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBBreakpointList_GetBreakpointAtIndex()
9459 lua_error(L); in _wrap_SBBreakpointList_GetBreakpointAtIndex()
9464 static int _wrap_SBBreakpointList_FindBreakpointByID(lua_State* L) { in _wrap_SBBreakpointList_FindBreakpointByID() argument
9472 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::FindBreakpointByID",1,"lldb::SBBre… in _wrap_SBBreakpointList_FindBreakpointByID()
9473 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::FindBreakpointByID",2,"lldb::break_… in _wrap_SBBreakpointList_FindBreakpointByID()
9475 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_FindBreakpointByID()
9479 arg2 = (lldb::break_id_t)lua_tointeger(L, 2); in _wrap_SBBreakpointList_FindBreakpointByID()
9483 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBBreakpointList_FindBreakpointByID()
9489 lua_error(L); in _wrap_SBBreakpointList_FindBreakpointByID()
9494 static int _wrap_SBBreakpointList_Append(lua_State* L) { in _wrap_SBBreakpointList_Append() argument
9501 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::Append",1,"lldb::SBBreakpointList … in _wrap_SBBreakpointList_Append()
9502 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::Append",2,"lldb::SBBreakpoint cons… in _wrap_SBBreakpointList_Append()
9504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_Append()
9509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpointList_Append()
9519 lua_error(L); in _wrap_SBBreakpointList_Append()
9524 static int _wrap_SBBreakpointList_AppendIfUnique(lua_State* L) { in _wrap_SBBreakpointList_AppendIfUnique() argument
9532 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::AppendIfUnique",1,"lldb::SBBreakpo… in _wrap_SBBreakpointList_AppendIfUnique()
9533 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::AppendIfUnique",2,"lldb::SBBreakpo… in _wrap_SBBreakpointList_AppendIfUnique()
9535 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_AppendIfUnique()
9540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_SBBreakpointList_AppendIfUnique()
9545 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointList_AppendIfUnique()
9550 lua_error(L); in _wrap_SBBreakpointList_AppendIfUnique()
9555 static int _wrap_SBBreakpointList_AppendByID(lua_State* L) { in _wrap_SBBreakpointList_AppendByID() argument
9562 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::AppendByID",1,"lldb::SBBreakpointL… in _wrap_SBBreakpointList_AppendByID()
9563 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointList::AppendByID",2,"lldb::break_id_t"); in _wrap_SBBreakpointList_AppendByID()
9565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_AppendByID()
9569 arg2 = (lldb::break_id_t)lua_tointeger(L, 2); in _wrap_SBBreakpointList_AppendByID()
9576 lua_error(L); in _wrap_SBBreakpointList_AppendByID()
9581 static int _wrap_SBBreakpointList_Clear(lua_State* L) { in _wrap_SBBreakpointList_Clear() argument
9587 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointList::Clear",1,"lldb::SBBreakpointList *… in _wrap_SBBreakpointList_Clear()
9589 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBBreakpointList_Clear()
9599 lua_error(L); in _wrap_SBBreakpointList_Clear()
9608 static int _proxy__wrap_new_SBBreakpointList(lua_State *L) { in _proxy__wrap_new_SBBreakpointList() argument
9609 assert(lua_istable(L,1)); in _proxy__wrap_new_SBBreakpointList()
9610 lua_pushcfunction(L,_wrap_new_SBBreakpointList); in _proxy__wrap_new_SBBreakpointList()
9611 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBBreakpointList()
9612 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBBreakpointList()
9613 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBBreakpointList()
9658 static int _wrap_new_SBBreakpointLocation__SWIG_0(lua_State* L) { in _wrap_new_SBBreakpointLocation__SWIG_0() argument
9665 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++; in _wrap_new_SBBreakpointLocation__SWIG_0()
9670 lua_error(L); in _wrap_new_SBBreakpointLocation__SWIG_0()
9675 static int _wrap_new_SBBreakpointLocation__SWIG_1(lua_State* L) { in _wrap_new_SBBreakpointLocation__SWIG_1() argument
9682 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SBBreakpointLocation",1,"lldb:… in _wrap_new_SBBreakpointLocation__SWIG_1()
9684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_new_SBBreakpointLocation__SWIG_1()
9689 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointLocation,1); SWIG_arg++; in _wrap_new_SBBreakpointLocation__SWIG_1()
9694 lua_error(L); in _wrap_new_SBBreakpointLocation__SWIG_1()
9699 static int _wrap_new_SBBreakpointLocation(lua_State* L) { in _wrap_new_SBBreakpointLocation() argument
9705 argc = lua_gettop(L); in _wrap_new_SBBreakpointLocation()
9707 return _wrap_new_SBBreakpointLocation__SWIG_0(L); in _wrap_new_SBBreakpointLocation()
9713 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBreakpointLocation()
9720 return _wrap_new_SBBreakpointLocation__SWIG_1(L); in _wrap_new_SBBreakpointLocation()
9724 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBreakpointLocation'\n" in _wrap_new_SBBreakpointLocation()
9728 lua_error(L);return 0; in _wrap_new_SBBreakpointLocation()
9732 static int _wrap_SBBreakpointLocation_GetID(lua_State* L) { in _wrap_SBBreakpointLocation_GetID() argument
9739 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetID",1,"lldb::SBBreakpointLo… in _wrap_SBBreakpointLocation_GetID()
9741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetID()
9746 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetID()
9751 lua_error(L); in _wrap_SBBreakpointLocation_GetID()
9756 static int _wrap_SBBreakpointLocation_IsValid(lua_State* L) { in _wrap_SBBreakpointLocation_IsValid() argument
9763 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::IsValid",1,"lldb::SBBreakpoint… in _wrap_SBBreakpointLocation_IsValid()
9765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_IsValid()
9770 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointLocation_IsValid()
9775 lua_error(L); in _wrap_SBBreakpointLocation_IsValid()
9780 static int _wrap_SBBreakpointLocation_GetAddress(lua_State* L) { in _wrap_SBBreakpointLocation_GetAddress() argument
9787 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetAddress",1,"lldb::SBBreakpo… in _wrap_SBBreakpointLocation_GetAddress()
9789 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetAddress()
9796 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBBreakpointLocation_GetAddress()
9802 lua_error(L); in _wrap_SBBreakpointLocation_GetAddress()
9807 static int _wrap_SBBreakpointLocation_GetLoadAddress(lua_State* L) { in _wrap_SBBreakpointLocation_GetLoadAddress() argument
9814 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetLoadAddress",1,"lldb::SBBre… in _wrap_SBBreakpointLocation_GetLoadAddress()
9816 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetLoadAddress()
9821 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetLoadAddress()
9826 lua_error(L); in _wrap_SBBreakpointLocation_GetLoadAddress()
9831 static int _wrap_SBBreakpointLocation_SetEnabled(lua_State* L) { in _wrap_SBBreakpointLocation_SetEnabled() argument
9838 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetEnabled",1,"lldb::SBBreakpo… in _wrap_SBBreakpointLocation_SetEnabled()
9839 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetEnabled",2,"bool"); in _wrap_SBBreakpointLocation_SetEnabled()
9841 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetEnabled()
9845 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointLocation_SetEnabled()
9852 lua_error(L); in _wrap_SBBreakpointLocation_SetEnabled()
9857 static int _wrap_SBBreakpointLocation_IsEnabled(lua_State* L) { in _wrap_SBBreakpointLocation_IsEnabled() argument
9864 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::IsEnabled",1,"lldb::SBBreakpoi… in _wrap_SBBreakpointLocation_IsEnabled()
9866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_IsEnabled()
9871 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointLocation_IsEnabled()
9876 lua_error(L); in _wrap_SBBreakpointLocation_IsEnabled()
9881 static int _wrap_SBBreakpointLocation_GetHitCount(lua_State* L) { in _wrap_SBBreakpointLocation_GetHitCount() argument
9888 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetHitCount",1,"lldb::SBBreakp… in _wrap_SBBreakpointLocation_GetHitCount()
9890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetHitCount()
9895 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetHitCount()
9900 lua_error(L); in _wrap_SBBreakpointLocation_GetHitCount()
9905 static int _wrap_SBBreakpointLocation_GetIgnoreCount(lua_State* L) { in _wrap_SBBreakpointLocation_GetIgnoreCount() argument
9912 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetIgnoreCount",1,"lldb::SBBre… in _wrap_SBBreakpointLocation_GetIgnoreCount()
9914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetIgnoreCount()
9919 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetIgnoreCount()
9924 lua_error(L); in _wrap_SBBreakpointLocation_GetIgnoreCount()
9929 static int _wrap_SBBreakpointLocation_SetIgnoreCount(lua_State* L) { in _wrap_SBBreakpointLocation_SetIgnoreCount() argument
9936 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetIgnoreCount",1,"lldb::SBBre… in _wrap_SBBreakpointLocation_SetIgnoreCount()
9937 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetIgnoreCount",2,"uint32_t"); in _wrap_SBBreakpointLocation_SetIgnoreCount()
9939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetIgnoreCount()
9943 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpointLocation_SetIgnoreCount()
9950 lua_error(L); in _wrap_SBBreakpointLocation_SetIgnoreCount()
9955 static int _wrap_SBBreakpointLocation_SetCondition(lua_State* L) { in _wrap_SBBreakpointLocation_SetCondition() argument
9962 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCondition",1,"lldb::SBBreak… in _wrap_SBBreakpointLocation_SetCondition()
9963 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCondition",2,"char co… in _wrap_SBBreakpointLocation_SetCondition()
9965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetCondition()
9969 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointLocation_SetCondition()
9976 lua_error(L); in _wrap_SBBreakpointLocation_SetCondition()
9981 static int _wrap_SBBreakpointLocation_GetCondition(lua_State* L) { in _wrap_SBBreakpointLocation_GetCondition() argument
9988 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetCondition",1,"lldb::SBBreak… in _wrap_SBBreakpointLocation_GetCondition()
9990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetCondition()
9995 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetCondition()
10000 lua_error(L); in _wrap_SBBreakpointLocation_GetCondition()
10005 static int _wrap_SBBreakpointLocation_SetAutoContinue(lua_State* L) { in _wrap_SBBreakpointLocation_SetAutoContinue() argument
10012 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetAutoContinue",1,"lldb::SBBr… in _wrap_SBBreakpointLocation_SetAutoContinue()
10013 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetAutoContinue",2,"bool"); in _wrap_SBBreakpointLocation_SetAutoContinue()
10015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetAutoContinue()
10019 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointLocation_SetAutoContinue()
10026 lua_error(L); in _wrap_SBBreakpointLocation_SetAutoContinue()
10031 static int _wrap_SBBreakpointLocation_GetAutoContinue(lua_State* L) { in _wrap_SBBreakpointLocation_GetAutoContinue() argument
10038 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetAutoContinue",1,"lldb::SBBr… in _wrap_SBBreakpointLocation_GetAutoContinue()
10040 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetAutoContinue()
10045 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointLocation_GetAutoContinue()
10050 lua_error(L); in _wrap_SBBreakpointLocation_GetAutoContinue()
10055 static int _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0(lua_State* L) { in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0() argument
10062 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",1,"… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0()
10063 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunctio… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0()
10065 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0()
10069 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0()
10076 lua_error(L); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0()
10081 static int _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1(lua_State* L) { in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1() argument
10090 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",1,"… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10091 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunctio… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10092 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackFunction",3,"… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10094 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10098 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10100 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10107 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10113 lua_error(L); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1()
10118 static int _wrap_SBBreakpointLocation_SetScriptCallbackFunction(lua_State* L) { in _wrap_SBBreakpointLocation_SetScriptCallbackFunction() argument
10124 argc = lua_gettop(L); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10129 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10137 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10140 return _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_0(L); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10148 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10156 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10161 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10168 return _wrap_SBBreakpointLocation_SetScriptCallbackFunction__SWIG_1(L); in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10174 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpointLocation_SetScriptC… in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10178 lua_error(L);return 0; in _wrap_SBBreakpointLocation_SetScriptCallbackFunction()
10182 static int _wrap_SBBreakpointLocation_SetScriptCallbackBody(lua_State* L) { in _wrap_SBBreakpointLocation_SetScriptCallbackBody() argument
10190 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackBody",1,"lldb… in _wrap_SBBreakpointLocation_SetScriptCallbackBody()
10191 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetScriptCallbackBody",2… in _wrap_SBBreakpointLocation_SetScriptCallbackBody()
10193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetScriptCallbackBody()
10197 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointLocation_SetScriptCallbackBody()
10201 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpointLocation_SetScriptCallbackBody()
10207 lua_error(L); in _wrap_SBBreakpointLocation_SetScriptCallbackBody()
10212 static int _wrap_SBBreakpointLocation_SetCommandLineCommands(lua_State* L) { in _wrap_SBBreakpointLocation_SetCommandLineCommands() argument
10219 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCommandLineCommands",1,"lld… in _wrap_SBBreakpointLocation_SetCommandLineCommands()
10220 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetCommandLineCommands",2,"lld… in _wrap_SBBreakpointLocation_SetCommandLineCommands()
10222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetCommandLineCommands()
10227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpointLocation_SetCommandLineCommands()
10237 lua_error(L); in _wrap_SBBreakpointLocation_SetCommandLineCommands()
10242 static int _wrap_SBBreakpointLocation_GetCommandLineCommands(lua_State* L) { in _wrap_SBBreakpointLocation_GetCommandLineCommands() argument
10250 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetCommandLineCommands",1,"lld… in _wrap_SBBreakpointLocation_GetCommandLineCommands()
10251 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetCommandLineCommands",2,"lld… in _wrap_SBBreakpointLocation_GetCommandLineCommands()
10253 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetCommandLineCommands()
10258 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpointLocation_GetCommandLineCommands()
10263 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointLocation_GetCommandLineCommands()
10268 lua_error(L); in _wrap_SBBreakpointLocation_GetCommandLineCommands()
10273 static int _wrap_SBBreakpointLocation_SetThreadID(lua_State* L) { in _wrap_SBBreakpointLocation_SetThreadID() argument
10280 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadID",1,"lldb::SBBreakp… in _wrap_SBBreakpointLocation_SetThreadID()
10281 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadID",2,"lldb::tid_t"); in _wrap_SBBreakpointLocation_SetThreadID()
10283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetThreadID()
10287 arg2 = (lldb::tid_t)lua_tointeger(L, 2); in _wrap_SBBreakpointLocation_SetThreadID()
10294 lua_error(L); in _wrap_SBBreakpointLocation_SetThreadID()
10299 static int _wrap_SBBreakpointLocation_GetThreadID(lua_State* L) { in _wrap_SBBreakpointLocation_GetThreadID() argument
10306 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetThreadID",1,"lldb::SBBreakp… in _wrap_SBBreakpointLocation_GetThreadID()
10308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetThreadID()
10313 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetThreadID()
10318 lua_error(L); in _wrap_SBBreakpointLocation_GetThreadID()
10323 static int _wrap_SBBreakpointLocation_SetThreadIndex(lua_State* L) { in _wrap_SBBreakpointLocation_SetThreadIndex() argument
10330 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadIndex",1,"lldb::SBBre… in _wrap_SBBreakpointLocation_SetThreadIndex()
10331 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadIndex",2,"uint32_t"); in _wrap_SBBreakpointLocation_SetThreadIndex()
10333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetThreadIndex()
10337 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpointLocation_SetThreadIndex()
10344 lua_error(L); in _wrap_SBBreakpointLocation_SetThreadIndex()
10349 static int _wrap_SBBreakpointLocation_GetThreadIndex(lua_State* L) { in _wrap_SBBreakpointLocation_GetThreadIndex() argument
10356 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetThreadIndex",1,"lldb::SBBre… in _wrap_SBBreakpointLocation_GetThreadIndex()
10358 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetThreadIndex()
10363 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetThreadIndex()
10368 lua_error(L); in _wrap_SBBreakpointLocation_GetThreadIndex()
10373 static int _wrap_SBBreakpointLocation_SetThreadName(lua_State* L) { in _wrap_SBBreakpointLocation_SetThreadName() argument
10380 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadName",1,"lldb::SBBrea… in _wrap_SBBreakpointLocation_SetThreadName()
10381 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetThreadName",2,"char c… in _wrap_SBBreakpointLocation_SetThreadName()
10383 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetThreadName()
10387 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointLocation_SetThreadName()
10394 lua_error(L); in _wrap_SBBreakpointLocation_SetThreadName()
10399 static int _wrap_SBBreakpointLocation_GetThreadName(lua_State* L) { in _wrap_SBBreakpointLocation_GetThreadName() argument
10406 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetThreadName",1,"lldb::SBBrea… in _wrap_SBBreakpointLocation_GetThreadName()
10408 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetThreadName()
10413 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetThreadName()
10418 lua_error(L); in _wrap_SBBreakpointLocation_GetThreadName()
10423 static int _wrap_SBBreakpointLocation_SetQueueName(lua_State* L) { in _wrap_SBBreakpointLocation_SetQueueName() argument
10430 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetQueueName",1,"lldb::SBBreak… in _wrap_SBBreakpointLocation_SetQueueName()
10431 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::SetQueueName",2,"char co… in _wrap_SBBreakpointLocation_SetQueueName()
10433 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_SetQueueName()
10437 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointLocation_SetQueueName()
10444 lua_error(L); in _wrap_SBBreakpointLocation_SetQueueName()
10449 static int _wrap_SBBreakpointLocation_GetQueueName(lua_State* L) { in _wrap_SBBreakpointLocation_GetQueueName() argument
10456 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetQueueName",1,"lldb::SBBreak… in _wrap_SBBreakpointLocation_GetQueueName()
10458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetQueueName()
10463 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointLocation_GetQueueName()
10468 lua_error(L); in _wrap_SBBreakpointLocation_GetQueueName()
10473 static int _wrap_SBBreakpointLocation_IsResolved(lua_State* L) { in _wrap_SBBreakpointLocation_IsResolved() argument
10480 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::IsResolved",1,"lldb::SBBreakpo… in _wrap_SBBreakpointLocation_IsResolved()
10482 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_IsResolved()
10487 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointLocation_IsResolved()
10492 lua_error(L); in _wrap_SBBreakpointLocation_IsResolved()
10497 static int _wrap_SBBreakpointLocation_GetDescription(lua_State* L) { in _wrap_SBBreakpointLocation_GetDescription() argument
10506 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetDescription",1,"lldb::SBBre… in _wrap_SBBreakpointLocation_GetDescription()
10507 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetDescription",2,"lldb::SBStr… in _wrap_SBBreakpointLocation_GetDescription()
10508 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetDescription",3,"lldb::Descri… in _wrap_SBBreakpointLocation_GetDescription()
10510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetDescription()
10515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBBreakpointLocation_GetDescription()
10519 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBBreakpointLocation_GetDescription()
10521 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointLocation_GetDescription()
10526 lua_error(L); in _wrap_SBBreakpointLocation_GetDescription()
10531 static int _wrap_SBBreakpointLocation_GetBreakpoint(lua_State* L) { in _wrap_SBBreakpointLocation_GetBreakpoint() argument
10538 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::GetBreakpoint",1,"lldb::SBBrea… in _wrap_SBBreakpointLocation_GetBreakpoint()
10540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation_GetBreakpoint()
10547 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBBreakpointLocation_GetBreakpoint()
10553 lua_error(L); in _wrap_SBBreakpointLocation_GetBreakpoint()
10558 static int _wrap_SBBreakpointLocation___tostring(lua_State* L) { in _wrap_SBBreakpointLocation___tostring() argument
10565 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointLocation::__repr__",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointLocation___tostring()
10567 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointLocation,0))){ in _wrap_SBBreakpointLocation___tostring()
10572 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBBreakpointLocation___tostring()
10577 lua_error(L); in _wrap_SBBreakpointLocation___tostring()
10586 static int _proxy__wrap_new_SBBreakpointLocation(lua_State *L) { in _proxy__wrap_new_SBBreakpointLocation() argument
10587 assert(lua_istable(L,1)); in _proxy__wrap_new_SBBreakpointLocation()
10588 lua_pushcfunction(L,_wrap_new_SBBreakpointLocation); in _proxy__wrap_new_SBBreakpointLocation()
10589 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBBreakpointLocation()
10590 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBBreakpointLocation()
10591 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBBreakpointLocation()
10659 static int _wrap_new_SBBreakpointName__SWIG_0(lua_State* L) { in _wrap_new_SBBreakpointName__SWIG_0() argument
10666 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++; in _wrap_new_SBBreakpointName__SWIG_0()
10671 lua_error(L); in _wrap_new_SBBreakpointName__SWIG_0()
10676 static int _wrap_new_SBBreakpointName__SWIG_1(lua_State* L) { in _wrap_new_SBBreakpointName__SWIG_1() argument
10684 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",1,"lldb::SBTarge… in _wrap_new_SBBreakpointName__SWIG_1()
10685 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",2,"char co… in _wrap_new_SBBreakpointName__SWIG_1()
10687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_new_SBBreakpointName__SWIG_1()
10691 arg2 = (char *)lua_tostring(L, 2); in _wrap_new_SBBreakpointName__SWIG_1()
10693 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++; in _wrap_new_SBBreakpointName__SWIG_1()
10698 lua_error(L); in _wrap_new_SBBreakpointName__SWIG_1()
10703 static int _wrap_new_SBBreakpointName__SWIG_2(lua_State* L) { in _wrap_new_SBBreakpointName__SWIG_2() argument
10711 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",1,"lldb::SBBreak… in _wrap_new_SBBreakpointName__SWIG_2()
10712 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",2,"char co… in _wrap_new_SBBreakpointName__SWIG_2()
10714 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpoint,0))){ in _wrap_new_SBBreakpointName__SWIG_2()
10718 arg2 = (char *)lua_tostring(L, 2); in _wrap_new_SBBreakpointName__SWIG_2()
10720 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++; in _wrap_new_SBBreakpointName__SWIG_2()
10725 lua_error(L); in _wrap_new_SBBreakpointName__SWIG_2()
10730 static int _wrap_new_SBBreakpointName__SWIG_3(lua_State* L) { in _wrap_new_SBBreakpointName__SWIG_3() argument
10737 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SBBreakpointName",1,"lldb::SBBreak… in _wrap_new_SBBreakpointName__SWIG_3()
10739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_new_SBBreakpointName__SWIG_3()
10744 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBreakpointName,1); SWIG_arg++; in _wrap_new_SBBreakpointName__SWIG_3()
10749 lua_error(L); in _wrap_new_SBBreakpointName__SWIG_3()
10754 static int _wrap_new_SBBreakpointName(lua_State* L) { in _wrap_new_SBBreakpointName() argument
10760 argc = lua_gettop(L); in _wrap_new_SBBreakpointName()
10762 return _wrap_new_SBBreakpointName__SWIG_0(L); in _wrap_new_SBBreakpointName()
10768 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBreakpointName()
10775 return _wrap_new_SBBreakpointName__SWIG_3(L); in _wrap_new_SBBreakpointName()
10782 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBreakpointName()
10790 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBBreakpointName()
10793 return _wrap_new_SBBreakpointName__SWIG_2(L); in _wrap_new_SBBreakpointName()
10801 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBreakpointName()
10809 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBBreakpointName()
10812 return _wrap_new_SBBreakpointName__SWIG_1(L); in _wrap_new_SBBreakpointName()
10817 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBreakpointName'\n" in _wrap_new_SBBreakpointName()
10823 lua_error(L);return 0; in _wrap_new_SBBreakpointName()
10827 static int _wrap_SBBreakpointName___eq(lua_State* L) { in _wrap_SBBreakpointName___eq() argument
10835 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::operator ==",1,"lldb::SBBreakpoint… in _wrap_SBBreakpointName___eq()
10836 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::operator ==",2,"lldb::SBBreakpoint… in _wrap_SBBreakpointName___eq()
10838 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName___eq()
10843 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName___eq()
10848 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName___eq()
10853 lua_error(L); in _wrap_SBBreakpointName___eq()
10858 static int _wrap_SBBreakpointName_IsValid(lua_State* L) { in _wrap_SBBreakpointName_IsValid() argument
10865 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::IsValid",1,"lldb::SBBreakpointName… in _wrap_SBBreakpointName_IsValid()
10867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_IsValid()
10872 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_IsValid()
10877 lua_error(L); in _wrap_SBBreakpointName_IsValid()
10882 static int _wrap_SBBreakpointName_GetName(lua_State* L) { in _wrap_SBBreakpointName_GetName() argument
10889 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetName",1,"lldb::SBBreakpointName… in _wrap_SBBreakpointName_GetName()
10891 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetName()
10896 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointName_GetName()
10901 lua_error(L); in _wrap_SBBreakpointName_GetName()
10906 static int _wrap_SBBreakpointName_SetEnabled(lua_State* L) { in _wrap_SBBreakpointName_SetEnabled() argument
10913 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetEnabled",1,"lldb::SBBreakpointN… in _wrap_SBBreakpointName_SetEnabled()
10914 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetEnabled",2,"bool"); in _wrap_SBBreakpointName_SetEnabled()
10916 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetEnabled()
10920 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointName_SetEnabled()
10927 lua_error(L); in _wrap_SBBreakpointName_SetEnabled()
10932 static int _wrap_SBBreakpointName_IsEnabled(lua_State* L) { in _wrap_SBBreakpointName_IsEnabled() argument
10939 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::IsEnabled",1,"lldb::SBBreakpointNa… in _wrap_SBBreakpointName_IsEnabled()
10941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_IsEnabled()
10946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_IsEnabled()
10951 lua_error(L); in _wrap_SBBreakpointName_IsEnabled()
10956 static int _wrap_SBBreakpointName_SetOneShot(lua_State* L) { in _wrap_SBBreakpointName_SetOneShot() argument
10963 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetOneShot",1,"lldb::SBBreakpointN… in _wrap_SBBreakpointName_SetOneShot()
10964 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetOneShot",2,"bool"); in _wrap_SBBreakpointName_SetOneShot()
10966 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetOneShot()
10970 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointName_SetOneShot()
10977 lua_error(L); in _wrap_SBBreakpointName_SetOneShot()
10982 static int _wrap_SBBreakpointName_IsOneShot(lua_State* L) { in _wrap_SBBreakpointName_IsOneShot() argument
10989 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::IsOneShot",1,"lldb::SBBreakpointNa… in _wrap_SBBreakpointName_IsOneShot()
10991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_IsOneShot()
10996 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_IsOneShot()
11001 lua_error(L); in _wrap_SBBreakpointName_IsOneShot()
11006 static int _wrap_SBBreakpointName_SetIgnoreCount(lua_State* L) { in _wrap_SBBreakpointName_SetIgnoreCount() argument
11013 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetIgnoreCount",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_SetIgnoreCount()
11014 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetIgnoreCount",2,"uint32_t"); in _wrap_SBBreakpointName_SetIgnoreCount()
11016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetIgnoreCount()
11020 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpointName_SetIgnoreCount()
11027 lua_error(L); in _wrap_SBBreakpointName_SetIgnoreCount()
11032 static int _wrap_SBBreakpointName_GetIgnoreCount(lua_State* L) { in _wrap_SBBreakpointName_GetIgnoreCount() argument
11039 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetIgnoreCount",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_GetIgnoreCount()
11041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetIgnoreCount()
11046 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointName_GetIgnoreCount()
11051 lua_error(L); in _wrap_SBBreakpointName_GetIgnoreCount()
11056 static int _wrap_SBBreakpointName_SetCondition(lua_State* L) { in _wrap_SBBreakpointName_SetCondition() argument
11063 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetCondition",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointName_SetCondition()
11064 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetCondition",2,"char const … in _wrap_SBBreakpointName_SetCondition()
11066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetCondition()
11070 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetCondition()
11077 lua_error(L); in _wrap_SBBreakpointName_SetCondition()
11082 static int _wrap_SBBreakpointName_GetCondition(lua_State* L) { in _wrap_SBBreakpointName_GetCondition() argument
11089 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetCondition",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointName_GetCondition()
11091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetCondition()
11096 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointName_GetCondition()
11101 lua_error(L); in _wrap_SBBreakpointName_GetCondition()
11106 static int _wrap_SBBreakpointName_SetAutoContinue(lua_State* L) { in _wrap_SBBreakpointName_SetAutoContinue() argument
11113 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAutoContinue",1,"lldb::SBBreakp… in _wrap_SBBreakpointName_SetAutoContinue()
11114 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAutoContinue",2,"bool"); in _wrap_SBBreakpointName_SetAutoContinue()
11116 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetAutoContinue()
11120 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointName_SetAutoContinue()
11127 lua_error(L); in _wrap_SBBreakpointName_SetAutoContinue()
11132 static int _wrap_SBBreakpointName_GetAutoContinue(lua_State* L) { in _wrap_SBBreakpointName_GetAutoContinue() argument
11139 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAutoContinue",1,"lldb::SBBreakp… in _wrap_SBBreakpointName_GetAutoContinue()
11141 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetAutoContinue()
11146 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_GetAutoContinue()
11151 lua_error(L); in _wrap_SBBreakpointName_GetAutoContinue()
11156 static int _wrap_SBBreakpointName_SetThreadID(lua_State* L) { in _wrap_SBBreakpointName_SetThreadID() argument
11163 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadID",1,"lldb::SBBreakpoint… in _wrap_SBBreakpointName_SetThreadID()
11164 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadID",2,"lldb::tid_t"); in _wrap_SBBreakpointName_SetThreadID()
11166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetThreadID()
11170 arg2 = (lldb::tid_t)lua_tointeger(L, 2); in _wrap_SBBreakpointName_SetThreadID()
11177 lua_error(L); in _wrap_SBBreakpointName_SetThreadID()
11182 static int _wrap_SBBreakpointName_GetThreadID(lua_State* L) { in _wrap_SBBreakpointName_GetThreadID() argument
11189 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetThreadID",1,"lldb::SBBreakpoint… in _wrap_SBBreakpointName_GetThreadID()
11191 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetThreadID()
11196 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointName_GetThreadID()
11201 lua_error(L); in _wrap_SBBreakpointName_GetThreadID()
11206 static int _wrap_SBBreakpointName_SetThreadIndex(lua_State* L) { in _wrap_SBBreakpointName_SetThreadIndex() argument
11213 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadIndex",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_SetThreadIndex()
11214 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadIndex",2,"uint32_t"); in _wrap_SBBreakpointName_SetThreadIndex()
11216 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetThreadIndex()
11220 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBreakpointName_SetThreadIndex()
11227 lua_error(L); in _wrap_SBBreakpointName_SetThreadIndex()
11232 static int _wrap_SBBreakpointName_GetThreadIndex(lua_State* L) { in _wrap_SBBreakpointName_GetThreadIndex() argument
11239 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetThreadIndex",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_GetThreadIndex()
11241 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetThreadIndex()
11246 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBreakpointName_GetThreadIndex()
11251 lua_error(L); in _wrap_SBBreakpointName_GetThreadIndex()
11256 static int _wrap_SBBreakpointName_SetThreadName(lua_State* L) { in _wrap_SBBreakpointName_SetThreadName() argument
11263 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadName",1,"lldb::SBBreakpoi… in _wrap_SBBreakpointName_SetThreadName()
11264 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetThreadName",2,"char const… in _wrap_SBBreakpointName_SetThreadName()
11266 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetThreadName()
11270 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetThreadName()
11277 lua_error(L); in _wrap_SBBreakpointName_SetThreadName()
11282 static int _wrap_SBBreakpointName_GetThreadName(lua_State* L) { in _wrap_SBBreakpointName_GetThreadName() argument
11289 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetThreadName",1,"lldb::SBBreakpoi… in _wrap_SBBreakpointName_GetThreadName()
11291 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetThreadName()
11296 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointName_GetThreadName()
11301 lua_error(L); in _wrap_SBBreakpointName_GetThreadName()
11306 static int _wrap_SBBreakpointName_SetQueueName(lua_State* L) { in _wrap_SBBreakpointName_SetQueueName() argument
11313 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetQueueName",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointName_SetQueueName()
11314 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetQueueName",2,"char const … in _wrap_SBBreakpointName_SetQueueName()
11316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetQueueName()
11320 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetQueueName()
11327 lua_error(L); in _wrap_SBBreakpointName_SetQueueName()
11332 static int _wrap_SBBreakpointName_GetQueueName(lua_State* L) { in _wrap_SBBreakpointName_GetQueueName() argument
11339 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetQueueName",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointName_GetQueueName()
11341 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetQueueName()
11346 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointName_GetQueueName()
11351 lua_error(L); in _wrap_SBBreakpointName_GetQueueName()
11356 static int _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0(lua_State* L) { in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0() argument
11363 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",1,"lldb… in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0()
11364 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",2… in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0()
11366 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0()
11370 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0()
11377 lua_error(L); in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0()
11382 static int _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1(lua_State* L) { in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1() argument
11391 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",1,"lldb… in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11392 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",2… in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11393 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackFunction",3,"lldb… in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11395 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11399 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11401 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11408 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11414 lua_error(L); in _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1()
11419 static int _wrap_SBBreakpointName_SetScriptCallbackFunction(lua_State* L) { in _wrap_SBBreakpointName_SetScriptCallbackFunction() argument
11425 argc = lua_gettop(L); in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11430 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11438 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11441 return _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_0(L); in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11449 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11457 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11462 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11469 return _wrap_SBBreakpointName_SetScriptCallbackFunction__SWIG_1(L); in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11475 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBreakpointName_SetScriptCallb… in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11479 lua_error(L);return 0; in _wrap_SBBreakpointName_SetScriptCallbackFunction()
11483 static int _wrap_SBBreakpointName_SetCommandLineCommands(lua_State* L) { in _wrap_SBBreakpointName_SetCommandLineCommands() argument
11490 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetCommandLineCommands",1,"lldb::S… in _wrap_SBBreakpointName_SetCommandLineCommands()
11491 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetCommandLineCommands",2,"lldb::S… in _wrap_SBBreakpointName_SetCommandLineCommands()
11493 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetCommandLineCommands()
11498 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpointName_SetCommandLineCommands()
11508 lua_error(L); in _wrap_SBBreakpointName_SetCommandLineCommands()
11513 static int _wrap_SBBreakpointName_GetCommandLineCommands(lua_State* L) { in _wrap_SBBreakpointName_GetCommandLineCommands() argument
11521 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetCommandLineCommands",1,"lldb::S… in _wrap_SBBreakpointName_GetCommandLineCommands()
11522 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::GetCommandLineCommands",2,"lldb::S… in _wrap_SBBreakpointName_GetCommandLineCommands()
11524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetCommandLineCommands()
11529 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBBreakpointName_GetCommandLineCommands()
11534 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_GetCommandLineCommands()
11539 lua_error(L); in _wrap_SBBreakpointName_GetCommandLineCommands()
11544 static int _wrap_SBBreakpointName_SetScriptCallbackBody(lua_State* L) { in _wrap_SBBreakpointName_SetScriptCallbackBody() argument
11552 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackBody",1,"lldb::SB… in _wrap_SBBreakpointName_SetScriptCallbackBody()
11553 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetScriptCallbackBody",2,"ch… in _wrap_SBBreakpointName_SetScriptCallbackBody()
11555 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetScriptCallbackBody()
11559 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetScriptCallbackBody()
11563 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBBreakpointName_SetScriptCallbackBody()
11569 lua_error(L); in _wrap_SBBreakpointName_SetScriptCallbackBody()
11574 static int _wrap_SBBreakpointName_GetHelpString(lua_State* L) { in _wrap_SBBreakpointName_GetHelpString() argument
11581 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetHelpString",1,"lldb::SBBreakpoi… in _wrap_SBBreakpointName_GetHelpString()
11583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetHelpString()
11588 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBreakpointName_GetHelpString()
11593 lua_error(L); in _wrap_SBBreakpointName_GetHelpString()
11598 static int _wrap_SBBreakpointName_SetHelpString(lua_State* L) { in _wrap_SBBreakpointName_SetHelpString() argument
11605 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetHelpString",1,"lldb::SBBreakpoi… in _wrap_SBBreakpointName_SetHelpString()
11606 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetHelpString",2,"char const… in _wrap_SBBreakpointName_SetHelpString()
11608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetHelpString()
11612 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBBreakpointName_SetHelpString()
11619 lua_error(L); in _wrap_SBBreakpointName_SetHelpString()
11624 static int _wrap_SBBreakpointName_GetAllowList(lua_State* L) { in _wrap_SBBreakpointName_GetAllowList() argument
11631 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAllowList",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointName_GetAllowList()
11633 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetAllowList()
11638 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_GetAllowList()
11643 lua_error(L); in _wrap_SBBreakpointName_GetAllowList()
11648 static int _wrap_SBBreakpointName_SetAllowList(lua_State* L) { in _wrap_SBBreakpointName_SetAllowList() argument
11655 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowList",1,"lldb::SBBreakpoin… in _wrap_SBBreakpointName_SetAllowList()
11656 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowList",2,"bool"); in _wrap_SBBreakpointName_SetAllowList()
11658 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetAllowList()
11662 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointName_SetAllowList()
11669 lua_error(L); in _wrap_SBBreakpointName_SetAllowList()
11674 static int _wrap_SBBreakpointName_GetAllowDelete(lua_State* L) { in _wrap_SBBreakpointName_GetAllowDelete() argument
11681 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAllowDelete",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_GetAllowDelete()
11683 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetAllowDelete()
11688 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_GetAllowDelete()
11693 lua_error(L); in _wrap_SBBreakpointName_GetAllowDelete()
11698 static int _wrap_SBBreakpointName_SetAllowDelete(lua_State* L) { in _wrap_SBBreakpointName_SetAllowDelete() argument
11705 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDelete",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_SetAllowDelete()
11706 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDelete",2,"bool"); in _wrap_SBBreakpointName_SetAllowDelete()
11708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetAllowDelete()
11712 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointName_SetAllowDelete()
11719 lua_error(L); in _wrap_SBBreakpointName_SetAllowDelete()
11724 static int _wrap_SBBreakpointName_GetAllowDisable(lua_State* L) { in _wrap_SBBreakpointName_GetAllowDisable() argument
11731 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetAllowDisable",1,"lldb::SBBreakp… in _wrap_SBBreakpointName_GetAllowDisable()
11733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetAllowDisable()
11738 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_GetAllowDisable()
11743 lua_error(L); in _wrap_SBBreakpointName_GetAllowDisable()
11748 static int _wrap_SBBreakpointName_SetAllowDisable(lua_State* L) { in _wrap_SBBreakpointName_SetAllowDisable() argument
11755 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDisable",1,"lldb::SBBreakp… in _wrap_SBBreakpointName_SetAllowDisable()
11756 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::SetAllowDisable",2,"bool"); in _wrap_SBBreakpointName_SetAllowDisable()
11758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_SetAllowDisable()
11762 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBBreakpointName_SetAllowDisable()
11769 lua_error(L); in _wrap_SBBreakpointName_SetAllowDisable()
11774 static int _wrap_SBBreakpointName_GetDescription(lua_State* L) { in _wrap_SBBreakpointName_GetDescription() argument
11782 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::GetDescription",1,"lldb::SBBreakpo… in _wrap_SBBreakpointName_GetDescription()
11783 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBreakpointName::GetDescription",2,"lldb::SBStream … in _wrap_SBBreakpointName_GetDescription()
11785 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName_GetDescription()
11790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBBreakpointName_GetDescription()
11795 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBreakpointName_GetDescription()
11800 lua_error(L); in _wrap_SBBreakpointName_GetDescription()
11805 static int _wrap_SBBreakpointName___tostring(lua_State* L) { in _wrap_SBBreakpointName___tostring() argument
11812 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBreakpointName::__repr__",1,"lldb::SBBreakpointNam… in _wrap_SBBreakpointName___tostring()
11814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBreakpointName,0))){ in _wrap_SBBreakpointName___tostring()
11819 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBBreakpointName___tostring()
11824 lua_error(L); in _wrap_SBBreakpointName___tostring()
11833 static int _proxy__wrap_new_SBBreakpointName(lua_State *L) { in _proxy__wrap_new_SBBreakpointName() argument
11834 assert(lua_istable(L,1)); in _proxy__wrap_new_SBBreakpointName()
11835 lua_pushcfunction(L,_wrap_new_SBBreakpointName); in _proxy__wrap_new_SBBreakpointName()
11836 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBBreakpointName()
11837 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBBreakpointName()
11838 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBBreakpointName()
11913 static int _wrap_new_SBBroadcaster__SWIG_0(lua_State* L) { in _wrap_new_SBBroadcaster__SWIG_0() argument
11920 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_new_SBBroadcaster__SWIG_0()
11925 lua_error(L); in _wrap_new_SBBroadcaster__SWIG_0()
11930 static int _wrap_new_SBBroadcaster__SWIG_1(lua_State* L) { in _wrap_new_SBBroadcaster__SWIG_1() argument
11937 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::SBBroadcaster",1,"char const *"… in _wrap_new_SBBroadcaster__SWIG_1()
11938 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBBroadcaster__SWIG_1()
11940 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_new_SBBroadcaster__SWIG_1()
11945 lua_error(L); in _wrap_new_SBBroadcaster__SWIG_1()
11950 static int _wrap_new_SBBroadcaster__SWIG_2(lua_State* L) { in _wrap_new_SBBroadcaster__SWIG_2() argument
11957 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::SBBroadcaster",1,"lldb::SBBroadcaster… in _wrap_new_SBBroadcaster__SWIG_2()
11959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_new_SBBroadcaster__SWIG_2()
11964 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_new_SBBroadcaster__SWIG_2()
11969 lua_error(L); in _wrap_new_SBBroadcaster__SWIG_2()
11974 static int _wrap_new_SBBroadcaster(lua_State* L) { in _wrap_new_SBBroadcaster() argument
11980 argc = lua_gettop(L); in _wrap_new_SBBroadcaster()
11982 return _wrap_new_SBBroadcaster__SWIG_0(L); in _wrap_new_SBBroadcaster()
11988 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBBroadcaster()
11995 return _wrap_new_SBBroadcaster__SWIG_2(L); in _wrap_new_SBBroadcaster()
12001 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBBroadcaster()
12004 return _wrap_new_SBBroadcaster__SWIG_1(L); in _wrap_new_SBBroadcaster()
12008 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBBroadcaster'\n" in _wrap_new_SBBroadcaster()
12013 lua_error(L);return 0; in _wrap_new_SBBroadcaster()
12017 static int _wrap_SBBroadcaster_IsValid(lua_State* L) { in _wrap_SBBroadcaster_IsValid() argument
12024 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::IsValid",1,"lldb::SBBroadcaster const… in _wrap_SBBroadcaster_IsValid()
12026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_IsValid()
12031 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBroadcaster_IsValid()
12036 lua_error(L); in _wrap_SBBroadcaster_IsValid()
12041 static int _wrap_SBBroadcaster_Clear(lua_State* L) { in _wrap_SBBroadcaster_Clear() argument
12047 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::Clear",1,"lldb::SBBroadcaster *"); in _wrap_SBBroadcaster_Clear()
12049 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_Clear()
12059 lua_error(L); in _wrap_SBBroadcaster_Clear()
12064 static int _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0(lua_State* L) { in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0() argument
12072 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",1,"lldb::SBBroa… in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12073 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",2,"uint32_t"); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12074 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",3,"bool"); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12076 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12080 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12081 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12088 lua_error(L); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0()
12093 static int _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1(lua_State* L) { in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1() argument
12100 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",1,"lldb::SBBroa… in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1()
12101 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEventByType",2,"uint32_t"); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1()
12103 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1()
12107 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1()
12114 lua_error(L); in _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1()
12119 static int _wrap_SBBroadcaster_BroadcastEventByType(lua_State* L) { in _wrap_SBBroadcaster_BroadcastEventByType() argument
12125 argc = lua_gettop(L); in _wrap_SBBroadcaster_BroadcastEventByType()
12130 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_BroadcastEventByType()
12138 _v = lua_isnumber(L,argv[1]); in _wrap_SBBroadcaster_BroadcastEventByType()
12141 return _wrap_SBBroadcaster_BroadcastEventByType__SWIG_1(L); in _wrap_SBBroadcaster_BroadcastEventByType()
12149 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_BroadcastEventByType()
12157 _v = lua_isnumber(L,argv[1]); in _wrap_SBBroadcaster_BroadcastEventByType()
12161 _v = lua_isboolean(L,argv[2]); in _wrap_SBBroadcaster_BroadcastEventByType()
12164 return _wrap_SBBroadcaster_BroadcastEventByType__SWIG_0(L); in _wrap_SBBroadcaster_BroadcastEventByType()
12170 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBroadcaster_BroadcastEventByT… in _wrap_SBBroadcaster_BroadcastEventByType()
12174 lua_error(L);return 0; in _wrap_SBBroadcaster_BroadcastEventByType()
12178 static int _wrap_SBBroadcaster_BroadcastEvent__SWIG_0(lua_State* L) { in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0() argument
12186 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",1,"lldb::SBBroadcaste… in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12187 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",2,"lldb::SBEvent cons… in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12188 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",3,"bool"); in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12190 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12195 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12199 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12206 lua_error(L); in _wrap_SBBroadcaster_BroadcastEvent__SWIG_0()
12211 static int _wrap_SBBroadcaster_BroadcastEvent__SWIG_1(lua_State* L) { in _wrap_SBBroadcaster_BroadcastEvent__SWIG_1() argument
12218 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",1,"lldb::SBBroadcaste… in _wrap_SBBroadcaster_BroadcastEvent__SWIG_1()
12219 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::BroadcastEvent",2,"lldb::SBEvent cons… in _wrap_SBBroadcaster_BroadcastEvent__SWIG_1()
12221 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_BroadcastEvent__SWIG_1()
12226 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBBroadcaster_BroadcastEvent__SWIG_1()
12236 lua_error(L); in _wrap_SBBroadcaster_BroadcastEvent__SWIG_1()
12241 static int _wrap_SBBroadcaster_BroadcastEvent(lua_State* L) { in _wrap_SBBroadcaster_BroadcastEvent() argument
12247 argc = lua_gettop(L); in _wrap_SBBroadcaster_BroadcastEvent()
12252 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_BroadcastEvent()
12261 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_BroadcastEvent()
12268 return _wrap_SBBroadcaster_BroadcastEvent__SWIG_1(L); in _wrap_SBBroadcaster_BroadcastEvent()
12276 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_BroadcastEvent()
12285 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_BroadcastEvent()
12293 _v = lua_isboolean(L,argv[2]); in _wrap_SBBroadcaster_BroadcastEvent()
12296 return _wrap_SBBroadcaster_BroadcastEvent__SWIG_0(L); in _wrap_SBBroadcaster_BroadcastEvent()
12302 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBroadcaster_BroadcastEvent'\n" in _wrap_SBBroadcaster_BroadcastEvent()
12306 lua_error(L);return 0; in _wrap_SBBroadcaster_BroadcastEvent()
12310 static int _wrap_SBBroadcaster_AddInitialEventsToListener(lua_State* L) { in _wrap_SBBroadcaster_AddInitialEventsToListener() argument
12318 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::AddInitialEventsToListener",1,"lldb::… in _wrap_SBBroadcaster_AddInitialEventsToListener()
12319 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::AddInitialEventsToListener",2,"lldb::… in _wrap_SBBroadcaster_AddInitialEventsToListener()
12320 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::AddInitialEventsToListener",3,"uint32_… in _wrap_SBBroadcaster_AddInitialEventsToListener()
12322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_AddInitialEventsToListener()
12327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBBroadcaster_AddInitialEventsToListener()
12331 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBBroadcaster_AddInitialEventsToListener()
12338 lua_error(L); in _wrap_SBBroadcaster_AddInitialEventsToListener()
12343 static int _wrap_SBBroadcaster_AddListener(lua_State* L) { in _wrap_SBBroadcaster_AddListener() argument
12352 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::AddListener",1,"lldb::SBBroadcaster *… in _wrap_SBBroadcaster_AddListener()
12353 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::AddListener",2,"lldb::SBListener cons… in _wrap_SBBroadcaster_AddListener()
12354 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::AddListener",3,"uint32_t"); in _wrap_SBBroadcaster_AddListener()
12356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_AddListener()
12361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBBroadcaster_AddListener()
12365 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBBroadcaster_AddListener()
12367 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBBroadcaster_AddListener()
12372 lua_error(L); in _wrap_SBBroadcaster_AddListener()
12377 static int _wrap_SBBroadcaster_GetName(lua_State* L) { in _wrap_SBBroadcaster_GetName() argument
12384 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::GetName",1,"lldb::SBBroadcaster const… in _wrap_SBBroadcaster_GetName()
12386 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_GetName()
12391 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBBroadcaster_GetName()
12396 lua_error(L); in _wrap_SBBroadcaster_GetName()
12401 static int _wrap_SBBroadcaster_EventTypeHasListeners(lua_State* L) { in _wrap_SBBroadcaster_EventTypeHasListeners() argument
12409 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::EventTypeHasListeners",1,"lldb::SBBro… in _wrap_SBBroadcaster_EventTypeHasListeners()
12410 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::EventTypeHasListeners",2,"uint32_t"); in _wrap_SBBroadcaster_EventTypeHasListeners()
12412 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_EventTypeHasListeners()
12416 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBBroadcaster_EventTypeHasListeners()
12418 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBroadcaster_EventTypeHasListeners()
12423 lua_error(L); in _wrap_SBBroadcaster_EventTypeHasListeners()
12428 static int _wrap_SBBroadcaster_RemoveListener__SWIG_0(lua_State* L) { in _wrap_SBBroadcaster_RemoveListener__SWIG_0() argument
12437 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",1,"lldb::SBBroadcaste… in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12438 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",2,"lldb::SBListener c… in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12439 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",3,"uint32_t"); in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12446 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12450 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12452 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12457 lua_error(L); in _wrap_SBBroadcaster_RemoveListener__SWIG_0()
12462 static int _wrap_SBBroadcaster_RemoveListener__SWIG_1(lua_State* L) { in _wrap_SBBroadcaster_RemoveListener__SWIG_1() argument
12470 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",1,"lldb::SBBroadcaste… in _wrap_SBBroadcaster_RemoveListener__SWIG_1()
12471 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::RemoveListener",2,"lldb::SBListener c… in _wrap_SBBroadcaster_RemoveListener__SWIG_1()
12473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster_RemoveListener__SWIG_1()
12478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBBroadcaster_RemoveListener__SWIG_1()
12483 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBroadcaster_RemoveListener__SWIG_1()
12488 lua_error(L); in _wrap_SBBroadcaster_RemoveListener__SWIG_1()
12493 static int _wrap_SBBroadcaster_RemoveListener(lua_State* L) { in _wrap_SBBroadcaster_RemoveListener() argument
12499 argc = lua_gettop(L); in _wrap_SBBroadcaster_RemoveListener()
12504 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_RemoveListener()
12513 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_RemoveListener()
12520 return _wrap_SBBroadcaster_RemoveListener__SWIG_1(L); in _wrap_SBBroadcaster_RemoveListener()
12528 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_RemoveListener()
12537 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBBroadcaster_RemoveListener()
12545 _v = lua_isnumber(L,argv[2]); in _wrap_SBBroadcaster_RemoveListener()
12548 return _wrap_SBBroadcaster_RemoveListener__SWIG_0(L); in _wrap_SBBroadcaster_RemoveListener()
12554 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBBroadcaster_RemoveListener'\n" in _wrap_SBBroadcaster_RemoveListener()
12558 lua_error(L);return 0; in _wrap_SBBroadcaster_RemoveListener()
12562 static int _wrap_SBBroadcaster___eq(lua_State* L) { in _wrap_SBBroadcaster___eq() argument
12570 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::operator ==",1,"lldb::SBBroadcaster c… in _wrap_SBBroadcaster___eq()
12571 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::operator ==",2,"lldb::SBBroadcaster c… in _wrap_SBBroadcaster___eq()
12573 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster___eq()
12578 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster___eq()
12583 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBroadcaster___eq()
12588 lua_error(L); in _wrap_SBBroadcaster___eq()
12593 static int _wrap_SBBroadcaster___lt(lua_State* L) { in _wrap_SBBroadcaster___lt() argument
12601 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBBroadcaster::operator <",1,"lldb::SBBroadcaster co… in _wrap_SBBroadcaster___lt()
12602 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBBroadcaster::operator <",2,"lldb::SBBroadcaster co… in _wrap_SBBroadcaster___lt()
12604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster___lt()
12609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBBroadcaster___lt()
12614 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBBroadcaster___lt()
12619 lua_error(L); in _wrap_SBBroadcaster___lt()
12628 static int _proxy__wrap_new_SBBroadcaster(lua_State *L) { in _proxy__wrap_new_SBBroadcaster() argument
12629 assert(lua_istable(L,1)); in _proxy__wrap_new_SBBroadcaster()
12630 lua_pushcfunction(L,_wrap_new_SBBroadcaster); in _proxy__wrap_new_SBBroadcaster()
12631 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBBroadcaster()
12632 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBBroadcaster()
12633 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBBroadcaster()
12684 static int _wrap_new_SBCommandInterpreter__SWIG_0(lua_State* L) { in _wrap_new_SBCommandInterpreter__SWIG_0() argument
12691 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreter,1); SWIG_arg++; in _wrap_new_SBCommandInterpreter__SWIG_0()
12696 lua_error(L); in _wrap_new_SBCommandInterpreter__SWIG_0()
12701 static int _wrap_new_SBCommandInterpreter__SWIG_1(lua_State* L) { in _wrap_new_SBCommandInterpreter__SWIG_1() argument
12708 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SBCommandInterpreter",1,"lldb:… in _wrap_new_SBCommandInterpreter__SWIG_1()
12710 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_new_SBCommandInterpreter__SWIG_1()
12715 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreter,1); SWIG_arg++; in _wrap_new_SBCommandInterpreter__SWIG_1()
12720 lua_error(L); in _wrap_new_SBCommandInterpreter__SWIG_1()
12725 static int _wrap_new_SBCommandInterpreter(lua_State* L) { in _wrap_new_SBCommandInterpreter() argument
12731 argc = lua_gettop(L); in _wrap_new_SBCommandInterpreter()
12733 return _wrap_new_SBCommandInterpreter__SWIG_0(L); in _wrap_new_SBCommandInterpreter()
12739 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBCommandInterpreter()
12746 return _wrap_new_SBCommandInterpreter__SWIG_1(L); in _wrap_new_SBCommandInterpreter()
12750 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommandInterpreter'\n" in _wrap_new_SBCommandInterpreter()
12754 lua_error(L);return 0; in _wrap_new_SBCommandInterpreter()
12758 static int _wrap_SBCommandInterpreter_GetArgumentTypeAsCString(lua_State* L) { in _wrap_SBCommandInterpreter_GetArgumentTypeAsCString() argument
12765 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetArgumentTypeAsCString",1,"ll… in _wrap_SBCommandInterpreter_GetArgumentTypeAsCString()
12766 arg1 = (lldb::CommandArgumentType const)lua_tointeger(L, 1); in _wrap_SBCommandInterpreter_GetArgumentTypeAsCString()
12768 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandInterpreter_GetArgumentTypeAsCString()
12773 lua_error(L); in _wrap_SBCommandInterpreter_GetArgumentTypeAsCString()
12778 static int _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString(lua_State* L) { in _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString() argument
12785 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetArgumentDescriptionAsCString… in _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString()
12786 arg1 = (lldb::CommandArgumentType const)lua_tointeger(L, 1); in _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString()
12788 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString()
12793 lua_error(L); in _wrap_SBCommandInterpreter_GetArgumentDescriptionAsCString()
12798 static int _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent(lua_State* L) { in _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent() argument
12805 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::EventIsCommandInterpreterEvent… in _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent()
12807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent()
12812 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent()
12817 lua_error(L); in _wrap_SBCommandInterpreter_EventIsCommandInterpreterEvent()
12822 static int _wrap_SBCommandInterpreter_IsValid(lua_State* L) { in _wrap_SBCommandInterpreter_IsValid() argument
12829 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::IsValid",1,"lldb::SBCommandInt… in _wrap_SBCommandInterpreter_IsValid()
12831 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_IsValid()
12836 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_IsValid()
12841 lua_error(L); in _wrap_SBCommandInterpreter_IsValid()
12846 static int _wrap_SBCommandInterpreter_CommandExists(lua_State* L) { in _wrap_SBCommandInterpreter_CommandExists() argument
12854 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::CommandExists",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_CommandExists()
12855 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::CommandExists",2,"char c… in _wrap_SBCommandInterpreter_CommandExists()
12857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_CommandExists()
12861 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_CommandExists()
12863 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_CommandExists()
12868 lua_error(L); in _wrap_SBCommandInterpreter_CommandExists()
12873 static int _wrap_SBCommandInterpreter_UserCommandExists(lua_State* L) { in _wrap_SBCommandInterpreter_UserCommandExists() argument
12881 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::UserCommandExists",1,"lldb::SB… in _wrap_SBCommandInterpreter_UserCommandExists()
12882 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::UserCommandExists",2,"ch… in _wrap_SBCommandInterpreter_UserCommandExists()
12884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_UserCommandExists()
12888 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_UserCommandExists()
12890 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_UserCommandExists()
12895 lua_error(L); in _wrap_SBCommandInterpreter_UserCommandExists()
12900 static int _wrap_SBCommandInterpreter_AliasExists(lua_State* L) { in _wrap_SBCommandInterpreter_AliasExists() argument
12908 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::AliasExists",1,"lldb::SBComman… in _wrap_SBCommandInterpreter_AliasExists()
12909 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::AliasExists",2,"char con… in _wrap_SBCommandInterpreter_AliasExists()
12911 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_AliasExists()
12915 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_AliasExists()
12917 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_AliasExists()
12922 lua_error(L); in _wrap_SBCommandInterpreter_AliasExists()
12927 static int _wrap_SBCommandInterpreter_GetBroadcaster(lua_State* L) { in _wrap_SBCommandInterpreter_GetBroadcaster() argument
12934 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetBroadcaster",1,"lldb::SBCom… in _wrap_SBCommandInterpreter_GetBroadcaster()
12936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetBroadcaster()
12943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_SBCommandInterpreter_GetBroadcaster()
12949 lua_error(L); in _wrap_SBCommandInterpreter_GetBroadcaster()
12954 static int _wrap_SBCommandInterpreter_GetBroadcasterClass(lua_State* L) { in _wrap_SBCommandInterpreter_GetBroadcasterClass() argument
12961 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandInterpreter_GetBroadcasterClass()
12966 lua_error(L); in _wrap_SBCommandInterpreter_GetBroadcasterClass()
12971 static int _wrap_SBCommandInterpreter_HasCommands(lua_State* L) { in _wrap_SBCommandInterpreter_HasCommands() argument
12978 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasCommands",1,"lldb::SBComman… in _wrap_SBCommandInterpreter_HasCommands()
12980 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HasCommands()
12985 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_HasCommands()
12990 lua_error(L); in _wrap_SBCommandInterpreter_HasCommands()
12995 static int _wrap_SBCommandInterpreter_HasAliases(lua_State* L) { in _wrap_SBCommandInterpreter_HasAliases() argument
13002 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasAliases",1,"lldb::SBCommand… in _wrap_SBCommandInterpreter_HasAliases()
13004 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HasAliases()
13009 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_HasAliases()
13014 lua_error(L); in _wrap_SBCommandInterpreter_HasAliases()
13019 static int _wrap_SBCommandInterpreter_HasAliasOptions(lua_State* L) { in _wrap_SBCommandInterpreter_HasAliasOptions() argument
13026 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasAliasOptions",1,"lldb::SBCo… in _wrap_SBCommandInterpreter_HasAliasOptions()
13028 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HasAliasOptions()
13033 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_HasAliasOptions()
13038 lua_error(L); in _wrap_SBCommandInterpreter_HasAliasOptions()
13043 static int _wrap_SBCommandInterpreter_IsInteractive(lua_State* L) { in _wrap_SBCommandInterpreter_IsInteractive() argument
13050 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::IsInteractive",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_IsInteractive()
13052 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_IsInteractive()
13057 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_IsInteractive()
13062 lua_error(L); in _wrap_SBCommandInterpreter_IsInteractive()
13067 static int _wrap_SBCommandInterpreter_GetProcess(lua_State* L) { in _wrap_SBCommandInterpreter_GetProcess() argument
13074 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetProcess",1,"lldb::SBCommand… in _wrap_SBCommandInterpreter_GetProcess()
13076 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetProcess()
13083 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBCommandInterpreter_GetProcess()
13089 lua_error(L); in _wrap_SBCommandInterpreter_GetProcess()
13094 static int _wrap_SBCommandInterpreter_GetDebugger(lua_State* L) { in _wrap_SBCommandInterpreter_GetDebugger() argument
13101 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetDebugger",1,"lldb::SBComman… in _wrap_SBCommandInterpreter_GetDebugger()
13103 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetDebugger()
13110 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_SBCommandInterpreter_GetDebugger()
13116 lua_error(L); in _wrap_SBCommandInterpreter_GetDebugger()
13121 static int _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0(lua_State* L) { in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0() argument
13128 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory"… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0()
13129 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory"… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0()
13131 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0()
13136 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0()
13146 lua_error(L); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0()
13151 static int _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1(lua_State* L) { in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1() argument
13159 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory"… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13160 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory"… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13161 …if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInHomeDirectory",… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13172 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13179 lua_error(L); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1()
13184 static int _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory(lua_State* L) { in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory() argument
13190 argc = lua_gettop(L); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13195 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13204 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13211 return _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_0(L); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13219 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13228 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13236 _v = lua_isboolean(L,argv[2]); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13239 return _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory__SWIG_1(L); in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13245 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandInterpreter_SourceInit… in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13249 lua_error(L);return 0; in _wrap_SBCommandInterpreter_SourceInitFileInHomeDirectory()
13253 static int _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory(lua_State* L) { in _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory() argument
13260 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInCurrentWorking… in _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory()
13261 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SourceInitFileInCurrentWorking… in _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory()
13263 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory()
13268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory()
13278 lua_error(L); in _wrap_SBCommandInterpreter_SourceInitFileInCurrentWorkingDirectory()
13283 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_0(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0() argument
13293 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13294 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char c… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13295 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13296 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",4,"bool"); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13302 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13308 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13310 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13315 lua_error(L); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_0()
13320 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_1(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1() argument
13329 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13330 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char c… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13331 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13337 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13339 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13344 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13349 lua_error(L); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_1()
13354 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_2(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2() argument
13365 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13366 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char c… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13367 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBExec… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13368 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",4,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13369 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",5,"bool"); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13371 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13375 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13377 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13386 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13388 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13393 lua_error(L); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_2()
13398 static int _wrap_SBCommandInterpreter_HandleCommand__SWIG_3(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3() argument
13408 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13409 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",2,"char c… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13410 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",3,"lldb::SBExec… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13411 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommand",4,"lldb::SBComm… in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13413 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13417 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13424 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13429 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13434 lua_error(L); in _wrap_SBCommandInterpreter_HandleCommand__SWIG_3()
13439 static int _wrap_SBCommandInterpreter_HandleCommand(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCommand() argument
13445 argc = lua_gettop(L); in _wrap_SBCommandInterpreter_HandleCommand()
13450 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13458 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandInterpreter_HandleCommand()
13463 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13470 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_1(L); in _wrap_SBCommandInterpreter_HandleCommand()
13479 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13487 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandInterpreter_HandleCommand()
13492 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13500 _v = lua_isboolean(L,argv[3]); in _wrap_SBCommandInterpreter_HandleCommand()
13503 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_0(L); in _wrap_SBCommandInterpreter_HandleCommand()
13513 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13521 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandInterpreter_HandleCommand()
13526 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13535 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13542 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_3(L); in _wrap_SBCommandInterpreter_HandleCommand()
13552 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13560 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandInterpreter_HandleCommand()
13565 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13574 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandInterpreter_HandleCommand()
13582 _v = lua_isboolean(L,argv[4]); in _wrap_SBCommandInterpreter_HandleCommand()
13585 return _wrap_SBCommandInterpreter_HandleCommand__SWIG_2(L); in _wrap_SBCommandInterpreter_HandleCommand()
13593 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandInterpreter_HandleComm… in _wrap_SBCommandInterpreter_HandleCommand()
13599 lua_error(L);return 0; in _wrap_SBCommandInterpreter_HandleCommand()
13603 static int _wrap_SBCommandInterpreter_HandleCommandsFromFile(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCommandsFromFile() argument
13614 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",1,"lld… in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13615 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",2,"lld… in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13616 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",3,"lld… in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13617 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",4,"lld… in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13618 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCommandsFromFile",5,"lld… in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13620 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13625 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13635 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&argp5,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13651 lua_error(L); in _wrap_SBCommandInterpreter_HandleCommandsFromFile()
13656 static int _wrap_SBCommandInterpreter_HandleCompletion(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCompletion() argument
13668 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",1,"lldb::SBC… in _wrap_SBCommandInterpreter_HandleCompletion()
13669 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",2,"cha… in _wrap_SBCommandInterpreter_HandleCompletion()
13670 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",3,"uint32_t"); in _wrap_SBCommandInterpreter_HandleCompletion()
13671 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",4,"int"); in _wrap_SBCommandInterpreter_HandleCompletion()
13672 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",5,"int"); in _wrap_SBCommandInterpreter_HandleCompletion()
13673 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletion",6,"lldb::SBS… in _wrap_SBCommandInterpreter_HandleCompletion()
13675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCompletion()
13679 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_HandleCompletion()
13680 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBCommandInterpreter_HandleCompletion()
13681 arg4 = (int)lua_tointeger(L, 4); in _wrap_SBCommandInterpreter_HandleCompletion()
13682 arg5 = (int)lua_tointeger(L, 5); in _wrap_SBCommandInterpreter_HandleCompletion()
13684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBCommandInterpreter_HandleCompletion()
13689 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_HandleCompletion()
13694 lua_error(L); in _wrap_SBCommandInterpreter_HandleCompletion()
13699 static int _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions(lua_State* L) { in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions() argument
13712 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptio… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13713 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDesc… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13714 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescription… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13715 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescription… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13716 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescription… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13717 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptio… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13718 …if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBCommandInterpreter::HandleCompletionWithDescriptio… in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13720 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13724 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13725 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13726 arg4 = (int)lua_tointeger(L, 4); in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13727 arg5 = (int)lua_tointeger(L, 5); in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13734 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13739 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13744 lua_error(L); in _wrap_SBCommandInterpreter_HandleCompletionWithDescriptions()
13749 static int _wrap_SBCommandInterpreter_WasInterrupted(lua_State* L) { in _wrap_SBCommandInterpreter_WasInterrupted() argument
13756 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::WasInterrupted",1,"lldb::SBCom… in _wrap_SBCommandInterpreter_WasInterrupted()
13758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_WasInterrupted()
13763 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_WasInterrupted()
13768 lua_error(L); in _wrap_SBCommandInterpreter_WasInterrupted()
13773 static int _wrap_SBCommandInterpreter_InterruptCommand(lua_State* L) { in _wrap_SBCommandInterpreter_InterruptCommand() argument
13780 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::InterruptCommand",1,"lldb::SBC… in _wrap_SBCommandInterpreter_InterruptCommand()
13782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_InterruptCommand()
13787 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_InterruptCommand()
13792 lua_error(L); in _wrap_SBCommandInterpreter_InterruptCommand()
13797 static int _wrap_SBCommandInterpreter_SetCommandOverrideCallback(lua_State* L) { in _wrap_SBCommandInterpreter_SetCommandOverrideCallback() argument
13807 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",1,… in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13808 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallba… in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13809 …if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",3,… in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13810 …if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetCommandOverrideCallback",4,… in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13812 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13816 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13818 … if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_f_p_void_p_p_q_const__char__bool,0))){ in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13822 arg4=(void *)SWIG_MustGetPtr(L,4,0,0,4,"SBCommandInterpreter_SetCommandOverrideCallback"); in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13824 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13829 lua_error(L); in _wrap_SBCommandInterpreter_SetCommandOverrideCallback()
13834 static int _wrap_SBCommandInterpreter_IsActive(lua_State* L) { in _wrap_SBCommandInterpreter_IsActive() argument
13841 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::IsActive",1,"lldb::SBCommandIn… in _wrap_SBCommandInterpreter_IsActive()
13843 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_IsActive()
13848 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_IsActive()
13853 lua_error(L); in _wrap_SBCommandInterpreter_IsActive()
13858 static int _wrap_SBCommandInterpreter_GetIOHandlerControlSequence(lua_State* L) { in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence() argument
13866 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetIOHandlerControlSequence",1… in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence()
13867 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetIOHandlerControlSeque… in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence()
13869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence()
13873 arg2 = (lua_tostring(L, 2))[0]; in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence()
13875 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence()
13880 lua_error(L); in _wrap_SBCommandInterpreter_GetIOHandlerControlSequence()
13885 static int _wrap_SBCommandInterpreter_GetPromptOnQuit(lua_State* L) { in _wrap_SBCommandInterpreter_GetPromptOnQuit() argument
13892 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetPromptOnQuit",1,"lldb::SBCo… in _wrap_SBCommandInterpreter_GetPromptOnQuit()
13894 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetPromptOnQuit()
13899 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_GetPromptOnQuit()
13904 lua_error(L); in _wrap_SBCommandInterpreter_GetPromptOnQuit()
13909 static int _wrap_SBCommandInterpreter_SetPromptOnQuit(lua_State* L) { in _wrap_SBCommandInterpreter_SetPromptOnQuit() argument
13916 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetPromptOnQuit",1,"lldb::SBCo… in _wrap_SBCommandInterpreter_SetPromptOnQuit()
13917 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::SetPromptOnQuit",2,"bool"); in _wrap_SBCommandInterpreter_SetPromptOnQuit()
13919 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_SetPromptOnQuit()
13923 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreter_SetPromptOnQuit()
13930 lua_error(L); in _wrap_SBCommandInterpreter_SetPromptOnQuit()
13935 static int _wrap_SBCommandInterpreter_AllowExitCodeOnQuit(lua_State* L) { in _wrap_SBCommandInterpreter_AllowExitCodeOnQuit() argument
13942 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::AllowExitCodeOnQuit",1,"lldb::… in _wrap_SBCommandInterpreter_AllowExitCodeOnQuit()
13943 … if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::AllowExitCodeOnQuit",2,"bool"); in _wrap_SBCommandInterpreter_AllowExitCodeOnQuit()
13945 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_AllowExitCodeOnQuit()
13949 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreter_AllowExitCodeOnQuit()
13956 lua_error(L); in _wrap_SBCommandInterpreter_AllowExitCodeOnQuit()
13961 static int _wrap_SBCommandInterpreter_HasCustomQuitExitCode(lua_State* L) { in _wrap_SBCommandInterpreter_HasCustomQuitExitCode() argument
13968 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::HasCustomQuitExitCode",1,"lldb… in _wrap_SBCommandInterpreter_HasCustomQuitExitCode()
13970 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_HasCustomQuitExitCode()
13975 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreter_HasCustomQuitExitCode()
13980 lua_error(L); in _wrap_SBCommandInterpreter_HasCustomQuitExitCode()
13985 static int _wrap_SBCommandInterpreter_GetQuitStatus(lua_State* L) { in _wrap_SBCommandInterpreter_GetQuitStatus() argument
13992 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetQuitStatus",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_GetQuitStatus()
13994 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetQuitStatus()
13999 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandInterpreter_GetQuitStatus()
14004 lua_error(L); in _wrap_SBCommandInterpreter_GetQuitStatus()
14009 static int _wrap_SBCommandInterpreter_ResolveCommand(lua_State* L) { in _wrap_SBCommandInterpreter_ResolveCommand() argument
14017 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::ResolveCommand",1,"lldb::SBCom… in _wrap_SBCommandInterpreter_ResolveCommand()
14018 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreter::ResolveCommand",2,"char … in _wrap_SBCommandInterpreter_ResolveCommand()
14019 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCommandInterpreter::ResolveCommand",3,"lldb::SBCom… in _wrap_SBCommandInterpreter_ResolveCommand()
14021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_ResolveCommand()
14025 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandInterpreter_ResolveCommand()
14027 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandInterpreter_ResolveCommand()
14037 lua_error(L); in _wrap_SBCommandInterpreter_ResolveCommand()
14042 static int _wrap_SBCommandInterpreter_GetStatistics(lua_State* L) { in _wrap_SBCommandInterpreter_GetStatistics() argument
14049 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetStatistics",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_GetStatistics()
14051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetStatistics()
14058 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBCommandInterpreter_GetStatistics()
14064 lua_error(L); in _wrap_SBCommandInterpreter_GetStatistics()
14069 static int _wrap_SBCommandInterpreter_GetTranscript(lua_State* L) { in _wrap_SBCommandInterpreter_GetTranscript() argument
14076 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreter::GetTranscript",1,"lldb::SBComm… in _wrap_SBCommandInterpreter_GetTranscript()
14078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreter,0))){ in _wrap_SBCommandInterpreter_GetTranscript()
14085 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBCommandInterpreter_GetTranscript()
14091 lua_error(L); in _wrap_SBCommandInterpreter_GetTranscript()
14100 static int _proxy__wrap_new_SBCommandInterpreter(lua_State *L) { in _proxy__wrap_new_SBCommandInterpreter() argument
14101 assert(lua_istable(L,1)); in _proxy__wrap_new_SBCommandInterpreter()
14102 lua_pushcfunction(L,_wrap_new_SBCommandInterpreter); in _proxy__wrap_new_SBCommandInterpreter()
14103 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBCommandInterpreter()
14104 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBCommandInterpreter()
14105 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBCommandInterpreter()
14182 static int _wrap_new_SBCommandInterpreterRunOptions__SWIG_0(lua_State* L) { in _wrap_new_SBCommandInterpreterRunOptions__SWIG_0() argument
14189 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,1); SWIG_arg++; in _wrap_new_SBCommandInterpreterRunOptions__SWIG_0()
14194 lua_error(L); in _wrap_new_SBCommandInterpreterRunOptions__SWIG_0()
14199 static int _wrap_new_SBCommandInterpreterRunOptions__SWIG_1(lua_State* L) { in _wrap_new_SBCommandInterpreterRunOptions__SWIG_1() argument
14206 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SBCommandInterpreter… in _wrap_new_SBCommandInterpreterRunOptions__SWIG_1()
14208 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_new_SBCommandInterpreterRunOptions__SWIG_1()
14213 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,1); SWIG_arg++; in _wrap_new_SBCommandInterpreterRunOptions__SWIG_1()
14218 lua_error(L); in _wrap_new_SBCommandInterpreterRunOptions__SWIG_1()
14223 static int _wrap_new_SBCommandInterpreterRunOptions(lua_State* L) { in _wrap_new_SBCommandInterpreterRunOptions() argument
14229 argc = lua_gettop(L); in _wrap_new_SBCommandInterpreterRunOptions()
14231 return _wrap_new_SBCommandInterpreterRunOptions__SWIG_0(L); in _wrap_new_SBCommandInterpreterRunOptions()
14237 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBCommandInterpreterRunOptions()
14244 return _wrap_new_SBCommandInterpreterRunOptions__SWIG_1(L); in _wrap_new_SBCommandInterpreterRunOptions()
14248 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommandInterpreterRunOpti… in _wrap_new_SBCommandInterpreterRunOptions()
14252 lua_error(L);return 0; in _wrap_new_SBCommandInterpreterRunOptions()
14256 static int _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue() argument
14263 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetStopOnContinue",1… in _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue()
14265 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue()
14270 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue()
14275 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetStopOnContinue()
14280 static int _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue() argument
14287 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnContinue",1… in _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue()
14288 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnContinue",2,… in _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue()
14290 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue()
14294 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue()
14301 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetStopOnContinue()
14306 static int _wrap_SBCommandInterpreterRunOptions_GetStopOnError(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetStopOnError() argument
14313 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetStopOnError",1,"l… in _wrap_SBCommandInterpreterRunOptions_GetStopOnError()
14315 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetStopOnError()
14320 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetStopOnError()
14325 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetStopOnError()
14330 static int _wrap_SBCommandInterpreterRunOptions_SetStopOnError(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetStopOnError() argument
14337 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnError",1,"l… in _wrap_SBCommandInterpreterRunOptions_SetStopOnError()
14338 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnError",2,"bo… in _wrap_SBCommandInterpreterRunOptions_SetStopOnError()
14340 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetStopOnError()
14344 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetStopOnError()
14351 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetStopOnError()
14356 static int _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash() argument
14363 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetStopOnCrash",1,"l… in _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash()
14365 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash()
14370 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash()
14375 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetStopOnCrash()
14380 static int _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash() argument
14387 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnCrash",1,"l… in _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash()
14388 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetStopOnCrash",2,"bo… in _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash()
14390 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash()
14394 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash()
14401 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetStopOnCrash()
14406 static int _wrap_SBCommandInterpreterRunOptions_GetEchoCommands(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetEchoCommands() argument
14413 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetEchoCommands",1,"… in _wrap_SBCommandInterpreterRunOptions_GetEchoCommands()
14415 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetEchoCommands()
14420 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetEchoCommands()
14425 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetEchoCommands()
14430 static int _wrap_SBCommandInterpreterRunOptions_SetEchoCommands(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetEchoCommands() argument
14437 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommands",1,"… in _wrap_SBCommandInterpreterRunOptions_SetEchoCommands()
14438 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommands",2,"b… in _wrap_SBCommandInterpreterRunOptions_SetEchoCommands()
14440 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetEchoCommands()
14444 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetEchoCommands()
14451 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetEchoCommands()
14456 static int _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands() argument
14463 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetEchoCommentComman… in _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands()
14465 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands()
14470 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands()
14475 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetEchoCommentCommands()
14480 static int _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands() argument
14487 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommentComman… in _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands()
14488 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetEchoCommentCommand… in _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands()
14490 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands()
14494 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands()
14501 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetEchoCommentCommands()
14506 static int _wrap_SBCommandInterpreterRunOptions_GetPrintResults(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetPrintResults() argument
14513 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetPrintResults",1,"… in _wrap_SBCommandInterpreterRunOptions_GetPrintResults()
14515 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetPrintResults()
14520 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetPrintResults()
14525 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetPrintResults()
14530 static int _wrap_SBCommandInterpreterRunOptions_SetPrintResults(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetPrintResults() argument
14537 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintResults",1,"… in _wrap_SBCommandInterpreterRunOptions_SetPrintResults()
14538 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintResults",2,"b… in _wrap_SBCommandInterpreterRunOptions_SetPrintResults()
14540 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetPrintResults()
14544 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetPrintResults()
14551 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetPrintResults()
14556 static int _wrap_SBCommandInterpreterRunOptions_GetPrintErrors(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetPrintErrors() argument
14563 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetPrintErrors",1,"l… in _wrap_SBCommandInterpreterRunOptions_GetPrintErrors()
14565 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetPrintErrors()
14570 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetPrintErrors()
14575 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetPrintErrors()
14580 static int _wrap_SBCommandInterpreterRunOptions_SetPrintErrors(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetPrintErrors() argument
14587 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintErrors",1,"l… in _wrap_SBCommandInterpreterRunOptions_SetPrintErrors()
14588 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetPrintErrors",2,"bo… in _wrap_SBCommandInterpreterRunOptions_SetPrintErrors()
14590 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetPrintErrors()
14594 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetPrintErrors()
14601 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetPrintErrors()
14606 static int _wrap_SBCommandInterpreterRunOptions_GetAddToHistory(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetAddToHistory() argument
14613 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetAddToHistory",1,"… in _wrap_SBCommandInterpreterRunOptions_GetAddToHistory()
14615 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetAddToHistory()
14620 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetAddToHistory()
14625 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetAddToHistory()
14630 static int _wrap_SBCommandInterpreterRunOptions_SetAddToHistory(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetAddToHistory() argument
14637 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAddToHistory",1,"… in _wrap_SBCommandInterpreterRunOptions_SetAddToHistory()
14638 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAddToHistory",2,"b… in _wrap_SBCommandInterpreterRunOptions_SetAddToHistory()
14640 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetAddToHistory()
14644 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetAddToHistory()
14651 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetAddToHistory()
14656 static int _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents() argument
14663 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetAutoHandleEvents"… in _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents()
14665 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents()
14670 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents()
14675 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetAutoHandleEvents()
14680 static int _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents() argument
14687 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAutoHandleEvents"… in _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents()
14688 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAutoHandleEvents",… in _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents()
14690 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents()
14694 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents()
14701 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetAutoHandleEvents()
14706 static int _wrap_SBCommandInterpreterRunOptions_GetSpawnThread(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetSpawnThread() argument
14713 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetSpawnThread",1,"l… in _wrap_SBCommandInterpreterRunOptions_GetSpawnThread()
14715 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetSpawnThread()
14720 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetSpawnThread()
14725 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetSpawnThread()
14730 static int _wrap_SBCommandInterpreterRunOptions_SetSpawnThread(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetSpawnThread() argument
14737 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetSpawnThread",1,"l… in _wrap_SBCommandInterpreterRunOptions_SetSpawnThread()
14738 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetSpawnThread",2,"bo… in _wrap_SBCommandInterpreterRunOptions_SetSpawnThread()
14740 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetSpawnThread()
14744 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetSpawnThread()
14751 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetSpawnThread()
14756 static int _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats() argument
14763 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::GetAllowRepeats",1,"… in _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats()
14765 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats()
14770 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats()
14775 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_GetAllowRepeats()
14780 static int _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats(lua_State* L) { in _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats() argument
14787 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAllowRepeats",1,"… in _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats()
14788 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandInterpreterRunOptions::SetAllowRepeats",2,"b… in _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats()
14790 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats()
14794 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats()
14801 lua_error(L); in _wrap_SBCommandInterpreterRunOptions_SetAllowRepeats()
14810 static int _proxy__wrap_new_SBCommandInterpreterRunOptions(lua_State *L) { in _proxy__wrap_new_SBCommandInterpreterRunOptions() argument
14811 assert(lua_istable(L,1)); in _proxy__wrap_new_SBCommandInterpreterRunOptions()
14812 lua_pushcfunction(L,_wrap_new_SBCommandInterpreterRunOptions); in _proxy__wrap_new_SBCommandInterpreterRunOptions()
14813 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBCommandInterpreterRunOptions()
14814 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBCommandInterpreterRunOptions()
14815 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBCommandInterpreterRunOptions()
14875 static int _wrap_new_SBCommandReturnObject__SWIG_0(lua_State* L) { in _wrap_new_SBCommandReturnObject__SWIG_0() argument
14882 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandReturnObject,1); SWIG_arg++; in _wrap_new_SBCommandReturnObject__SWIG_0()
14887 lua_error(L); in _wrap_new_SBCommandReturnObject__SWIG_0()
14892 static int _wrap_new_SBCommandReturnObject__SWIG_1(lua_State* L) { in _wrap_new_SBCommandReturnObject__SWIG_1() argument
14899 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SBCommandReturnObject",1,"lld… in _wrap_new_SBCommandReturnObject__SWIG_1()
14901 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_new_SBCommandReturnObject__SWIG_1()
14906 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommandReturnObject,1); SWIG_arg++; in _wrap_new_SBCommandReturnObject__SWIG_1()
14911 lua_error(L); in _wrap_new_SBCommandReturnObject__SWIG_1()
14916 static int _wrap_new_SBCommandReturnObject(lua_State* L) { in _wrap_new_SBCommandReturnObject() argument
14922 argc = lua_gettop(L); in _wrap_new_SBCommandReturnObject()
14924 return _wrap_new_SBCommandReturnObject__SWIG_0(L); in _wrap_new_SBCommandReturnObject()
14930 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBCommandReturnObject()
14937 return _wrap_new_SBCommandReturnObject__SWIG_1(L); in _wrap_new_SBCommandReturnObject()
14941 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommandReturnObject'\n" in _wrap_new_SBCommandReturnObject()
14945 lua_error(L);return 0; in _wrap_new_SBCommandReturnObject()
14949 static int _wrap_SBCommandReturnObject_IsValid(lua_State* L) { in _wrap_SBCommandReturnObject_IsValid() argument
14956 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::IsValid",1,"lldb::SBCommandRe… in _wrap_SBCommandReturnObject_IsValid()
14958 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_IsValid()
14963 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandReturnObject_IsValid()
14968 lua_error(L); in _wrap_SBCommandReturnObject_IsValid()
14973 static int _wrap_SBCommandReturnObject_GetOutput__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_GetOutput__SWIG_0() argument
14980 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutput",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_GetOutput__SWIG_0()
14982 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetOutput__SWIG_0()
14987 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetOutput__SWIG_0()
14992 lua_error(L); in _wrap_SBCommandReturnObject_GetOutput__SWIG_0()
14997 static int _wrap_SBCommandReturnObject_GetError__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_GetError__SWIG_0() argument
15004 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_GetError__SWIG_0()
15006 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetError__SWIG_0()
15011 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetError__SWIG_0()
15016 lua_error(L); in _wrap_SBCommandReturnObject_GetError__SWIG_0()
15021 static int _wrap_SBCommandReturnObject_PutOutput__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_PutOutput__SWIG_0() argument
15030 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutOutput",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_PutOutput__SWIG_0()
15031 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutOutput",2,"lldb::SBFile"); in _wrap_SBCommandReturnObject_PutOutput__SWIG_0()
15033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_PutOutput__SWIG_0()
15038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBCommandReturnObject_PutOutput__SWIG_0()
15044 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_PutOutput__SWIG_0()
15049 lua_error(L); in _wrap_SBCommandReturnObject_PutOutput__SWIG_0()
15054 static int _wrap_SBCommandReturnObject_PutOutput__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_PutOutput__SWIG_1() argument
15062 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutOutput",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_PutOutput__SWIG_1()
15064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_PutOutput__SWIG_1()
15069 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBCommandReturnObject_PutOutput__SWIG_1()
15073 return luaL_error(L, "Invalid file"); in _wrap_SBCommandReturnObject_PutOutput__SWIG_1()
15077 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_PutOutput__SWIG_1()
15082 lua_error(L); in _wrap_SBCommandReturnObject_PutOutput__SWIG_1()
15087 static int _wrap_SBCommandReturnObject_PutOutput(lua_State* L) { in _wrap_SBCommandReturnObject_PutOutput() argument
15093 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_PutOutput()
15098 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutOutput()
15107 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutOutput()
15114 return _wrap_SBCommandReturnObject_PutOutput__SWIG_0(L); in _wrap_SBCommandReturnObject_PutOutput()
15122 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutOutput()
15130 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBCommandReturnObject_PutOutput()
15131 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBCommandReturnObject_PutOutput()
15134 return _wrap_SBCommandReturnObject_PutOutput__SWIG_1(L); in _wrap_SBCommandReturnObject_PutOutput()
15139 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_PutOutput… in _wrap_SBCommandReturnObject_PutOutput()
15143 lua_error(L);return 0; in _wrap_SBCommandReturnObject_PutOutput()
15147 static int _wrap_SBCommandReturnObject_GetOutputSize(lua_State* L) { in _wrap_SBCommandReturnObject_GetOutputSize() argument
15154 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutputSize",1,"lldb::SBCom… in _wrap_SBCommandReturnObject_GetOutputSize()
15156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetOutputSize()
15161 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetOutputSize()
15166 lua_error(L); in _wrap_SBCommandReturnObject_GetOutputSize()
15171 static int _wrap_SBCommandReturnObject_GetErrorSize(lua_State* L) { in _wrap_SBCommandReturnObject_GetErrorSize() argument
15178 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetErrorSize",1,"lldb::SBComm… in _wrap_SBCommandReturnObject_GetErrorSize()
15180 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetErrorSize()
15185 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetErrorSize()
15190 lua_error(L); in _wrap_SBCommandReturnObject_GetErrorSize()
15195 static int _wrap_SBCommandReturnObject_PutError__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_PutError__SWIG_0() argument
15204 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_PutError__SWIG_0()
15205 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutError",2,"lldb::SBFile"); in _wrap_SBCommandReturnObject_PutError__SWIG_0()
15207 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_PutError__SWIG_0()
15212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBCommandReturnObject_PutError__SWIG_0()
15218 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_PutError__SWIG_0()
15223 lua_error(L); in _wrap_SBCommandReturnObject_PutError__SWIG_0()
15228 static int _wrap_SBCommandReturnObject_PutError__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_PutError__SWIG_1() argument
15236 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_PutError__SWIG_1()
15238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_PutError__SWIG_1()
15243 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBCommandReturnObject_PutError__SWIG_1()
15247 return luaL_error(L, "Invalid file"); in _wrap_SBCommandReturnObject_PutError__SWIG_1()
15251 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_PutError__SWIG_1()
15256 lua_error(L); in _wrap_SBCommandReturnObject_PutError__SWIG_1()
15261 static int _wrap_SBCommandReturnObject_PutError(lua_State* L) { in _wrap_SBCommandReturnObject_PutError() argument
15267 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_PutError()
15272 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutError()
15281 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutError()
15288 return _wrap_SBCommandReturnObject_PutError__SWIG_0(L); in _wrap_SBCommandReturnObject_PutError()
15296 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutError()
15304 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBCommandReturnObject_PutError()
15305 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBCommandReturnObject_PutError()
15308 return _wrap_SBCommandReturnObject_PutError__SWIG_1(L); in _wrap_SBCommandReturnObject_PutError()
15313 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_PutError'… in _wrap_SBCommandReturnObject_PutError()
15317 lua_error(L);return 0; in _wrap_SBCommandReturnObject_PutError()
15321 static int _wrap_SBCommandReturnObject_Clear(lua_State* L) { in _wrap_SBCommandReturnObject_Clear() argument
15327 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::Clear",1,"lldb::SBCommandRetu… in _wrap_SBCommandReturnObject_Clear()
15329 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_Clear()
15339 lua_error(L); in _wrap_SBCommandReturnObject_Clear()
15344 static int _wrap_SBCommandReturnObject_GetStatus(lua_State* L) { in _wrap_SBCommandReturnObject_GetStatus() argument
15351 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetStatus",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_GetStatus()
15353 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetStatus()
15358 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetStatus()
15363 lua_error(L); in _wrap_SBCommandReturnObject_GetStatus()
15368 static int _wrap_SBCommandReturnObject_SetStatus(lua_State* L) { in _wrap_SBCommandReturnObject_SetStatus() argument
15375 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetStatus",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_SetStatus()
15376 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetStatus",2,"lldb::ReturnStat… in _wrap_SBCommandReturnObject_SetStatus()
15378 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetStatus()
15382 arg2 = (lldb::ReturnStatus)lua_tointeger(L, 2); in _wrap_SBCommandReturnObject_SetStatus()
15389 lua_error(L); in _wrap_SBCommandReturnObject_SetStatus()
15394 static int _wrap_SBCommandReturnObject_Succeeded(lua_State* L) { in _wrap_SBCommandReturnObject_Succeeded() argument
15401 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::Succeeded",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_Succeeded()
15403 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_Succeeded()
15408 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandReturnObject_Succeeded()
15413 lua_error(L); in _wrap_SBCommandReturnObject_Succeeded()
15418 static int _wrap_SBCommandReturnObject_HasResult(lua_State* L) { in _wrap_SBCommandReturnObject_HasResult() argument
15425 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::HasResult",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_HasResult()
15427 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_HasResult()
15432 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandReturnObject_HasResult()
15437 lua_error(L); in _wrap_SBCommandReturnObject_HasResult()
15442 static int _wrap_SBCommandReturnObject_AppendMessage(lua_State* L) { in _wrap_SBCommandReturnObject_AppendMessage() argument
15449 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendMessage",1,"lldb::SBCom… in _wrap_SBCommandReturnObject_AppendMessage()
15450 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendMessage",2,"char … in _wrap_SBCommandReturnObject_AppendMessage()
15452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_AppendMessage()
15456 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandReturnObject_AppendMessage()
15463 lua_error(L); in _wrap_SBCommandReturnObject_AppendMessage()
15468 static int _wrap_SBCommandReturnObject_AppendWarning(lua_State* L) { in _wrap_SBCommandReturnObject_AppendWarning() argument
15475 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendWarning",1,"lldb::SBCom… in _wrap_SBCommandReturnObject_AppendWarning()
15476 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::AppendWarning",2,"char … in _wrap_SBCommandReturnObject_AppendWarning()
15478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_AppendWarning()
15482 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandReturnObject_AppendWarning()
15489 lua_error(L); in _wrap_SBCommandReturnObject_AppendWarning()
15494 static int _wrap_SBCommandReturnObject_GetDescription(lua_State* L) { in _wrap_SBCommandReturnObject_GetDescription() argument
15502 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetDescription",1,"lldb::SBCo… in _wrap_SBCommandReturnObject_GetDescription()
15503 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetDescription",2,"lldb::SBSt… in _wrap_SBCommandReturnObject_GetDescription()
15505 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetDescription()
15510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBCommandReturnObject_GetDescription()
15515 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommandReturnObject_GetDescription()
15520 lua_error(L); in _wrap_SBCommandReturnObject_GetDescription()
15525 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0() argument
15533 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",1,"ll… in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0()
15534 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",2,"ll… in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0()
15536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0()
15541 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0()
15552 lua_error(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0()
15557 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0() argument
15565 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",1,"lld… in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0()
15566 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",2,"lld… in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0()
15568 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0()
15573 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0()
15584 lua_error(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0()
15589 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1() argument
15596 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",1,"ll… in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1()
15598 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1()
15603 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1()
15607 return luaL_error(L, "Invalid file"); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1()
15616 lua_error(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1()
15621 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1() argument
15628 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",1,"lld… in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1()
15630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1()
15635 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1()
15639 return luaL_error(L, "Invalid file"); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1()
15648 lua_error(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1()
15653 static int _wrap_SBCommandReturnObject_PutCString__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_PutCString__SWIG_0() argument
15661 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutCString",1,"lldb::SBComman… in _wrap_SBCommandReturnObject_PutCString__SWIG_0()
15663 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_PutCString__SWIG_0()
15668 if (lua_isnil(L, 2)) { in _wrap_SBCommandReturnObject_PutCString__SWIG_0()
15672 arg2 = (char *)luaL_checklstring(L, 2, (size_t *)&arg3); in _wrap_SBCommandReturnObject_PutCString__SWIG_0()
15681 lua_error(L); in _wrap_SBCommandReturnObject_PutCString__SWIG_0()
15686 static int _wrap_SBCommandReturnObject_PutCString__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_PutCString__SWIG_1() argument
15693 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutCString",1,"lldb::SBComman… in _wrap_SBCommandReturnObject_PutCString__SWIG_1()
15694 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::PutCString",2,"char con… in _wrap_SBCommandReturnObject_PutCString__SWIG_1()
15696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_PutCString__SWIG_1()
15700 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandReturnObject_PutCString__SWIG_1()
15707 lua_error(L); in _wrap_SBCommandReturnObject_PutCString__SWIG_1()
15712 static int _wrap_SBCommandReturnObject_PutCString(lua_State* L) { in _wrap_SBCommandReturnObject_PutCString() argument
15718 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_PutCString()
15723 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutCString()
15731 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandReturnObject_PutCString()
15735 return _wrap_SBCommandReturnObject_PutCString__SWIG_0(L); in _wrap_SBCommandReturnObject_PutCString()
15738 _v = lua_isnumber(L,argv[2]); in _wrap_SBCommandReturnObject_PutCString()
15741 return _wrap_SBCommandReturnObject_PutCString__SWIG_0(L); in _wrap_SBCommandReturnObject_PutCString()
15750 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_PutCString()
15758 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandReturnObject_PutCString()
15761 return _wrap_SBCommandReturnObject_PutCString__SWIG_1(L); in _wrap_SBCommandReturnObject_PutCString()
15766 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_PutCStrin… in _wrap_SBCommandReturnObject_PutCString()
15770 lua_error(L);return 0; in _wrap_SBCommandReturnObject_PutCString()
15774 static int _wrap_SBCommandReturnObject_GetOutput__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_GetOutput__SWIG_1() argument
15782 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutput",1,"lldb::SBCommand… in _wrap_SBCommandReturnObject_GetOutput__SWIG_1()
15783 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetOutput",2,"bool"); in _wrap_SBCommandReturnObject_GetOutput__SWIG_1()
15785 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetOutput__SWIG_1()
15789 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandReturnObject_GetOutput__SWIG_1()
15791 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetOutput__SWIG_1()
15796 lua_error(L); in _wrap_SBCommandReturnObject_GetOutput__SWIG_1()
15801 static int _wrap_SBCommandReturnObject_GetOutput(lua_State* L) { in _wrap_SBCommandReturnObject_GetOutput() argument
15807 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_GetOutput()
15812 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_GetOutput()
15819 return _wrap_SBCommandReturnObject_GetOutput__SWIG_0(L); in _wrap_SBCommandReturnObject_GetOutput()
15826 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_GetOutput()
15834 _v = lua_isboolean(L,argv[1]); in _wrap_SBCommandReturnObject_GetOutput()
15837 return _wrap_SBCommandReturnObject_GetOutput__SWIG_1(L); in _wrap_SBCommandReturnObject_GetOutput()
15842 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_GetOutput… in _wrap_SBCommandReturnObject_GetOutput()
15846 lua_error(L);return 0; in _wrap_SBCommandReturnObject_GetOutput()
15850 static int _wrap_SBCommandReturnObject_GetError__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_GetError__SWIG_1() argument
15858 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_GetError__SWIG_1()
15859 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::GetError",2,"bool"); in _wrap_SBCommandReturnObject_GetError__SWIG_1()
15861 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_GetError__SWIG_1()
15865 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommandReturnObject_GetError__SWIG_1()
15867 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommandReturnObject_GetError__SWIG_1()
15872 lua_error(L); in _wrap_SBCommandReturnObject_GetError__SWIG_1()
15877 static int _wrap_SBCommandReturnObject_GetError(lua_State* L) { in _wrap_SBCommandReturnObject_GetError() argument
15883 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_GetError()
15888 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_GetError()
15895 return _wrap_SBCommandReturnObject_GetError__SWIG_0(L); in _wrap_SBCommandReturnObject_GetError()
15902 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_GetError()
15910 _v = lua_isboolean(L,argv[1]); in _wrap_SBCommandReturnObject_GetError()
15913 return _wrap_SBCommandReturnObject_GetError__SWIG_1(L); in _wrap_SBCommandReturnObject_GetError()
15918 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_GetError'… in _wrap_SBCommandReturnObject_GetError()
15922 lua_error(L);return 0; in _wrap_SBCommandReturnObject_GetError()
15926 static int _wrap_SBCommandReturnObject_SetError__SWIG_0(lua_State* L) { in _wrap_SBCommandReturnObject_SetError__SWIG_0() argument
15934 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15935 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",2,"lldb::SBError &"… in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15936 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",3,"char const… in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15938 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15943 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15947 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15954 lua_error(L); in _wrap_SBCommandReturnObject_SetError__SWIG_0()
15959 static int _wrap_SBCommandReturnObject_SetError__SWIG_1(lua_State* L) { in _wrap_SBCommandReturnObject_SetError__SWIG_1() argument
15966 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_SetError__SWIG_1()
15967 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",2,"lldb::SBError &"… in _wrap_SBCommandReturnObject_SetError__SWIG_1()
15969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetError__SWIG_1()
15974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBCommandReturnObject_SetError__SWIG_1()
15984 lua_error(L); in _wrap_SBCommandReturnObject_SetError__SWIG_1()
15989 static int _wrap_SBCommandReturnObject_SetError__SWIG_2(lua_State* L) { in _wrap_SBCommandReturnObject_SetError__SWIG_2() argument
15996 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject_SetError__SWIG_2()
15997 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetError",2,"char const… in _wrap_SBCommandReturnObject_SetError__SWIG_2()
15999 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetError__SWIG_2()
16003 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandReturnObject_SetError__SWIG_2()
16010 lua_error(L); in _wrap_SBCommandReturnObject_SetError__SWIG_2()
16015 static int _wrap_SBCommandReturnObject_SetError(lua_State* L) { in _wrap_SBCommandReturnObject_SetError() argument
16021 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_SetError()
16026 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetError()
16035 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetError()
16042 return _wrap_SBCommandReturnObject_SetError__SWIG_1(L); in _wrap_SBCommandReturnObject_SetError()
16050 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetError()
16058 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBCommandReturnObject_SetError()
16061 return _wrap_SBCommandReturnObject_SetError__SWIG_2(L); in _wrap_SBCommandReturnObject_SetError()
16069 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetError()
16078 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetError()
16086 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBCommandReturnObject_SetError()
16089 return _wrap_SBCommandReturnObject_SetError__SWIG_0(L); in _wrap_SBCommandReturnObject_SetError()
16095 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_SetError'… in _wrap_SBCommandReturnObject_SetError()
16100 lua_error(L);return 0; in _wrap_SBCommandReturnObject_SetError()
16104 static int _wrap_SBCommandReturnObject___tostring(lua_State* L) { in _wrap_SBCommandReturnObject___tostring() argument
16111 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::__repr__",1,"lldb::SBCommandR… in _wrap_SBCommandReturnObject___tostring()
16113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject___tostring()
16118 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBCommandReturnObject___tostring()
16123 lua_error(L); in _wrap_SBCommandReturnObject___tostring()
16128 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2() argument
16136 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",1,"ll… in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16137 …if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateOutputFile",3,"boo… in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16144 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16148 return luaL_error(L, "Invalid file"); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16151 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16158 lua_error(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2()
16163 static int _wrap_SBCommandReturnObject_SetImmediateOutputFile(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateOutputFile() argument
16169 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16174 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16183 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16190 return _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_0(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16198 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16206 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16207 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16210 return _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_1(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16218 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16226 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16227 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16231 _v = lua_isboolean(L,argv[2]); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16234 return _wrap_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2(L); in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16240 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_SetImmedi… in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16245 lua_error(L);return 0; in _wrap_SBCommandReturnObject_SetImmediateOutputFile()
16249 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2() argument
16257 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",1,"lld… in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16258 …if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommandReturnObject::SetImmediateErrorFile",3,"bool… in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16260 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16265 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16269 return luaL_error(L, "Invalid file"); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16272 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16279 lua_error(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2()
16284 static int _wrap_SBCommandReturnObject_SetImmediateErrorFile(lua_State* L) { in _wrap_SBCommandReturnObject_SetImmediateErrorFile() argument
16290 argc = lua_gettop(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16295 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16304 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16311 return _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_0(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16319 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16327 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16328 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16331 return _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_1(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16339 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16347 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16348 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16352 _v = lua_isboolean(L,argv[2]); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16355 return _wrap_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2(L); in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16361 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCommandReturnObject_SetImmedi… in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16366 lua_error(L);return 0; in _wrap_SBCommandReturnObject_SetImmediateErrorFile()
16370 static int _wrap_SBCommandReturnObject_Print(lua_State* L) { in _wrap_SBCommandReturnObject_Print() argument
16377 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommandReturnObject::Print",1,"lldb::SBCommandRetu… in _wrap_SBCommandReturnObject_Print()
16378 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommandReturnObject::Print",2,"char const *"… in _wrap_SBCommandReturnObject_Print()
16380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBCommandReturnObject_Print()
16384 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommandReturnObject_Print()
16391 lua_error(L); in _wrap_SBCommandReturnObject_Print()
16400 static int _proxy__wrap_new_SBCommandReturnObject(lua_State *L) { in _proxy__wrap_new_SBCommandReturnObject() argument
16401 assert(lua_istable(L,1)); in _proxy__wrap_new_SBCommandReturnObject()
16402 lua_pushcfunction(L,_wrap_new_SBCommandReturnObject); in _proxy__wrap_new_SBCommandReturnObject()
16403 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBCommandReturnObject()
16404 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBCommandReturnObject()
16405 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBCommandReturnObject()
16465 static int _wrap_new_SBCommunication__SWIG_0(lua_State* L) { in _wrap_new_SBCommunication__SWIG_0() argument
16472 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommunication,1); SWIG_arg++; in _wrap_new_SBCommunication__SWIG_0()
16477 lua_error(L); in _wrap_new_SBCommunication__SWIG_0()
16482 static int _wrap_new_SBCommunication__SWIG_1(lua_State* L) { in _wrap_new_SBCommunication__SWIG_1() argument
16489 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBCommunication::SBCommunication",1,"char cons… in _wrap_new_SBCommunication__SWIG_1()
16490 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBCommunication__SWIG_1()
16492 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCommunication,1); SWIG_arg++; in _wrap_new_SBCommunication__SWIG_1()
16497 lua_error(L); in _wrap_new_SBCommunication__SWIG_1()
16502 static int _wrap_new_SBCommunication(lua_State* L) { in _wrap_new_SBCommunication() argument
16508 argc = lua_gettop(L); in _wrap_new_SBCommunication()
16510 return _wrap_new_SBCommunication__SWIG_0(L); in _wrap_new_SBCommunication()
16515 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBCommunication()
16518 return _wrap_new_SBCommunication__SWIG_1(L); in _wrap_new_SBCommunication()
16522 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCommunication'\n" in _wrap_new_SBCommunication()
16526 lua_error(L);return 0; in _wrap_new_SBCommunication()
16530 static int _wrap_SBCommunication_IsValid(lua_State* L) { in _wrap_SBCommunication_IsValid() argument
16537 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::IsValid",1,"lldb::SBCommunication c… in _wrap_SBCommunication_IsValid()
16539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_IsValid()
16544 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_IsValid()
16549 lua_error(L); in _wrap_SBCommunication_IsValid()
16554 static int _wrap_SBCommunication_GetBroadcaster(lua_State* L) { in _wrap_SBCommunication_GetBroadcaster() argument
16561 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::GetBroadcaster",1,"lldb::SBCommunic… in _wrap_SBCommunication_GetBroadcaster()
16563 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_GetBroadcaster()
16570 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_SBCommunication_GetBroadcaster()
16576 lua_error(L); in _wrap_SBCommunication_GetBroadcaster()
16581 static int _wrap_SBCommunication_GetBroadcasterClass(lua_State* L) { in _wrap_SBCommunication_GetBroadcasterClass() argument
16588 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBCommunication_GetBroadcasterClass()
16593 lua_error(L); in _wrap_SBCommunication_GetBroadcasterClass()
16598 static int _wrap_SBCommunication_AdoptFileDesriptor(lua_State* L) { in _wrap_SBCommunication_AdoptFileDesriptor() argument
16607 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::AdoptFileDesriptor",1,"lldb::SBComm… in _wrap_SBCommunication_AdoptFileDesriptor()
16608 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCommunication::AdoptFileDesriptor",2,"int"); in _wrap_SBCommunication_AdoptFileDesriptor()
16609 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCommunication::AdoptFileDesriptor",3,"bool"); in _wrap_SBCommunication_AdoptFileDesriptor()
16611 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_AdoptFileDesriptor()
16615 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBCommunication_AdoptFileDesriptor()
16616 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBCommunication_AdoptFileDesriptor()
16618 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommunication_AdoptFileDesriptor()
16623 lua_error(L); in _wrap_SBCommunication_AdoptFileDesriptor()
16628 static int _wrap_SBCommunication_Connect(lua_State* L) { in _wrap_SBCommunication_Connect() argument
16636 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Connect",1,"lldb::SBCommunication *… in _wrap_SBCommunication_Connect()
16637 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBCommunication::Connect",2,"char const *"); in _wrap_SBCommunication_Connect()
16639 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_Connect()
16643 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBCommunication_Connect()
16645 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommunication_Connect()
16650 lua_error(L); in _wrap_SBCommunication_Connect()
16655 static int _wrap_SBCommunication_Disconnect(lua_State* L) { in _wrap_SBCommunication_Disconnect() argument
16662 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Disconnect",1,"lldb::SBCommunicatio… in _wrap_SBCommunication_Disconnect()
16664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_Disconnect()
16669 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommunication_Disconnect()
16674 lua_error(L); in _wrap_SBCommunication_Disconnect()
16679 static int _wrap_SBCommunication_IsConnected(lua_State* L) { in _wrap_SBCommunication_IsConnected() argument
16686 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::IsConnected",1,"lldb::SBCommunicati… in _wrap_SBCommunication_IsConnected()
16688 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_IsConnected()
16693 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_IsConnected()
16698 lua_error(L); in _wrap_SBCommunication_IsConnected()
16703 static int _wrap_SBCommunication_GetCloseOnEOF(lua_State* L) { in _wrap_SBCommunication_GetCloseOnEOF() argument
16710 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::GetCloseOnEOF",1,"lldb::SBCommunica… in _wrap_SBCommunication_GetCloseOnEOF()
16712 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_GetCloseOnEOF()
16717 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_GetCloseOnEOF()
16722 lua_error(L); in _wrap_SBCommunication_GetCloseOnEOF()
16727 static int _wrap_SBCommunication_SetCloseOnEOF(lua_State* L) { in _wrap_SBCommunication_SetCloseOnEOF() argument
16734 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::SetCloseOnEOF",1,"lldb::SBCommunica… in _wrap_SBCommunication_SetCloseOnEOF()
16735 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBCommunication::SetCloseOnEOF",2,"bool"); in _wrap_SBCommunication_SetCloseOnEOF()
16737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_SetCloseOnEOF()
16741 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBCommunication_SetCloseOnEOF()
16748 lua_error(L); in _wrap_SBCommunication_SetCloseOnEOF()
16753 static int _wrap_SBCommunication_Read(lua_State* L) { in _wrap_SBCommunication_Read() argument
16764 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Read",1,"lldb::SBCommunication *"); in _wrap_SBCommunication_Read()
16765 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBCommunication::Read",2,"void *"); in _wrap_SBCommunication_Read()
16766 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommunication::Read",3,"size_t"); in _wrap_SBCommunication_Read()
16767 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBCommunication::Read",4,"uint32_t"); in _wrap_SBCommunication_Read()
16768 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBCommunication::Read",5,"lldb::ConnectionStatus &"); in _wrap_SBCommunication_Read()
16770 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_Read()
16774 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBCommunication_Read"); in _wrap_SBCommunication_Read()
16775 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBCommunication_Read()
16776 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBCommunication_Read()
16778 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__ConnectionStatus,0))){ in _wrap_SBCommunication_Read()
16783 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommunication_Read()
16788 lua_error(L); in _wrap_SBCommunication_Read()
16793 static int _wrap_SBCommunication_Write(lua_State* L) { in _wrap_SBCommunication_Write() argument
16803 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::Write",1,"lldb::SBCommunication *"); in _wrap_SBCommunication_Write()
16804 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBCommunication::Write",2,"void const *"); in _wrap_SBCommunication_Write()
16805 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCommunication::Write",3,"size_t"); in _wrap_SBCommunication_Write()
16806 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBCommunication::Write",4,"lldb::ConnectionStatus &"… in _wrap_SBCommunication_Write()
16808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_Write()
16812 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBCommunication_Write"); in _wrap_SBCommunication_Write()
16813 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBCommunication_Write()
16815 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__ConnectionStatus,0))){ in _wrap_SBCommunication_Write()
16820 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCommunication_Write()
16825 lua_error(L); in _wrap_SBCommunication_Write()
16830 static int _wrap_SBCommunication_ReadThreadStart(lua_State* L) { in _wrap_SBCommunication_ReadThreadStart() argument
16837 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::ReadThreadStart",1,"lldb::SBCommuni… in _wrap_SBCommunication_ReadThreadStart()
16839 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_ReadThreadStart()
16844 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_ReadThreadStart()
16849 lua_error(L); in _wrap_SBCommunication_ReadThreadStart()
16854 static int _wrap_SBCommunication_ReadThreadStop(lua_State* L) { in _wrap_SBCommunication_ReadThreadStop() argument
16861 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::ReadThreadStop",1,"lldb::SBCommunic… in _wrap_SBCommunication_ReadThreadStop()
16863 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_ReadThreadStop()
16868 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_ReadThreadStop()
16873 lua_error(L); in _wrap_SBCommunication_ReadThreadStop()
16878 static int _wrap_SBCommunication_ReadThreadIsRunning(lua_State* L) { in _wrap_SBCommunication_ReadThreadIsRunning() argument
16885 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::ReadThreadIsRunning",1,"lldb::SBCom… in _wrap_SBCommunication_ReadThreadIsRunning()
16887 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_ReadThreadIsRunning()
16892 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_ReadThreadIsRunning()
16897 lua_error(L); in _wrap_SBCommunication_ReadThreadIsRunning()
16902 static int _wrap_SBCommunication_SetReadThreadBytesReceivedCallback(lua_State* L) { in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback() argument
16911 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCommunication::SetReadThreadBytesReceivedCallback"… in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16912 …if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBCommunication::SetReadThreadBytesReceivedCallback"… in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16913 …if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBCommunication::SetReadThreadBytesReceivedCallback"… in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16915 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCommunication,0))){ in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16920 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_p_void_p_q_const__void_size_t__void,… in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16924 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBCommunication_SetReadThreadBytesReceivedCallback"); in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16926 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16931 lua_error(L); in _wrap_SBCommunication_SetReadThreadBytesReceivedCallback()
16940 static int _proxy__wrap_new_SBCommunication(lua_State *L) { in _proxy__wrap_new_SBCommunication() argument
16941 assert(lua_istable(L,1)); in _proxy__wrap_new_SBCommunication()
16942 lua_pushcfunction(L,_wrap_new_SBCommunication); in _proxy__wrap_new_SBCommunication()
16943 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBCommunication()
16944 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBCommunication()
16945 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBCommunication()
17004 static int _wrap_new_SBCompileUnit__SWIG_0(lua_State* L) { in _wrap_new_SBCompileUnit__SWIG_0() argument
17011 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++; in _wrap_new_SBCompileUnit__SWIG_0()
17016 lua_error(L); in _wrap_new_SBCompileUnit__SWIG_0()
17021 static int _wrap_new_SBCompileUnit__SWIG_1(lua_State* L) { in _wrap_new_SBCompileUnit__SWIG_1() argument
17028 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::SBCompileUnit",1,"lldb::SBCompileUnit… in _wrap_new_SBCompileUnit__SWIG_1()
17030 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_new_SBCompileUnit__SWIG_1()
17035 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++; in _wrap_new_SBCompileUnit__SWIG_1()
17040 lua_error(L); in _wrap_new_SBCompileUnit__SWIG_1()
17045 static int _wrap_new_SBCompileUnit(lua_State* L) { in _wrap_new_SBCompileUnit() argument
17051 argc = lua_gettop(L); in _wrap_new_SBCompileUnit()
17053 return _wrap_new_SBCompileUnit__SWIG_0(L); in _wrap_new_SBCompileUnit()
17059 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBCompileUnit()
17066 return _wrap_new_SBCompileUnit__SWIG_1(L); in _wrap_new_SBCompileUnit()
17070 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBCompileUnit'\n" in _wrap_new_SBCompileUnit()
17074 lua_error(L);return 0; in _wrap_new_SBCompileUnit()
17078 static int _wrap_SBCompileUnit_IsValid(lua_State* L) { in _wrap_SBCompileUnit_IsValid() argument
17085 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::IsValid",1,"lldb::SBCompileUnit const… in _wrap_SBCompileUnit_IsValid()
17087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_IsValid()
17092 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCompileUnit_IsValid()
17097 lua_error(L); in _wrap_SBCompileUnit_IsValid()
17102 static int _wrap_SBCompileUnit_GetFileSpec(lua_State* L) { in _wrap_SBCompileUnit_GetFileSpec() argument
17109 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetFileSpec",1,"lldb::SBCompileUnit c… in _wrap_SBCompileUnit_GetFileSpec()
17111 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetFileSpec()
17118 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBCompileUnit_GetFileSpec()
17124 lua_error(L); in _wrap_SBCompileUnit_GetFileSpec()
17129 static int _wrap_SBCompileUnit_GetNumLineEntries(lua_State* L) { in _wrap_SBCompileUnit_GetNumLineEntries() argument
17136 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetNumLineEntries",1,"lldb::SBCompile… in _wrap_SBCompileUnit_GetNumLineEntries()
17138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetNumLineEntries()
17143 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_GetNumLineEntries()
17148 lua_error(L); in _wrap_SBCompileUnit_GetNumLineEntries()
17153 static int _wrap_SBCompileUnit_GetLineEntryAtIndex(lua_State* L) { in _wrap_SBCompileUnit_GetLineEntryAtIndex() argument
17161 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetLineEntryAtIndex",1,"lldb::SBCompi… in _wrap_SBCompileUnit_GetLineEntryAtIndex()
17162 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetLineEntryAtIndex",2,"uint32_t"); in _wrap_SBCompileUnit_GetLineEntryAtIndex()
17164 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetLineEntryAtIndex()
17168 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBCompileUnit_GetLineEntryAtIndex()
17172 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++; in _wrap_SBCompileUnit_GetLineEntryAtIndex()
17178 lua_error(L); in _wrap_SBCompileUnit_GetLineEntryAtIndex()
17183 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0(lua_State* L) { in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0() argument
17192 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompil… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17193 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"lldb::SBLineEn… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17194 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",3,"bool"); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17196 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17201 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17205 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17207 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17212 lua_error(L); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0()
17217 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1(lua_State* L) { in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1() argument
17225 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompil… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1()
17226 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"lldb::SBLineEn… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1()
17228 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1()
17233 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1()
17238 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1()
17243 lua_error(L); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1()
17248 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2(lua_State* L) { in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2() argument
17258 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompil… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17259 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"uint32_t"); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17260 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",3,"uint32_t"); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17261 …if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",4,"lldb::SBFileSp… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17263 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17267 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17268 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17275 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17280 lua_error(L); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2()
17285 static int _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3(lua_State* L) { in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3() argument
17296 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",1,"lldb::SBCompil… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17297 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",2,"uint32_t"); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17298 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",3,"uint32_t"); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17299 …if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",4,"lldb::SBFileSp… in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17300 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBCompileUnit::FindLineEntryIndex",5,"bool"); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17302 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17306 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17307 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17313 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17315 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17320 lua_error(L); in _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3()
17325 static int _wrap_SBCompileUnit_FindLineEntryIndex(lua_State* L) { in _wrap_SBCompileUnit_FindLineEntryIndex() argument
17331 argc = lua_gettop(L); in _wrap_SBCompileUnit_FindLineEntryIndex()
17336 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17345 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17352 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_1(L); in _wrap_SBCompileUnit_FindLineEntryIndex()
17360 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17369 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17377 _v = lua_isboolean(L,argv[2]); in _wrap_SBCompileUnit_FindLineEntryIndex()
17380 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_0(L); in _wrap_SBCompileUnit_FindLineEntryIndex()
17389 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17397 _v = lua_isnumber(L,argv[1]); in _wrap_SBCompileUnit_FindLineEntryIndex()
17401 _v = lua_isnumber(L,argv[2]); in _wrap_SBCompileUnit_FindLineEntryIndex()
17406 …if (SWIG_isptrtype(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17413 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_2(L); in _wrap_SBCompileUnit_FindLineEntryIndex()
17423 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17431 _v = lua_isnumber(L,argv[1]); in _wrap_SBCompileUnit_FindLineEntryIndex()
17435 _v = lua_isnumber(L,argv[2]); in _wrap_SBCompileUnit_FindLineEntryIndex()
17440 …if (SWIG_isptrtype(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_FindLineEntryIndex()
17448 _v = lua_isboolean(L,argv[4]); in _wrap_SBCompileUnit_FindLineEntryIndex()
17451 return _wrap_SBCompileUnit_FindLineEntryIndex__SWIG_3(L); in _wrap_SBCompileUnit_FindLineEntryIndex()
17459 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCompileUnit_FindLineEntryInde… in _wrap_SBCompileUnit_FindLineEntryIndex()
17465 lua_error(L);return 0; in _wrap_SBCompileUnit_FindLineEntryIndex()
17469 static int _wrap_SBCompileUnit_GetSupportFileAtIndex(lua_State* L) { in _wrap_SBCompileUnit_GetSupportFileAtIndex() argument
17477 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetSupportFileAtIndex",1,"lldb::SBCom… in _wrap_SBCompileUnit_GetSupportFileAtIndex()
17478 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetSupportFileAtIndex",2,"uint32_t"); in _wrap_SBCompileUnit_GetSupportFileAtIndex()
17480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetSupportFileAtIndex()
17484 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBCompileUnit_GetSupportFileAtIndex()
17488 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBCompileUnit_GetSupportFileAtIndex()
17494 lua_error(L); in _wrap_SBCompileUnit_GetSupportFileAtIndex()
17499 static int _wrap_SBCompileUnit_GetNumSupportFiles(lua_State* L) { in _wrap_SBCompileUnit_GetNumSupportFiles() argument
17506 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetNumSupportFiles",1,"lldb::SBCompil… in _wrap_SBCompileUnit_GetNumSupportFiles()
17508 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetNumSupportFiles()
17513 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_GetNumSupportFiles()
17518 lua_error(L); in _wrap_SBCompileUnit_GetNumSupportFiles()
17523 static int _wrap_SBCompileUnit_FindSupportFileIndex(lua_State* L) { in _wrap_SBCompileUnit_FindSupportFileIndex() argument
17533 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",1,"lldb::SBComp… in _wrap_SBCompileUnit_FindSupportFileIndex()
17534 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",2,"uint32_t"); in _wrap_SBCompileUnit_FindSupportFileIndex()
17535 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",3,"lldb::SBFile… in _wrap_SBCompileUnit_FindSupportFileIndex()
17536 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBCompileUnit::FindSupportFileIndex",4,"bool"); in _wrap_SBCompileUnit_FindSupportFileIndex()
17538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_FindSupportFileIndex()
17542 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBCompileUnit_FindSupportFileIndex()
17544 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBCompileUnit_FindSupportFileIndex()
17548 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBCompileUnit_FindSupportFileIndex()
17550 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_FindSupportFileIndex()
17555 lua_error(L); in _wrap_SBCompileUnit_FindSupportFileIndex()
17560 static int _wrap_SBCompileUnit_GetTypes__SWIG_0(lua_State* L) { in _wrap_SBCompileUnit_GetTypes__SWIG_0() argument
17568 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetTypes",1,"lldb::SBCompileUnit *"); in _wrap_SBCompileUnit_GetTypes__SWIG_0()
17569 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetTypes",2,"uint32_t"); in _wrap_SBCompileUnit_GetTypes__SWIG_0()
17571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetTypes__SWIG_0()
17575 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBCompileUnit_GetTypes__SWIG_0()
17579 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBCompileUnit_GetTypes__SWIG_0()
17585 lua_error(L); in _wrap_SBCompileUnit_GetTypes__SWIG_0()
17590 static int _wrap_SBCompileUnit_GetTypes__SWIG_1(lua_State* L) { in _wrap_SBCompileUnit_GetTypes__SWIG_1() argument
17597 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetTypes",1,"lldb::SBCompileUnit *"); in _wrap_SBCompileUnit_GetTypes__SWIG_1()
17599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetTypes__SWIG_1()
17606 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBCompileUnit_GetTypes__SWIG_1()
17612 lua_error(L); in _wrap_SBCompileUnit_GetTypes__SWIG_1()
17617 static int _wrap_SBCompileUnit_GetTypes(lua_State* L) { in _wrap_SBCompileUnit_GetTypes() argument
17623 argc = lua_gettop(L); in _wrap_SBCompileUnit_GetTypes()
17628 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_GetTypes()
17635 return _wrap_SBCompileUnit_GetTypes__SWIG_1(L); in _wrap_SBCompileUnit_GetTypes()
17642 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBCompileUnit_GetTypes()
17650 _v = lua_isnumber(L,argv[1]); in _wrap_SBCompileUnit_GetTypes()
17653 return _wrap_SBCompileUnit_GetTypes__SWIG_0(L); in _wrap_SBCompileUnit_GetTypes()
17658 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBCompileUnit_GetTypes'\n" in _wrap_SBCompileUnit_GetTypes()
17662 lua_error(L);return 0; in _wrap_SBCompileUnit_GetTypes()
17666 static int _wrap_SBCompileUnit_GetLanguage(lua_State* L) { in _wrap_SBCompileUnit_GetLanguage() argument
17673 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetLanguage",1,"lldb::SBCompileUnit *… in _wrap_SBCompileUnit_GetLanguage()
17675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetLanguage()
17680 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBCompileUnit_GetLanguage()
17685 lua_error(L); in _wrap_SBCompileUnit_GetLanguage()
17690 static int _wrap_SBCompileUnit___eq(lua_State* L) { in _wrap_SBCompileUnit___eq() argument
17698 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::operator ==",1,"lldb::SBCompileUnit c… in _wrap_SBCompileUnit___eq()
17699 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::operator ==",2,"lldb::SBCompileUnit c… in _wrap_SBCompileUnit___eq()
17701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit___eq()
17706 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit___eq()
17711 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCompileUnit___eq()
17716 lua_error(L); in _wrap_SBCompileUnit___eq()
17721 static int _wrap_SBCompileUnit_GetDescription(lua_State* L) { in _wrap_SBCompileUnit_GetDescription() argument
17729 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::GetDescription",1,"lldb::SBCompileUni… in _wrap_SBCompileUnit_GetDescription()
17730 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBCompileUnit::GetDescription",2,"lldb::SBStream &"); in _wrap_SBCompileUnit_GetDescription()
17732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit_GetDescription()
17737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBCompileUnit_GetDescription()
17742 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBCompileUnit_GetDescription()
17747 lua_error(L); in _wrap_SBCompileUnit_GetDescription()
17752 static int _wrap_SBCompileUnit___tostring(lua_State* L) { in _wrap_SBCompileUnit___tostring() argument
17759 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBCompileUnit::__repr__",1,"lldb::SBCompileUnit *"); in _wrap_SBCompileUnit___tostring()
17761 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBCompileUnit___tostring()
17766 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBCompileUnit___tostring()
17771 lua_error(L); in _wrap_SBCompileUnit___tostring()
17780 static int _proxy__wrap_new_SBCompileUnit(lua_State *L) { in _proxy__wrap_new_SBCompileUnit() argument
17781 assert(lua_istable(L,1)); in _proxy__wrap_new_SBCompileUnit()
17782 lua_pushcfunction(L,_wrap_new_SBCompileUnit); in _proxy__wrap_new_SBCompileUnit()
17783 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBCompileUnit()
17784 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBCompileUnit()
17785 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBCompileUnit()
17838 static int _wrap_new_SBSaveCoreOptions__SWIG_0(lua_State* L) { in _wrap_new_SBSaveCoreOptions__SWIG_0() argument
17845 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSaveCoreOptions,1); SWIG_arg++; in _wrap_new_SBSaveCoreOptions__SWIG_0()
17850 lua_error(L); in _wrap_new_SBSaveCoreOptions__SWIG_0()
17855 static int _wrap_new_SBSaveCoreOptions__SWIG_1(lua_State* L) { in _wrap_new_SBSaveCoreOptions__SWIG_1() argument
17862 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SBSaveCoreOptions",1,"lldb::SBSav… in _wrap_new_SBSaveCoreOptions__SWIG_1()
17864 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_new_SBSaveCoreOptions__SWIG_1()
17869 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSaveCoreOptions,1); SWIG_arg++; in _wrap_new_SBSaveCoreOptions__SWIG_1()
17874 lua_error(L); in _wrap_new_SBSaveCoreOptions__SWIG_1()
17879 static int _wrap_new_SBSaveCoreOptions(lua_State* L) { in _wrap_new_SBSaveCoreOptions() argument
17885 argc = lua_gettop(L); in _wrap_new_SBSaveCoreOptions()
17887 return _wrap_new_SBSaveCoreOptions__SWIG_0(L); in _wrap_new_SBSaveCoreOptions()
17893 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSaveCoreOptions()
17900 return _wrap_new_SBSaveCoreOptions__SWIG_1(L); in _wrap_new_SBSaveCoreOptions()
17904 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSaveCoreOptions'\n" in _wrap_new_SBSaveCoreOptions()
17908 lua_error(L);return 0; in _wrap_new_SBSaveCoreOptions()
17912 static int _wrap_SBSaveCoreOptions_SetPluginName(lua_State* L) { in _wrap_SBSaveCoreOptions_SetPluginName() argument
17920 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetPluginName",1,"lldb::SBSaveCor… in _wrap_SBSaveCoreOptions_SetPluginName()
17921 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetPluginName",2,"char cons… in _wrap_SBSaveCoreOptions_SetPluginName()
17923 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_SetPluginName()
17927 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBSaveCoreOptions_SetPluginName()
17931 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBSaveCoreOptions_SetPluginName()
17937 lua_error(L); in _wrap_SBSaveCoreOptions_SetPluginName()
17942 static int _wrap_SBSaveCoreOptions_GetPluginName(lua_State* L) { in _wrap_SBSaveCoreOptions_GetPluginName() argument
17949 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::GetPluginName",1,"lldb::SBSaveCor… in _wrap_SBSaveCoreOptions_GetPluginName()
17951 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_GetPluginName()
17956 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBSaveCoreOptions_GetPluginName()
17961 lua_error(L); in _wrap_SBSaveCoreOptions_GetPluginName()
17966 static int _wrap_SBSaveCoreOptions_SetStyle(lua_State* L) { in _wrap_SBSaveCoreOptions_SetStyle() argument
17973 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetStyle",1,"lldb::SBSaveCoreOpti… in _wrap_SBSaveCoreOptions_SetStyle()
17974 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetStyle",2,"lldb::SaveCoreStyle"); in _wrap_SBSaveCoreOptions_SetStyle()
17976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_SetStyle()
17980 arg2 = (lldb::SaveCoreStyle)lua_tointeger(L, 2); in _wrap_SBSaveCoreOptions_SetStyle()
17987 lua_error(L); in _wrap_SBSaveCoreOptions_SetStyle()
17992 static int _wrap_SBSaveCoreOptions_GetStyle(lua_State* L) { in _wrap_SBSaveCoreOptions_GetStyle() argument
17999 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::GetStyle",1,"lldb::SBSaveCoreOpti… in _wrap_SBSaveCoreOptions_GetStyle()
18001 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_GetStyle()
18006 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSaveCoreOptions_GetStyle()
18011 lua_error(L); in _wrap_SBSaveCoreOptions_GetStyle()
18016 static int _wrap_SBSaveCoreOptions_SetOutputFile(lua_State* L) { in _wrap_SBSaveCoreOptions_SetOutputFile() argument
18024 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetOutputFile",1,"lldb::SBSaveCor… in _wrap_SBSaveCoreOptions_SetOutputFile()
18025 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSaveCoreOptions::SetOutputFile",2,"lldb::SBFileSpe… in _wrap_SBSaveCoreOptions_SetOutputFile()
18027 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_SetOutputFile()
18032 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBSaveCoreOptions_SetOutputFile()
18043 lua_error(L); in _wrap_SBSaveCoreOptions_SetOutputFile()
18048 static int _wrap_SBSaveCoreOptions_GetOutputFile(lua_State* L) { in _wrap_SBSaveCoreOptions_GetOutputFile() argument
18055 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::GetOutputFile",1,"lldb::SBSaveCor… in _wrap_SBSaveCoreOptions_GetOutputFile()
18057 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_GetOutputFile()
18064 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBSaveCoreOptions_GetOutputFile()
18070 lua_error(L); in _wrap_SBSaveCoreOptions_GetOutputFile()
18075 static int _wrap_SBSaveCoreOptions_Clear(lua_State* L) { in _wrap_SBSaveCoreOptions_Clear() argument
18081 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSaveCoreOptions::Clear",1,"lldb::SBSaveCoreOptions… in _wrap_SBSaveCoreOptions_Clear()
18083 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBSaveCoreOptions_Clear()
18093 lua_error(L); in _wrap_SBSaveCoreOptions_Clear()
18102 static int _proxy__wrap_new_SBSaveCoreOptions(lua_State *L) { in _proxy__wrap_new_SBSaveCoreOptions() argument
18103 assert(lua_istable(L,1)); in _proxy__wrap_new_SBSaveCoreOptions()
18104 lua_pushcfunction(L,_wrap_new_SBSaveCoreOptions); in _proxy__wrap_new_SBSaveCoreOptions()
18105 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBSaveCoreOptions()
18106 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBSaveCoreOptions()
18107 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBSaveCoreOptions()
18152 static int _wrap_new_SBData__SWIG_0(lua_State* L) { in _wrap_new_SBData__SWIG_0() argument
18159 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_new_SBData__SWIG_0()
18164 lua_error(L); in _wrap_new_SBData__SWIG_0()
18169 static int _wrap_new_SBData__SWIG_1(lua_State* L) { in _wrap_new_SBData__SWIG_1() argument
18176 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBData::SBData",1,"lldb::SBData const &"); in _wrap_new_SBData__SWIG_1()
18178 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_new_SBData__SWIG_1()
18183 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_new_SBData__SWIG_1()
18188 lua_error(L); in _wrap_new_SBData__SWIG_1()
18193 static int _wrap_new_SBData(lua_State* L) { in _wrap_new_SBData() argument
18199 argc = lua_gettop(L); in _wrap_new_SBData()
18201 return _wrap_new_SBData__SWIG_0(L); in _wrap_new_SBData()
18207 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBData()
18214 return _wrap_new_SBData__SWIG_1(L); in _wrap_new_SBData()
18218 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBData'\n" in _wrap_new_SBData()
18222 lua_error(L);return 0; in _wrap_new_SBData()
18226 static int _wrap_SBData_GetAddressByteSize(lua_State* L) { in _wrap_SBData_GetAddressByteSize() argument
18233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetAddressByteSize",1,"lldb::SBData *"); in _wrap_SBData_GetAddressByteSize()
18235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetAddressByteSize()
18240 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetAddressByteSize()
18245 lua_error(L); in _wrap_SBData_GetAddressByteSize()
18250 static int _wrap_SBData_SetAddressByteSize(lua_State* L) { in _wrap_SBData_SetAddressByteSize() argument
18257 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetAddressByteSize",1,"lldb::SBData *"); in _wrap_SBData_SetAddressByteSize()
18258 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::SetAddressByteSize",2,"uint8_t"); in _wrap_SBData_SetAddressByteSize()
18260 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetAddressByteSize()
18264 arg2 = (uint8_t)lua_tointeger(L, 2); in _wrap_SBData_SetAddressByteSize()
18271 lua_error(L); in _wrap_SBData_SetAddressByteSize()
18276 static int _wrap_SBData_Clear(lua_State* L) { in _wrap_SBData_Clear() argument
18282 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::Clear",1,"lldb::SBData *"); in _wrap_SBData_Clear()
18284 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_Clear()
18294 lua_error(L); in _wrap_SBData_Clear()
18299 static int _wrap_SBData_IsValid(lua_State* L) { in _wrap_SBData_IsValid() argument
18306 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::IsValid",1,"lldb::SBData *"); in _wrap_SBData_IsValid()
18308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_IsValid()
18313 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_IsValid()
18318 lua_error(L); in _wrap_SBData_IsValid()
18323 static int _wrap_SBData_GetByteSize(lua_State* L) { in _wrap_SBData_GetByteSize() argument
18330 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetByteSize",1,"lldb::SBData *"); in _wrap_SBData_GetByteSize()
18332 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetByteSize()
18337 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetByteSize()
18342 lua_error(L); in _wrap_SBData_GetByteSize()
18347 static int _wrap_SBData_GetByteOrder(lua_State* L) { in _wrap_SBData_GetByteOrder() argument
18354 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetByteOrder",1,"lldb::SBData *"); in _wrap_SBData_GetByteOrder()
18356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetByteOrder()
18361 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetByteOrder()
18366 lua_error(L); in _wrap_SBData_GetByteOrder()
18371 static int _wrap_SBData_SetByteOrder(lua_State* L) { in _wrap_SBData_SetByteOrder() argument
18378 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetByteOrder",1,"lldb::SBData *"); in _wrap_SBData_SetByteOrder()
18379 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::SetByteOrder",2,"lldb::ByteOrder"); in _wrap_SBData_SetByteOrder()
18381 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetByteOrder()
18385 arg2 = (lldb::ByteOrder)lua_tointeger(L, 2); in _wrap_SBData_SetByteOrder()
18392 lua_error(L); in _wrap_SBData_SetByteOrder()
18397 static int _wrap_SBData_GetFloat(lua_State* L) { in _wrap_SBData_GetFloat() argument
18406 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetFloat",1,"lldb::SBData *"); in _wrap_SBData_GetFloat()
18407 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetFloat",2,"lldb::SBError &"); in _wrap_SBData_GetFloat()
18408 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetFloat",3,"lldb::offset_t"); in _wrap_SBData_GetFloat()
18410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetFloat()
18415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetFloat()
18419 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetFloat()
18421 lua_pushnumber(L, (lua_Number) result); SWIG_arg++; in _wrap_SBData_GetFloat()
18426 lua_error(L); in _wrap_SBData_GetFloat()
18431 static int _wrap_SBData_GetDouble(lua_State* L) { in _wrap_SBData_GetDouble() argument
18440 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetDouble",1,"lldb::SBData *"); in _wrap_SBData_GetDouble()
18441 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetDouble",2,"lldb::SBError &"); in _wrap_SBData_GetDouble()
18442 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetDouble",3,"lldb::offset_t"); in _wrap_SBData_GetDouble()
18444 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetDouble()
18449 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetDouble()
18453 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetDouble()
18455 lua_pushnumber(L, (lua_Number) result); SWIG_arg++; in _wrap_SBData_GetDouble()
18460 lua_error(L); in _wrap_SBData_GetDouble()
18465 static int _wrap_SBData_GetLongDouble(lua_State* L) { in _wrap_SBData_GetLongDouble() argument
18474 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetLongDouble",1,"lldb::SBData *"); in _wrap_SBData_GetLongDouble()
18475 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetLongDouble",2,"lldb::SBError &"); in _wrap_SBData_GetLongDouble()
18476 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetLongDouble",3,"lldb::offset_t"); in _wrap_SBData_GetLongDouble()
18478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetLongDouble()
18483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetLongDouble()
18487 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetLongDouble()
18491 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_long_double,1); SWIG_arg++; in _wrap_SBData_GetLongDouble()
18497 lua_error(L); in _wrap_SBData_GetLongDouble()
18502 static int _wrap_SBData_GetAddress(lua_State* L) { in _wrap_SBData_GetAddress() argument
18511 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetAddress",1,"lldb::SBData *"); in _wrap_SBData_GetAddress()
18512 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetAddress",2,"lldb::SBError &"); in _wrap_SBData_GetAddress()
18513 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetAddress",3,"lldb::offset_t"); in _wrap_SBData_GetAddress()
18515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetAddress()
18520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetAddress()
18524 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetAddress()
18526 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetAddress()
18531 lua_error(L); in _wrap_SBData_GetAddress()
18536 static int _wrap_SBData_GetUnsignedInt8(lua_State* L) { in _wrap_SBData_GetUnsignedInt8() argument
18545 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt8",1,"lldb::SBData *"); in _wrap_SBData_GetUnsignedInt8()
18546 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt8",2,"lldb::SBError &"); in _wrap_SBData_GetUnsignedInt8()
18547 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt8",3,"lldb::offset_t"); in _wrap_SBData_GetUnsignedInt8()
18549 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetUnsignedInt8()
18554 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetUnsignedInt8()
18558 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetUnsignedInt8()
18560 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetUnsignedInt8()
18565 lua_error(L); in _wrap_SBData_GetUnsignedInt8()
18570 static int _wrap_SBData_GetUnsignedInt16(lua_State* L) { in _wrap_SBData_GetUnsignedInt16() argument
18579 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt16",1,"lldb::SBData *"); in _wrap_SBData_GetUnsignedInt16()
18580 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt16",2,"lldb::SBError &"); in _wrap_SBData_GetUnsignedInt16()
18581 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt16",3,"lldb::offset_t"); in _wrap_SBData_GetUnsignedInt16()
18583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetUnsignedInt16()
18588 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetUnsignedInt16()
18592 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetUnsignedInt16()
18594 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetUnsignedInt16()
18599 lua_error(L); in _wrap_SBData_GetUnsignedInt16()
18604 static int _wrap_SBData_GetUnsignedInt32(lua_State* L) { in _wrap_SBData_GetUnsignedInt32() argument
18613 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt32",1,"lldb::SBData *"); in _wrap_SBData_GetUnsignedInt32()
18614 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt32",2,"lldb::SBError &"); in _wrap_SBData_GetUnsignedInt32()
18615 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt32",3,"lldb::offset_t"); in _wrap_SBData_GetUnsignedInt32()
18617 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetUnsignedInt32()
18622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetUnsignedInt32()
18626 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetUnsignedInt32()
18628 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetUnsignedInt32()
18633 lua_error(L); in _wrap_SBData_GetUnsignedInt32()
18638 static int _wrap_SBData_GetUnsignedInt64(lua_State* L) { in _wrap_SBData_GetUnsignedInt64() argument
18647 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt64",1,"lldb::SBData *"); in _wrap_SBData_GetUnsignedInt64()
18648 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt64",2,"lldb::SBError &"); in _wrap_SBData_GetUnsignedInt64()
18649 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetUnsignedInt64",3,"lldb::offset_t"); in _wrap_SBData_GetUnsignedInt64()
18651 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetUnsignedInt64()
18656 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetUnsignedInt64()
18660 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetUnsignedInt64()
18662 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetUnsignedInt64()
18667 lua_error(L); in _wrap_SBData_GetUnsignedInt64()
18672 static int _wrap_SBData_GetSignedInt8(lua_State* L) { in _wrap_SBData_GetSignedInt8() argument
18681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt8",1,"lldb::SBData *"); in _wrap_SBData_GetSignedInt8()
18682 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt8",2,"lldb::SBError &"); in _wrap_SBData_GetSignedInt8()
18683 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt8",3,"lldb::offset_t"); in _wrap_SBData_GetSignedInt8()
18685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetSignedInt8()
18690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetSignedInt8()
18694 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetSignedInt8()
18696 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetSignedInt8()
18701 lua_error(L); in _wrap_SBData_GetSignedInt8()
18706 static int _wrap_SBData_GetSignedInt16(lua_State* L) { in _wrap_SBData_GetSignedInt16() argument
18715 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt16",1,"lldb::SBData *"); in _wrap_SBData_GetSignedInt16()
18716 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt16",2,"lldb::SBError &"); in _wrap_SBData_GetSignedInt16()
18717 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt16",3,"lldb::offset_t"); in _wrap_SBData_GetSignedInt16()
18719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetSignedInt16()
18724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetSignedInt16()
18728 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetSignedInt16()
18730 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetSignedInt16()
18735 lua_error(L); in _wrap_SBData_GetSignedInt16()
18740 static int _wrap_SBData_GetSignedInt32(lua_State* L) { in _wrap_SBData_GetSignedInt32() argument
18749 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt32",1,"lldb::SBData *"); in _wrap_SBData_GetSignedInt32()
18750 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt32",2,"lldb::SBError &"); in _wrap_SBData_GetSignedInt32()
18751 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt32",3,"lldb::offset_t"); in _wrap_SBData_GetSignedInt32()
18753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetSignedInt32()
18758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetSignedInt32()
18762 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetSignedInt32()
18764 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetSignedInt32()
18769 lua_error(L); in _wrap_SBData_GetSignedInt32()
18774 static int _wrap_SBData_GetSignedInt64(lua_State* L) { in _wrap_SBData_GetSignedInt64() argument
18783 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetSignedInt64",1,"lldb::SBData *"); in _wrap_SBData_GetSignedInt64()
18784 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetSignedInt64",2,"lldb::SBError &"); in _wrap_SBData_GetSignedInt64()
18785 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetSignedInt64",3,"lldb::offset_t"); in _wrap_SBData_GetSignedInt64()
18787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetSignedInt64()
18792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetSignedInt64()
18796 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetSignedInt64()
18798 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_GetSignedInt64()
18803 lua_error(L); in _wrap_SBData_GetSignedInt64()
18808 static int _wrap_SBData_GetString(lua_State* L) { in _wrap_SBData_GetString() argument
18817 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetString",1,"lldb::SBData *"); in _wrap_SBData_GetString()
18818 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetString",2,"lldb::SBError &"); in _wrap_SBData_GetString()
18819 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetString",3,"lldb::offset_t"); in _wrap_SBData_GetString()
18821 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetString()
18826 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_GetString()
18830 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_GetString()
18832 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBData_GetString()
18837 lua_error(L); in _wrap_SBData_GetString()
18842 static int _wrap_SBData_ReadRawData(lua_State* L) { in _wrap_SBData_ReadRawData() argument
18853 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::ReadRawData",1,"lldb::SBData *"); in _wrap_SBData_ReadRawData()
18854 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::ReadRawData",2,"lldb::SBError &"); in _wrap_SBData_ReadRawData()
18855 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::ReadRawData",3,"lldb::offset_t"); in _wrap_SBData_ReadRawData()
18857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_ReadRawData()
18862 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_ReadRawData()
18866 arg3 = (lldb::offset_t)lua_tointeger(L, 3); in _wrap_SBData_ReadRawData()
18868 arg5 = luaL_checkinteger(L, 4); in _wrap_SBData_ReadRawData()
18870 return luaL_error(L, "Positive integer expected"); in _wrap_SBData_ReadRawData()
18875 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBData_ReadRawData()
18877 lua_pop(L, 1); // Blow away the previous result in _wrap_SBData_ReadRawData()
18879 lua_pushliteral(L, ""); in _wrap_SBData_ReadRawData()
18881 lua_pushlstring(L, (const char *)arg4, result); in _wrap_SBData_ReadRawData()
18890 lua_error(L); in _wrap_SBData_ReadRawData()
18895 static int _wrap_SBData_GetDescription__SWIG_0(lua_State* L) { in _wrap_SBData_GetDescription__SWIG_0() argument
18904 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetDescription",1,"lldb::SBData *"); in _wrap_SBData_GetDescription__SWIG_0()
18905 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetDescription",2,"lldb::SBStream &"); in _wrap_SBData_GetDescription__SWIG_0()
18906 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBData::GetDescription",3,"lldb::addr_t"); in _wrap_SBData_GetDescription__SWIG_0()
18908 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetDescription__SWIG_0()
18913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBData_GetDescription__SWIG_0()
18917 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBData_GetDescription__SWIG_0()
18919 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_GetDescription__SWIG_0()
18924 lua_error(L); in _wrap_SBData_GetDescription__SWIG_0()
18929 static int _wrap_SBData_GetDescription__SWIG_1(lua_State* L) { in _wrap_SBData_GetDescription__SWIG_1() argument
18937 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::GetDescription",1,"lldb::SBData *"); in _wrap_SBData_GetDescription__SWIG_1()
18938 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::GetDescription",2,"lldb::SBStream &"); in _wrap_SBData_GetDescription__SWIG_1()
18940 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_GetDescription__SWIG_1()
18945 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBData_GetDescription__SWIG_1()
18950 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_GetDescription__SWIG_1()
18955 lua_error(L); in _wrap_SBData_GetDescription__SWIG_1()
18960 static int _wrap_SBData_GetDescription(lua_State* L) { in _wrap_SBData_GetDescription() argument
18966 argc = lua_gettop(L); in _wrap_SBData_GetDescription()
18971 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBData_GetDescription()
18980 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBData_GetDescription()
18987 return _wrap_SBData_GetDescription__SWIG_1(L); in _wrap_SBData_GetDescription()
18995 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBData_GetDescription()
19004 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBData_GetDescription()
19012 _v = lua_isnumber(L,argv[2]); in _wrap_SBData_GetDescription()
19015 return _wrap_SBData_GetDescription__SWIG_0(L); in _wrap_SBData_GetDescription()
19021 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBData_GetDescription'\n" in _wrap_SBData_GetDescription()
19025 lua_error(L);return 0; in _wrap_SBData_GetDescription()
19029 static int _wrap_SBData_SetData(lua_State* L) { in _wrap_SBData_SetData() argument
19040 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetData",1,"lldb::SBData *"); in _wrap_SBData_SetData()
19041 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::SetData",2,"lldb::SBError &"); in _wrap_SBData_SetData()
19042 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBData::SetData",4,"lldb::ByteOrder"); in _wrap_SBData_SetData()
19043 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBData::SetData",5,"uint8_t"); in _wrap_SBData_SetData()
19045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetData()
19050 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_SetData()
19055 arg3 = (void *)luaL_checklstring(L, 3, &arg4); in _wrap_SBData_SetData()
19057 arg5 = (lldb::ByteOrder)lua_tointeger(L, 4); in _wrap_SBData_SetData()
19058 arg6 = (uint8_t)lua_tointeger(L, 5); in _wrap_SBData_SetData()
19065 lua_error(L); in _wrap_SBData_SetData()
19070 static int _wrap_SBData_SetDataWithOwnership(lua_State* L) { in _wrap_SBData_SetDataWithOwnership() argument
19081 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",1,"lldb::SBData *"); in _wrap_SBData_SetDataWithOwnership()
19082 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",2,"lldb::SBError &"); in _wrap_SBData_SetDataWithOwnership()
19083 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",4,"lldb::ByteOrder"); in _wrap_SBData_SetDataWithOwnership()
19084 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBData::SetDataWithOwnership",5,"uint8_t"); in _wrap_SBData_SetDataWithOwnership()
19086 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataWithOwnership()
19091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBData_SetDataWithOwnership()
19096 arg3 = (void *)luaL_checklstring(L, 3, &arg4); in _wrap_SBData_SetDataWithOwnership()
19098 arg5 = (lldb::ByteOrder)lua_tointeger(L, 4); in _wrap_SBData_SetDataWithOwnership()
19099 arg6 = (uint8_t)lua_tointeger(L, 5); in _wrap_SBData_SetDataWithOwnership()
19106 lua_error(L); in _wrap_SBData_SetDataWithOwnership()
19111 static int _wrap_SBData_Append(lua_State* L) { in _wrap_SBData_Append() argument
19119 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::Append",1,"lldb::SBData *"); in _wrap_SBData_Append()
19120 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBData::Append",2,"lldb::SBData const &"); in _wrap_SBData_Append()
19122 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_Append()
19127 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_Append()
19132 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_Append()
19137 lua_error(L); in _wrap_SBData_Append()
19142 static int _wrap_SBData_CreateDataFromCString(lua_State* L) { in _wrap_SBData_CreateDataFromCString() argument
19151 … if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromCString",1,"lldb::ByteOrder"); in _wrap_SBData_CreateDataFromCString()
19152 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromCString",2,"uint32_t"); in _wrap_SBData_CreateDataFromCString()
19153 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBData::CreateDataFromCString",3,"char const *… in _wrap_SBData_CreateDataFromCString()
19154 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1); in _wrap_SBData_CreateDataFromCString()
19155 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBData_CreateDataFromCString()
19156 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBData_CreateDataFromCString()
19160 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBData_CreateDataFromCString()
19166 lua_error(L); in _wrap_SBData_CreateDataFromCString()
19171 static int _wrap_SBData_CreateDataFromUInt64Array(lua_State* L) { in _wrap_SBData_CreateDataFromUInt64Array() argument
19181 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt64Array",1,"lldb::ByteOrder… in _wrap_SBData_CreateDataFromUInt64Array()
19182 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt64Array",2,"uint32_t"); in _wrap_SBData_CreateDataFromUInt64Array()
19183 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1); in _wrap_SBData_CreateDataFromUInt64Array()
19184 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBData_CreateDataFromUInt64Array()
19186 if (lua_istable(L, 3)) { in _wrap_SBData_CreateDataFromUInt64Array()
19188 arg4 = lua_rawlen(L, 3); in _wrap_SBData_CreateDataFromUInt64Array()
19192 lua_rawgeti(L, 3, i); in _wrap_SBData_CreateDataFromUInt64Array()
19193 if (!lua_isnumber(L, -1)) { in _wrap_SBData_CreateDataFromUInt64Array()
19195 lua_pop(L, 1); in _wrap_SBData_CreateDataFromUInt64Array()
19196 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_CreateDataFromUInt64Array()
19198 arg3[j++] = (uint64_t) lua_tonumber(L, -1); in _wrap_SBData_CreateDataFromUInt64Array()
19199 lua_pop(L, 1); in _wrap_SBData_CreateDataFromUInt64Array()
19201 } else if (lua_isnil(L, 3)) { in _wrap_SBData_CreateDataFromUInt64Array()
19207 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_CreateDataFromUInt64Array()
19213 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBData_CreateDataFromUInt64Array()
19225 lua_error(L); in _wrap_SBData_CreateDataFromUInt64Array()
19230 static int _wrap_SBData_CreateDataFromUInt32Array(lua_State* L) { in _wrap_SBData_CreateDataFromUInt32Array() argument
19240 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt32Array",1,"lldb::ByteOrder… in _wrap_SBData_CreateDataFromUInt32Array()
19241 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromUInt32Array",2,"uint32_t"); in _wrap_SBData_CreateDataFromUInt32Array()
19242 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1); in _wrap_SBData_CreateDataFromUInt32Array()
19243 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBData_CreateDataFromUInt32Array()
19245 if (lua_istable(L, 3)) { in _wrap_SBData_CreateDataFromUInt32Array()
19247 arg4 = lua_rawlen(L, 3); in _wrap_SBData_CreateDataFromUInt32Array()
19251 lua_rawgeti(L, 3, i); in _wrap_SBData_CreateDataFromUInt32Array()
19252 if (!lua_isnumber(L, -1)) { in _wrap_SBData_CreateDataFromUInt32Array()
19254 lua_pop(L, 1); in _wrap_SBData_CreateDataFromUInt32Array()
19255 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_CreateDataFromUInt32Array()
19257 arg3[j++] = (uint32_t) lua_tonumber(L, -1); in _wrap_SBData_CreateDataFromUInt32Array()
19258 lua_pop(L, 1); in _wrap_SBData_CreateDataFromUInt32Array()
19260 } else if (lua_isnil(L, 3)) { in _wrap_SBData_CreateDataFromUInt32Array()
19266 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_CreateDataFromUInt32Array()
19272 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBData_CreateDataFromUInt32Array()
19284 lua_error(L); in _wrap_SBData_CreateDataFromUInt32Array()
19289 static int _wrap_SBData_CreateDataFromSInt64Array(lua_State* L) { in _wrap_SBData_CreateDataFromSInt64Array() argument
19299 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt64Array",1,"lldb::ByteOrder… in _wrap_SBData_CreateDataFromSInt64Array()
19300 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt64Array",2,"uint32_t"); in _wrap_SBData_CreateDataFromSInt64Array()
19301 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1); in _wrap_SBData_CreateDataFromSInt64Array()
19302 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBData_CreateDataFromSInt64Array()
19304 if (lua_istable(L, 3)) { in _wrap_SBData_CreateDataFromSInt64Array()
19306 arg4 = lua_rawlen(L, 3); in _wrap_SBData_CreateDataFromSInt64Array()
19310 lua_rawgeti(L, 3, i); in _wrap_SBData_CreateDataFromSInt64Array()
19311 if (!lua_isnumber(L, -1)) { in _wrap_SBData_CreateDataFromSInt64Array()
19313 lua_pop(L, 1); in _wrap_SBData_CreateDataFromSInt64Array()
19314 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_CreateDataFromSInt64Array()
19316 arg3[j++] = (int64_t) lua_tonumber(L, -1); in _wrap_SBData_CreateDataFromSInt64Array()
19317 lua_pop(L, 1); in _wrap_SBData_CreateDataFromSInt64Array()
19319 } else if (lua_isnil(L, 3)) { in _wrap_SBData_CreateDataFromSInt64Array()
19325 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_CreateDataFromSInt64Array()
19331 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBData_CreateDataFromSInt64Array()
19343 lua_error(L); in _wrap_SBData_CreateDataFromSInt64Array()
19348 static int _wrap_SBData_CreateDataFromSInt32Array(lua_State* L) { in _wrap_SBData_CreateDataFromSInt32Array() argument
19358 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt32Array",1,"lldb::ByteOrder… in _wrap_SBData_CreateDataFromSInt32Array()
19359 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromSInt32Array",2,"uint32_t"); in _wrap_SBData_CreateDataFromSInt32Array()
19360 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1); in _wrap_SBData_CreateDataFromSInt32Array()
19361 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBData_CreateDataFromSInt32Array()
19363 if (lua_istable(L, 3)) { in _wrap_SBData_CreateDataFromSInt32Array()
19365 arg4 = lua_rawlen(L, 3); in _wrap_SBData_CreateDataFromSInt32Array()
19369 lua_rawgeti(L, 3, i); in _wrap_SBData_CreateDataFromSInt32Array()
19370 if (!lua_isnumber(L, -1)) { in _wrap_SBData_CreateDataFromSInt32Array()
19372 lua_pop(L, 1); in _wrap_SBData_CreateDataFromSInt32Array()
19373 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_CreateDataFromSInt32Array()
19375 arg3[j++] = (int32_t) lua_tonumber(L, -1); in _wrap_SBData_CreateDataFromSInt32Array()
19376 lua_pop(L, 1); in _wrap_SBData_CreateDataFromSInt32Array()
19378 } else if (lua_isnil(L, 3)) { in _wrap_SBData_CreateDataFromSInt32Array()
19384 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_CreateDataFromSInt32Array()
19390 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBData_CreateDataFromSInt32Array()
19402 lua_error(L); in _wrap_SBData_CreateDataFromSInt32Array()
19407 static int _wrap_SBData_CreateDataFromDoubleArray(lua_State* L) { in _wrap_SBData_CreateDataFromDoubleArray() argument
19417 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBData::CreateDataFromDoubleArray",1,"lldb::ByteOrder… in _wrap_SBData_CreateDataFromDoubleArray()
19418 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBData::CreateDataFromDoubleArray",2,"uint32_t"); in _wrap_SBData_CreateDataFromDoubleArray()
19419 arg1 = (lldb::ByteOrder)lua_tointeger(L, 1); in _wrap_SBData_CreateDataFromDoubleArray()
19420 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBData_CreateDataFromDoubleArray()
19422 if (lua_istable(L, 3)) { in _wrap_SBData_CreateDataFromDoubleArray()
19424 arg4 = lua_rawlen(L, 3); in _wrap_SBData_CreateDataFromDoubleArray()
19428 lua_rawgeti(L, 3, i); in _wrap_SBData_CreateDataFromDoubleArray()
19429 if (!lua_isnumber(L, -1)) { in _wrap_SBData_CreateDataFromDoubleArray()
19431 lua_pop(L, 1); in _wrap_SBData_CreateDataFromDoubleArray()
19432 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_CreateDataFromDoubleArray()
19434 arg3[j++] = (double) lua_tonumber(L, -1); in _wrap_SBData_CreateDataFromDoubleArray()
19435 lua_pop(L, 1); in _wrap_SBData_CreateDataFromDoubleArray()
19437 } else if (lua_isnil(L, 3)) { in _wrap_SBData_CreateDataFromDoubleArray()
19443 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_CreateDataFromDoubleArray()
19449 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBData_CreateDataFromDoubleArray()
19461 lua_error(L); in _wrap_SBData_CreateDataFromDoubleArray()
19466 static int _wrap_SBData_SetDataFromCString(lua_State* L) { in _wrap_SBData_SetDataFromCString() argument
19474 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromCString",1,"lldb::SBData *"); in _wrap_SBData_SetDataFromCString()
19475 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBData::SetDataFromCString",2,"char const *"); in _wrap_SBData_SetDataFromCString()
19477 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataFromCString()
19481 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBData_SetDataFromCString()
19483 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_SetDataFromCString()
19488 lua_error(L); in _wrap_SBData_SetDataFromCString()
19493 static int _wrap_SBData_SetDataFromUInt64Array(lua_State* L) { in _wrap_SBData_SetDataFromUInt64Array() argument
19502 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromUInt64Array",1,"lldb::SBData *"); in _wrap_SBData_SetDataFromUInt64Array()
19504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataFromUInt64Array()
19509 if (lua_istable(L, 2)) { in _wrap_SBData_SetDataFromUInt64Array()
19511 arg3 = lua_rawlen(L, 2); in _wrap_SBData_SetDataFromUInt64Array()
19515 lua_rawgeti(L, 2, i); in _wrap_SBData_SetDataFromUInt64Array()
19516 if (!lua_isnumber(L, -1)) { in _wrap_SBData_SetDataFromUInt64Array()
19518 lua_pop(L, 1); in _wrap_SBData_SetDataFromUInt64Array()
19519 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_SetDataFromUInt64Array()
19521 arg2[j++] = (uint64_t) lua_tonumber(L, -1); in _wrap_SBData_SetDataFromUInt64Array()
19522 lua_pop(L, 1); in _wrap_SBData_SetDataFromUInt64Array()
19524 } else if (lua_isnil(L, 2)) { in _wrap_SBData_SetDataFromUInt64Array()
19530 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_SetDataFromUInt64Array()
19534 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_SetDataFromUInt64Array()
19545 lua_error(L); in _wrap_SBData_SetDataFromUInt64Array()
19550 static int _wrap_SBData_SetDataFromUInt32Array(lua_State* L) { in _wrap_SBData_SetDataFromUInt32Array() argument
19559 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromUInt32Array",1,"lldb::SBData *"); in _wrap_SBData_SetDataFromUInt32Array()
19561 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataFromUInt32Array()
19566 if (lua_istable(L, 2)) { in _wrap_SBData_SetDataFromUInt32Array()
19568 arg3 = lua_rawlen(L, 2); in _wrap_SBData_SetDataFromUInt32Array()
19572 lua_rawgeti(L, 2, i); in _wrap_SBData_SetDataFromUInt32Array()
19573 if (!lua_isnumber(L, -1)) { in _wrap_SBData_SetDataFromUInt32Array()
19575 lua_pop(L, 1); in _wrap_SBData_SetDataFromUInt32Array()
19576 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_SetDataFromUInt32Array()
19578 arg2[j++] = (uint32_t) lua_tonumber(L, -1); in _wrap_SBData_SetDataFromUInt32Array()
19579 lua_pop(L, 1); in _wrap_SBData_SetDataFromUInt32Array()
19581 } else if (lua_isnil(L, 2)) { in _wrap_SBData_SetDataFromUInt32Array()
19587 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_SetDataFromUInt32Array()
19591 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_SetDataFromUInt32Array()
19602 lua_error(L); in _wrap_SBData_SetDataFromUInt32Array()
19607 static int _wrap_SBData_SetDataFromSInt64Array(lua_State* L) { in _wrap_SBData_SetDataFromSInt64Array() argument
19616 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromSInt64Array",1,"lldb::SBData *"); in _wrap_SBData_SetDataFromSInt64Array()
19618 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataFromSInt64Array()
19623 if (lua_istable(L, 2)) { in _wrap_SBData_SetDataFromSInt64Array()
19625 arg3 = lua_rawlen(L, 2); in _wrap_SBData_SetDataFromSInt64Array()
19629 lua_rawgeti(L, 2, i); in _wrap_SBData_SetDataFromSInt64Array()
19630 if (!lua_isnumber(L, -1)) { in _wrap_SBData_SetDataFromSInt64Array()
19632 lua_pop(L, 1); in _wrap_SBData_SetDataFromSInt64Array()
19633 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_SetDataFromSInt64Array()
19635 arg2[j++] = (int64_t) lua_tonumber(L, -1); in _wrap_SBData_SetDataFromSInt64Array()
19636 lua_pop(L, 1); in _wrap_SBData_SetDataFromSInt64Array()
19638 } else if (lua_isnil(L, 2)) { in _wrap_SBData_SetDataFromSInt64Array()
19644 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_SetDataFromSInt64Array()
19648 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_SetDataFromSInt64Array()
19659 lua_error(L); in _wrap_SBData_SetDataFromSInt64Array()
19664 static int _wrap_SBData_SetDataFromSInt32Array(lua_State* L) { in _wrap_SBData_SetDataFromSInt32Array() argument
19673 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromSInt32Array",1,"lldb::SBData *"); in _wrap_SBData_SetDataFromSInt32Array()
19675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataFromSInt32Array()
19680 if (lua_istable(L, 2)) { in _wrap_SBData_SetDataFromSInt32Array()
19682 arg3 = lua_rawlen(L, 2); in _wrap_SBData_SetDataFromSInt32Array()
19686 lua_rawgeti(L, 2, i); in _wrap_SBData_SetDataFromSInt32Array()
19687 if (!lua_isnumber(L, -1)) { in _wrap_SBData_SetDataFromSInt32Array()
19689 lua_pop(L, 1); in _wrap_SBData_SetDataFromSInt32Array()
19690 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_SetDataFromSInt32Array()
19692 arg2[j++] = (int32_t) lua_tonumber(L, -1); in _wrap_SBData_SetDataFromSInt32Array()
19693 lua_pop(L, 1); in _wrap_SBData_SetDataFromSInt32Array()
19695 } else if (lua_isnil(L, 2)) { in _wrap_SBData_SetDataFromSInt32Array()
19701 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_SetDataFromSInt32Array()
19705 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_SetDataFromSInt32Array()
19716 lua_error(L); in _wrap_SBData_SetDataFromSInt32Array()
19721 static int _wrap_SBData_SetDataFromDoubleArray(lua_State* L) { in _wrap_SBData_SetDataFromDoubleArray() argument
19730 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::SetDataFromDoubleArray",1,"lldb::SBData *"); in _wrap_SBData_SetDataFromDoubleArray()
19732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData_SetDataFromDoubleArray()
19737 if (lua_istable(L, 2)) { in _wrap_SBData_SetDataFromDoubleArray()
19739 arg3 = lua_rawlen(L, 2); in _wrap_SBData_SetDataFromDoubleArray()
19743 lua_rawgeti(L, 2, i); in _wrap_SBData_SetDataFromDoubleArray()
19744 if (!lua_isnumber(L, -1)) { in _wrap_SBData_SetDataFromDoubleArray()
19746 lua_pop(L, 1); in _wrap_SBData_SetDataFromDoubleArray()
19747 return luaL_error(L, "List should only contain numbers"); in _wrap_SBData_SetDataFromDoubleArray()
19749 arg2[j++] = (double) lua_tonumber(L, -1); in _wrap_SBData_SetDataFromDoubleArray()
19750 lua_pop(L, 1); in _wrap_SBData_SetDataFromDoubleArray()
19752 } else if (lua_isnil(L, 2)) { in _wrap_SBData_SetDataFromDoubleArray()
19758 return luaL_error(L, "A list of numbers expected."); in _wrap_SBData_SetDataFromDoubleArray()
19762 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBData_SetDataFromDoubleArray()
19773 lua_error(L); in _wrap_SBData_SetDataFromDoubleArray()
19778 static int _wrap_SBData___tostring(lua_State* L) { in _wrap_SBData___tostring() argument
19785 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBData::__repr__",1,"lldb::SBData *"); in _wrap_SBData___tostring()
19787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBData___tostring()
19792 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBData___tostring()
19797 lua_error(L); in _wrap_SBData___tostring()
19806 static int _proxy__wrap_new_SBData(lua_State *L) { in _proxy__wrap_new_SBData() argument
19807 assert(lua_istable(L,1)); in _proxy__wrap_new_SBData()
19808 lua_pushcfunction(L,_wrap_new_SBData); in _proxy__wrap_new_SBData()
19809 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBData()
19810 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBData()
19811 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBData()
19888 static int _wrap_new_SBDebugger__SWIG_0(lua_State* L) { in _wrap_new_SBDebugger__SWIG_0() argument
19895 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_new_SBDebugger__SWIG_0()
19900 lua_error(L); in _wrap_new_SBDebugger__SWIG_0()
19905 static int _wrap_new_SBDebugger__SWIG_1(lua_State* L) { in _wrap_new_SBDebugger__SWIG_1() argument
19912 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::SBDebugger",1,"lldb::SBDebugger const &"… in _wrap_new_SBDebugger__SWIG_1()
19914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_new_SBDebugger__SWIG_1()
19919 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_new_SBDebugger__SWIG_1()
19924 lua_error(L); in _wrap_new_SBDebugger__SWIG_1()
19929 static int _wrap_new_SBDebugger(lua_State* L) { in _wrap_new_SBDebugger() argument
19935 argc = lua_gettop(L); in _wrap_new_SBDebugger()
19937 return _wrap_new_SBDebugger__SWIG_0(L); in _wrap_new_SBDebugger()
19943 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBDebugger()
19950 return _wrap_new_SBDebugger__SWIG_1(L); in _wrap_new_SBDebugger()
19954 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBDebugger'\n" in _wrap_new_SBDebugger()
19958 lua_error(L);return 0; in _wrap_new_SBDebugger()
19962 static int _wrap_SBDebugger_GetBroadcasterClass(lua_State* L) { in _wrap_SBDebugger_GetBroadcasterClass() argument
19969 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_GetBroadcasterClass()
19974 lua_error(L); in _wrap_SBDebugger_GetBroadcasterClass()
19979 static int _wrap_SBDebugger_SupportsLanguage(lua_State* L) { in _wrap_SBDebugger_SupportsLanguage() argument
19986 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::SupportsLanguage",1,"lldb::LanguageType"); in _wrap_SBDebugger_SupportsLanguage()
19987 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBDebugger_SupportsLanguage()
19989 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_SupportsLanguage()
19994 lua_error(L); in _wrap_SBDebugger_SupportsLanguage()
19999 static int _wrap_SBDebugger_GetBroadcaster(lua_State* L) { in _wrap_SBDebugger_GetBroadcaster() argument
20006 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetBroadcaster",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetBroadcaster()
20008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetBroadcaster()
20015 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_SBDebugger_GetBroadcaster()
20021 lua_error(L); in _wrap_SBDebugger_GetBroadcaster()
20026 static int _wrap_SBDebugger_GetProgressFromEvent(lua_State* L) { in _wrap_SBDebugger_GetProgressFromEvent() argument
20045 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetProgressFromEvent",1,"lldb::SBEvent c… in _wrap_SBDebugger_GetProgressFromEvent()
20047 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBDebugger_GetProgressFromEvent()
20052 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_GetProgressFromEvent()
20053 lua_pushinteger(L, (lua_Integer) *arg2); SWIG_arg++; in _wrap_SBDebugger_GetProgressFromEvent()
20054 lua_pushinteger(L, (lua_Integer) *arg3); SWIG_arg++; in _wrap_SBDebugger_GetProgressFromEvent()
20055 lua_pushinteger(L, (lua_Integer) *arg4); SWIG_arg++; in _wrap_SBDebugger_GetProgressFromEvent()
20056 lua_pushboolean(L, (int)((*arg5)!=0)); SWIG_arg++; in _wrap_SBDebugger_GetProgressFromEvent()
20061 lua_error(L); in _wrap_SBDebugger_GetProgressFromEvent()
20066 static int _wrap_SBDebugger_GetProgressDataFromEvent(lua_State* L) { in _wrap_SBDebugger_GetProgressDataFromEvent() argument
20073 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetProgressDataFromEvent",1,"lldb::SBEve… in _wrap_SBDebugger_GetProgressDataFromEvent()
20075 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBDebugger_GetProgressDataFromEvent()
20082 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetProgressDataFromEvent()
20088 lua_error(L); in _wrap_SBDebugger_GetProgressDataFromEvent()
20093 static int _wrap_SBDebugger_GetDiagnosticFromEvent(lua_State* L) { in _wrap_SBDebugger_GetDiagnosticFromEvent() argument
20100 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDiagnosticFromEvent",1,"lldb::SBEvent… in _wrap_SBDebugger_GetDiagnosticFromEvent()
20102 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBDebugger_GetDiagnosticFromEvent()
20109 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetDiagnosticFromEvent()
20115 lua_error(L); in _wrap_SBDebugger_GetDiagnosticFromEvent()
20120 static int _wrap_SBDebugger_Initialize(lua_State* L) { in _wrap_SBDebugger_Initialize() argument
20131 lua_error(L); in _wrap_SBDebugger_Initialize()
20136 static int _wrap_SBDebugger_InitializeWithErrorHandling(lua_State* L) { in _wrap_SBDebugger_InitializeWithErrorHandling() argument
20145 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_InitializeWithErrorHandling()
20151 lua_error(L); in _wrap_SBDebugger_InitializeWithErrorHandling()
20156 static int _wrap_SBDebugger_PrintStackTraceOnError(lua_State* L) { in _wrap_SBDebugger_PrintStackTraceOnError() argument
20167 lua_error(L); in _wrap_SBDebugger_PrintStackTraceOnError()
20172 static int _wrap_SBDebugger_PrintDiagnosticsOnError(lua_State* L) { in _wrap_SBDebugger_PrintDiagnosticsOnError() argument
20183 lua_error(L); in _wrap_SBDebugger_PrintDiagnosticsOnError()
20188 static int _wrap_SBDebugger_Terminate(lua_State* L) { in _wrap_SBDebugger_Terminate() argument
20199 lua_error(L); in _wrap_SBDebugger_Terminate()
20204 static int _wrap_SBDebugger_Create__SWIG_0(lua_State* L) { in _wrap_SBDebugger_Create__SWIG_0() argument
20213 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_SBDebugger_Create__SWIG_0()
20219 lua_error(L); in _wrap_SBDebugger_Create__SWIG_0()
20224 static int _wrap_SBDebugger_Create__SWIG_1(lua_State* L) { in _wrap_SBDebugger_Create__SWIG_1() argument
20231 if(!lua_isboolean(L,1)) SWIG_fail_arg("lldb::SBDebugger::Create",1,"bool"); in _wrap_SBDebugger_Create__SWIG_1()
20232 arg1 = (lua_toboolean(L, 1)!=0); in _wrap_SBDebugger_Create__SWIG_1()
20236 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_SBDebugger_Create__SWIG_1()
20242 lua_error(L); in _wrap_SBDebugger_Create__SWIG_1()
20247 static int _wrap_SBDebugger_Create__SWIG_2(lua_State* L) { in _wrap_SBDebugger_Create__SWIG_2() argument
20256 if(!lua_isboolean(L,1)) SWIG_fail_arg("lldb::SBDebugger::Create",1,"bool"); in _wrap_SBDebugger_Create__SWIG_2()
20257 arg1 = (lua_toboolean(L, 1)!=0); in _wrap_SBDebugger_Create__SWIG_2()
20260 arg3 = (void *)L; in _wrap_SBDebugger_Create__SWIG_2()
20262 luaL_checktype(L, 2, LUA_TFUNCTION); in _wrap_SBDebugger_Create__SWIG_2()
20263 lua_settop(L, 2); in _wrap_SBDebugger_Create__SWIG_2()
20265 lua_pushlightuserdata(L, (void *)&LLDBSwigLuaCallLuaLogOutputCallback); in _wrap_SBDebugger_Create__SWIG_2()
20266 lua_insert(L, 2); in _wrap_SBDebugger_Create__SWIG_2()
20267 lua_settable(L, LUA_REGISTRYINDEX); in _wrap_SBDebugger_Create__SWIG_2()
20272 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_SBDebugger_Create__SWIG_2()
20278 lua_error(L); in _wrap_SBDebugger_Create__SWIG_2()
20283 static int _wrap_SBDebugger_Create(lua_State* L) { in _wrap_SBDebugger_Create() argument
20289 argc = lua_gettop(L); in _wrap_SBDebugger_Create()
20291 return _wrap_SBDebugger_Create__SWIG_0(L); in _wrap_SBDebugger_Create()
20296 _v = lua_isboolean(L,argv[0]); in _wrap_SBDebugger_Create()
20299 return _wrap_SBDebugger_Create__SWIG_1(L); in _wrap_SBDebugger_Create()
20305 _v = lua_isboolean(L,argv[0]); in _wrap_SBDebugger_Create()
20310 …if (SWIG_isptrtype(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_f_p_q_co… in _wrap_SBDebugger_Create()
20318 return _wrap_SBDebugger_Create__SWIG_2(L); in _wrap_SBDebugger_Create()
20322 if (SWIG_isptrtype(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, 0, 0)) { in _wrap_SBDebugger_Create()
20329 return _wrap_SBDebugger_Create__SWIG_2(L); in _wrap_SBDebugger_Create()
20335 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_Create'\n" in _wrap_SBDebugger_Create()
20340 lua_error(L);return 0; in _wrap_SBDebugger_Create()
20344 static int _wrap_SBDebugger_Destroy(lua_State* L) { in _wrap_SBDebugger_Destroy() argument
20350 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDebugger::Destroy",1,"lldb::SBDebugger &"); in _wrap_SBDebugger_Destroy()
20352 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_Destroy()
20362 lua_error(L); in _wrap_SBDebugger_Destroy()
20367 static int _wrap_SBDebugger_MemoryPressureDetected(lua_State* L) { in _wrap_SBDebugger_MemoryPressureDetected() argument
20378 lua_error(L); in _wrap_SBDebugger_MemoryPressureDetected()
20383 static int _wrap_SBDebugger_IsValid(lua_State* L) { in _wrap_SBDebugger_IsValid() argument
20390 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::IsValid",1,"lldb::SBDebugger const *"); in _wrap_SBDebugger_IsValid()
20392 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_IsValid()
20397 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_IsValid()
20402 lua_error(L); in _wrap_SBDebugger_IsValid()
20407 static int _wrap_SBDebugger_Clear(lua_State* L) { in _wrap_SBDebugger_Clear() argument
20413 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::Clear",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_Clear()
20415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_Clear()
20425 lua_error(L); in _wrap_SBDebugger_Clear()
20430 static int _wrap_SBDebugger_GetSetting__SWIG_0(lua_State* L) { in _wrap_SBDebugger_GetSetting__SWIG_0() argument
20438 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSetting",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetSetting__SWIG_0()
20439 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetSetting",2,"char const *"); in _wrap_SBDebugger_GetSetting__SWIG_0()
20441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSetting__SWIG_0()
20445 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_GetSetting__SWIG_0()
20449 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetSetting__SWIG_0()
20455 lua_error(L); in _wrap_SBDebugger_GetSetting__SWIG_0()
20460 static int _wrap_SBDebugger_GetSetting__SWIG_1(lua_State* L) { in _wrap_SBDebugger_GetSetting__SWIG_1() argument
20467 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSetting",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetSetting__SWIG_1()
20469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSetting__SWIG_1()
20476 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetSetting__SWIG_1()
20482 lua_error(L); in _wrap_SBDebugger_GetSetting__SWIG_1()
20487 static int _wrap_SBDebugger_GetSetting(lua_State* L) { in _wrap_SBDebugger_GetSetting() argument
20493 argc = lua_gettop(L); in _wrap_SBDebugger_GetSetting()
20498 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_GetSetting()
20505 return _wrap_SBDebugger_GetSetting__SWIG_1(L); in _wrap_SBDebugger_GetSetting()
20512 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_GetSetting()
20520 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBDebugger_GetSetting()
20523 return _wrap_SBDebugger_GetSetting__SWIG_0(L); in _wrap_SBDebugger_GetSetting()
20528 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_GetSetting'\n" in _wrap_SBDebugger_GetSetting()
20532 lua_error(L);return 0; in _wrap_SBDebugger_GetSetting()
20536 static int _wrap_SBDebugger_SetAsync(lua_State* L) { in _wrap_SBDebugger_SetAsync() argument
20543 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetAsync",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetAsync()
20544 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetAsync",2,"bool"); in _wrap_SBDebugger_SetAsync()
20546 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetAsync()
20550 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SetAsync()
20557 lua_error(L); in _wrap_SBDebugger_SetAsync()
20562 static int _wrap_SBDebugger_GetAsync(lua_State* L) { in _wrap_SBDebugger_GetAsync() argument
20569 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetAsync",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetAsync()
20571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetAsync()
20576 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetAsync()
20581 lua_error(L); in _wrap_SBDebugger_GetAsync()
20586 static int _wrap_SBDebugger_SkipLLDBInitFiles(lua_State* L) { in _wrap_SBDebugger_SkipLLDBInitFiles() argument
20593 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SkipLLDBInitFiles",1,"lldb::SBDebugger *… in _wrap_SBDebugger_SkipLLDBInitFiles()
20594 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SkipLLDBInitFiles",2,"bool"); in _wrap_SBDebugger_SkipLLDBInitFiles()
20596 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SkipLLDBInitFiles()
20600 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SkipLLDBInitFiles()
20607 lua_error(L); in _wrap_SBDebugger_SkipLLDBInitFiles()
20612 static int _wrap_SBDebugger_SkipAppInitFiles(lua_State* L) { in _wrap_SBDebugger_SkipAppInitFiles() argument
20619 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SkipAppInitFiles",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_SkipAppInitFiles()
20620 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SkipAppInitFiles",2,"bool"); in _wrap_SBDebugger_SkipAppInitFiles()
20622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SkipAppInitFiles()
20626 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SkipAppInitFiles()
20633 lua_error(L); in _wrap_SBDebugger_SkipAppInitFiles()
20638 static int _wrap_SBDebugger_SetInputString(lua_State* L) { in _wrap_SBDebugger_SetInputString() argument
20646 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInputString",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetInputString()
20647 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetInputString",2,"char const *"); in _wrap_SBDebugger_SetInputString()
20649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetInputString()
20653 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_SetInputString()
20657 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetInputString()
20663 lua_error(L); in _wrap_SBDebugger_SetInputString()
20668 static int _wrap_SBDebugger_SetInputFile__SWIG_0(lua_State* L) { in _wrap_SBDebugger_SetInputFile__SWIG_0() argument
20677 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInputFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetInputFile__SWIG_0()
20678 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetInputFile",2,"lldb::SBFile"); in _wrap_SBDebugger_SetInputFile__SWIG_0()
20680 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetInputFile__SWIG_0()
20685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBDebugger_SetInputFile__SWIG_0()
20693 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetInputFile__SWIG_0()
20699 lua_error(L); in _wrap_SBDebugger_SetInputFile__SWIG_0()
20704 static int _wrap_SBDebugger_SetOutputFile__SWIG_0(lua_State* L) { in _wrap_SBDebugger_SetOutputFile__SWIG_0() argument
20713 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetOutputFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetOutputFile__SWIG_0()
20714 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetOutputFile",2,"lldb::SBFile"); in _wrap_SBDebugger_SetOutputFile__SWIG_0()
20716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetOutputFile__SWIG_0()
20721 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBDebugger_SetOutputFile__SWIG_0()
20729 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetOutputFile__SWIG_0()
20735 lua_error(L); in _wrap_SBDebugger_SetOutputFile__SWIG_0()
20740 static int _wrap_SBDebugger_SetErrorFile__SWIG_0(lua_State* L) { in _wrap_SBDebugger_SetErrorFile__SWIG_0() argument
20749 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetErrorFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetErrorFile__SWIG_0()
20750 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetErrorFile",2,"lldb::SBFile"); in _wrap_SBDebugger_SetErrorFile__SWIG_0()
20752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetErrorFile__SWIG_0()
20757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBDebugger_SetErrorFile__SWIG_0()
20765 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetErrorFile__SWIG_0()
20771 lua_error(L); in _wrap_SBDebugger_SetErrorFile__SWIG_0()
20776 static int _wrap_SBDebugger_SetInputFile__SWIG_1(lua_State* L) { in _wrap_SBDebugger_SetInputFile__SWIG_1() argument
20784 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInputFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetInputFile__SWIG_1()
20786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetInputFile__SWIG_1()
20791 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBDebugger_SetInputFile__SWIG_1()
20795 return luaL_error(L, "Invalid file"); in _wrap_SBDebugger_SetInputFile__SWIG_1()
20801 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetInputFile__SWIG_1()
20807 lua_error(L); in _wrap_SBDebugger_SetInputFile__SWIG_1()
20812 static int _wrap_SBDebugger_SetInputFile(lua_State* L) { in _wrap_SBDebugger_SetInputFile() argument
20818 argc = lua_gettop(L); in _wrap_SBDebugger_SetInputFile()
20823 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetInputFile()
20832 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetInputFile()
20839 return _wrap_SBDebugger_SetInputFile__SWIG_0(L); in _wrap_SBDebugger_SetInputFile()
20847 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetInputFile()
20855 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBDebugger_SetInputFile()
20856 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBDebugger_SetInputFile()
20859 return _wrap_SBDebugger_SetInputFile__SWIG_1(L); in _wrap_SBDebugger_SetInputFile()
20864 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_SetInputFile'\n" in _wrap_SBDebugger_SetInputFile()
20868 lua_error(L);return 0; in _wrap_SBDebugger_SetInputFile()
20872 static int _wrap_SBDebugger_SetOutputFile__SWIG_1(lua_State* L) { in _wrap_SBDebugger_SetOutputFile__SWIG_1() argument
20880 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetOutputFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetOutputFile__SWIG_1()
20882 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetOutputFile__SWIG_1()
20887 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBDebugger_SetOutputFile__SWIG_1()
20891 return luaL_error(L, "Invalid file"); in _wrap_SBDebugger_SetOutputFile__SWIG_1()
20897 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetOutputFile__SWIG_1()
20903 lua_error(L); in _wrap_SBDebugger_SetOutputFile__SWIG_1()
20908 static int _wrap_SBDebugger_SetOutputFile(lua_State* L) { in _wrap_SBDebugger_SetOutputFile() argument
20914 argc = lua_gettop(L); in _wrap_SBDebugger_SetOutputFile()
20919 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetOutputFile()
20928 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetOutputFile()
20935 return _wrap_SBDebugger_SetOutputFile__SWIG_0(L); in _wrap_SBDebugger_SetOutputFile()
20943 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetOutputFile()
20951 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBDebugger_SetOutputFile()
20952 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBDebugger_SetOutputFile()
20955 return _wrap_SBDebugger_SetOutputFile__SWIG_1(L); in _wrap_SBDebugger_SetOutputFile()
20960 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_SetOutputFile'\n" in _wrap_SBDebugger_SetOutputFile()
20964 lua_error(L);return 0; in _wrap_SBDebugger_SetOutputFile()
20968 static int _wrap_SBDebugger_SetErrorFile__SWIG_1(lua_State* L) { in _wrap_SBDebugger_SetErrorFile__SWIG_1() argument
20976 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetErrorFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetErrorFile__SWIG_1()
20978 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetErrorFile__SWIG_1()
20983 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBDebugger_SetErrorFile__SWIG_1()
20987 return luaL_error(L, "Invalid file"); in _wrap_SBDebugger_SetErrorFile__SWIG_1()
20993 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetErrorFile__SWIG_1()
20999 lua_error(L); in _wrap_SBDebugger_SetErrorFile__SWIG_1()
21004 static int _wrap_SBDebugger_SetErrorFile(lua_State* L) { in _wrap_SBDebugger_SetErrorFile() argument
21010 argc = lua_gettop(L); in _wrap_SBDebugger_SetErrorFile()
21015 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetErrorFile()
21024 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetErrorFile()
21031 return _wrap_SBDebugger_SetErrorFile__SWIG_0(L); in _wrap_SBDebugger_SetErrorFile()
21039 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_SetErrorFile()
21047 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBDebugger_SetErrorFile()
21048 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBDebugger_SetErrorFile()
21051 return _wrap_SBDebugger_SetErrorFile__SWIG_1(L); in _wrap_SBDebugger_SetErrorFile()
21056 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_SetErrorFile'\n" in _wrap_SBDebugger_SetErrorFile()
21060 lua_error(L);return 0; in _wrap_SBDebugger_SetErrorFile()
21064 static int _wrap_SBDebugger_GetInputFile(lua_State* L) { in _wrap_SBDebugger_GetInputFile() argument
21071 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInputFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetInputFile()
21073 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetInputFile()
21080 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_SBDebugger_GetInputFile()
21086 lua_error(L); in _wrap_SBDebugger_GetInputFile()
21091 static int _wrap_SBDebugger_GetOutputFile(lua_State* L) { in _wrap_SBDebugger_GetOutputFile() argument
21098 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetOutputFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetOutputFile()
21100 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetOutputFile()
21107 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_SBDebugger_GetOutputFile()
21113 lua_error(L); in _wrap_SBDebugger_GetOutputFile()
21118 static int _wrap_SBDebugger_GetErrorFile(lua_State* L) { in _wrap_SBDebugger_GetErrorFile() argument
21125 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetErrorFile",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetErrorFile()
21127 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetErrorFile()
21134 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_SBDebugger_GetErrorFile()
21140 lua_error(L); in _wrap_SBDebugger_GetErrorFile()
21145 static int _wrap_SBDebugger_SaveInputTerminalState(lua_State* L) { in _wrap_SBDebugger_SaveInputTerminalState() argument
21151 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SaveInputTerminalState",1,"lldb::SBDebug… in _wrap_SBDebugger_SaveInputTerminalState()
21153 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SaveInputTerminalState()
21163 lua_error(L); in _wrap_SBDebugger_SaveInputTerminalState()
21168 static int _wrap_SBDebugger_RestoreInputTerminalState(lua_State* L) { in _wrap_SBDebugger_RestoreInputTerminalState() argument
21174 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RestoreInputTerminalState",1,"lldb::SBDe… in _wrap_SBDebugger_RestoreInputTerminalState()
21176 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_RestoreInputTerminalState()
21186 lua_error(L); in _wrap_SBDebugger_RestoreInputTerminalState()
21191 static int _wrap_SBDebugger_GetCommandInterpreter(lua_State* L) { in _wrap_SBDebugger_GetCommandInterpreter() argument
21198 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCommandInterpreter",1,"lldb::SBDebugg… in _wrap_SBDebugger_GetCommandInterpreter()
21200 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetCommandInterpreter()
21207 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCommandInterpreter,1); SWIG_arg++; in _wrap_SBDebugger_GetCommandInterpreter()
21213 lua_error(L); in _wrap_SBDebugger_GetCommandInterpreter()
21218 static int _wrap_SBDebugger_HandleCommand(lua_State* L) { in _wrap_SBDebugger_HandleCommand() argument
21225 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::HandleCommand",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_HandleCommand()
21226 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::HandleCommand",2,"char const *"); in _wrap_SBDebugger_HandleCommand()
21228 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_HandleCommand()
21232 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_HandleCommand()
21239 lua_error(L); in _wrap_SBDebugger_HandleCommand()
21244 static int _wrap_SBDebugger_RequestInterrupt(lua_State* L) { in _wrap_SBDebugger_RequestInterrupt() argument
21250 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RequestInterrupt",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_RequestInterrupt()
21252 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_RequestInterrupt()
21262 lua_error(L); in _wrap_SBDebugger_RequestInterrupt()
21267 static int _wrap_SBDebugger_CancelInterruptRequest(lua_State* L) { in _wrap_SBDebugger_CancelInterruptRequest() argument
21273 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CancelInterruptRequest",1,"lldb::SBDebug… in _wrap_SBDebugger_CancelInterruptRequest()
21275 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_CancelInterruptRequest()
21285 lua_error(L); in _wrap_SBDebugger_CancelInterruptRequest()
21290 static int _wrap_SBDebugger_InterruptRequested(lua_State* L) { in _wrap_SBDebugger_InterruptRequested() argument
21297 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::InterruptRequested",1,"lldb::SBDebugger … in _wrap_SBDebugger_InterruptRequested()
21299 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_InterruptRequested()
21304 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_InterruptRequested()
21309 lua_error(L); in _wrap_SBDebugger_InterruptRequested()
21314 static int _wrap_SBDebugger_GetListener(lua_State* L) { in _wrap_SBDebugger_GetListener() argument
21321 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetListener",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetListener()
21323 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetListener()
21330 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_SBDebugger_GetListener()
21336 lua_error(L); in _wrap_SBDebugger_GetListener()
21341 static int _wrap_SBDebugger_HandleProcessEvent__SWIG_0(lua_State* L) { in _wrap_SBDebugger_HandleProcessEvent__SWIG_0() argument
21353 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",1,"lldb::SBDebugger … in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21354 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",2,"lldb::SBProcess c… in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21355 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",3,"lldb::SBEvent con… in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21356 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",4,"lldb::SBFile"); in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21357 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",5,"lldb::SBFile"); in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&argp5,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21391 lua_error(L); in _wrap_SBDebugger_HandleProcessEvent__SWIG_0()
21396 static int _wrap_SBDebugger_HandleProcessEvent__SWIG_1(lua_State* L) { in _wrap_SBDebugger_HandleProcessEvent__SWIG_1() argument
21406 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",1,"lldb::SBDebugger … in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21407 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",2,"lldb::SBProcess c… in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21408 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBDebugger::HandleProcessEvent",3,"lldb::SBEvent con… in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21425 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 4, LUA_FILEHANDLE); in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21429 return luaL_error(L, "Invalid file"); in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21433 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 5, LUA_FILEHANDLE); in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21437 return luaL_error(L, "Invalid file"); in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21446 lua_error(L); in _wrap_SBDebugger_HandleProcessEvent__SWIG_1()
21451 static int _wrap_SBDebugger_HandleProcessEvent(lua_State* L) { in _wrap_SBDebugger_HandleProcessEvent() argument
21457 argc = lua_gettop(L); in _wrap_SBDebugger_HandleProcessEvent()
21462 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21471 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21480 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21489 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21498 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21505 return _wrap_SBDebugger_HandleProcessEvent__SWIG_0(L); in _wrap_SBDebugger_HandleProcessEvent()
21516 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21525 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21534 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_HandleProcessEvent()
21542 _v = (lua_isuserdata(L, argv[3])) && in _wrap_SBDebugger_HandleProcessEvent()
21543 (luaL_testudata(L, argv[3], LUA_FILEHANDLE) != nullptr); in _wrap_SBDebugger_HandleProcessEvent()
21547 _v = (lua_isuserdata(L, argv[4])) && in _wrap_SBDebugger_HandleProcessEvent()
21548 (luaL_testudata(L, argv[4], LUA_FILEHANDLE) != nullptr); in _wrap_SBDebugger_HandleProcessEvent()
21551 return _wrap_SBDebugger_HandleProcessEvent__SWIG_1(L); in _wrap_SBDebugger_HandleProcessEvent()
21559 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_HandleProcessEvent'\… in _wrap_SBDebugger_HandleProcessEvent()
21563 lua_error(L);return 0; in _wrap_SBDebugger_HandleProcessEvent()
21567 static int _wrap_SBDebugger_CreateTarget__SWIG_0(lua_State* L) { in _wrap_SBDebugger_CreateTarget__SWIG_0() argument
21579 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21580 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",2,"char const *"); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21581 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",3,"char const *"); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21582 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",4,"char const *"); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21583 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",5,"bool"); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21584 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",6,"lldb::SBError &"); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_CreateTarget__SWIG_0()
21590 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21591 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21592 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21593 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21595 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBDebugger_CreateTarget__SWIG_0()
21602 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_CreateTarget__SWIG_0()
21608 lua_error(L); in _wrap_SBDebugger_CreateTarget__SWIG_0()
21613 static int _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple(lua_State* L) { in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple() argument
21622 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndTargetTriple",1,"… in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21623 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndTargetTripl… in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21624 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndTargetTripl… in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21626 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21630 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21631 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21635 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21641 lua_error(L); in _wrap_SBDebugger_CreateTargetWithFileAndTargetTriple()
21646 static int _wrap_SBDebugger_CreateTargetWithFileAndArch(lua_State* L) { in _wrap_SBDebugger_CreateTargetWithFileAndArch() argument
21655 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndArch",1,"lldb::SB… in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21656 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndArch",2,"ch… in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21657 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::CreateTargetWithFileAndArch",3,"ch… in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21659 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21663 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21664 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21668 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21674 lua_error(L); in _wrap_SBDebugger_CreateTargetWithFileAndArch()
21679 static int _wrap_SBDebugger_CreateTarget__SWIG_1(lua_State* L) { in _wrap_SBDebugger_CreateTarget__SWIG_1() argument
21687 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_CreateTarget__SWIG_1()
21688 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateTarget",2,"char const *"); in _wrap_SBDebugger_CreateTarget__SWIG_1()
21690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_CreateTarget__SWIG_1()
21694 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_CreateTarget__SWIG_1()
21698 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_CreateTarget__SWIG_1()
21704 lua_error(L); in _wrap_SBDebugger_CreateTarget__SWIG_1()
21709 static int _wrap_SBDebugger_CreateTarget(lua_State* L) { in _wrap_SBDebugger_CreateTarget() argument
21715 argc = lua_gettop(L); in _wrap_SBDebugger_CreateTarget()
21720 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_CreateTarget()
21728 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBDebugger_CreateTarget()
21731 return _wrap_SBDebugger_CreateTarget__SWIG_1(L); in _wrap_SBDebugger_CreateTarget()
21739 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_CreateTarget()
21747 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBDebugger_CreateTarget()
21751 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBDebugger_CreateTarget()
21755 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBDebugger_CreateTarget()
21759 _v = lua_isboolean(L,argv[4]); in _wrap_SBDebugger_CreateTarget()
21764 …if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_CreateTarget()
21771 return _wrap_SBDebugger_CreateTarget__SWIG_0(L); in _wrap_SBDebugger_CreateTarget()
21780 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_CreateTarget'\n" in _wrap_SBDebugger_CreateTarget()
21784 lua_error(L);return 0; in _wrap_SBDebugger_CreateTarget()
21788 static int _wrap_SBDebugger_GetDummyTarget(lua_State* L) { in _wrap_SBDebugger_GetDummyTarget() argument
21795 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDummyTarget",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetDummyTarget()
21797 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetDummyTarget()
21804 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_GetDummyTarget()
21810 lua_error(L); in _wrap_SBDebugger_GetDummyTarget()
21815 static int _wrap_SBDebugger_DeleteTarget(lua_State* L) { in _wrap_SBDebugger_DeleteTarget() argument
21823 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DeleteTarget",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_DeleteTarget()
21824 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::DeleteTarget",2,"lldb::SBTarget &"); in _wrap_SBDebugger_DeleteTarget()
21826 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_DeleteTarget()
21831 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBDebugger_DeleteTarget()
21836 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_DeleteTarget()
21841 lua_error(L); in _wrap_SBDebugger_DeleteTarget()
21846 static int _wrap_SBDebugger_GetTargetAtIndex(lua_State* L) { in _wrap_SBDebugger_GetTargetAtIndex() argument
21854 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetTargetAtIndex",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_GetTargetAtIndex()
21855 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetTargetAtIndex",2,"uint32_t"); in _wrap_SBDebugger_GetTargetAtIndex()
21857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetTargetAtIndex()
21861 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDebugger_GetTargetAtIndex()
21865 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_GetTargetAtIndex()
21871 lua_error(L); in _wrap_SBDebugger_GetTargetAtIndex()
21876 static int _wrap_SBDebugger_GetIndexOfTarget(lua_State* L) { in _wrap_SBDebugger_GetIndexOfTarget() argument
21885 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetIndexOfTarget",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_GetIndexOfTarget()
21886 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetIndexOfTarget",2,"lldb::SBTarget"); in _wrap_SBDebugger_GetIndexOfTarget()
21888 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetIndexOfTarget()
21893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBDebugger_GetIndexOfTarget()
21899 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetIndexOfTarget()
21904 lua_error(L); in _wrap_SBDebugger_GetIndexOfTarget()
21909 static int _wrap_SBDebugger_FindTargetWithProcessID(lua_State* L) { in _wrap_SBDebugger_FindTargetWithProcessID() argument
21917 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithProcessID",1,"lldb::SBDebu… in _wrap_SBDebugger_FindTargetWithProcessID()
21918 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithProcessID",2,"lldb::pid_t"); in _wrap_SBDebugger_FindTargetWithProcessID()
21920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_FindTargetWithProcessID()
21924 arg2 = (lldb::pid_t)lua_tointeger(L, 2); in _wrap_SBDebugger_FindTargetWithProcessID()
21928 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_FindTargetWithProcessID()
21934 lua_error(L); in _wrap_SBDebugger_FindTargetWithProcessID()
21939 static int _wrap_SBDebugger_FindTargetWithFileAndArch(lua_State* L) { in _wrap_SBDebugger_FindTargetWithFileAndArch() argument
21948 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithFileAndArch",1,"lldb::SBDe… in _wrap_SBDebugger_FindTargetWithFileAndArch()
21949 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithFileAndArch",2,"char… in _wrap_SBDebugger_FindTargetWithFileAndArch()
21950 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::FindTargetWithFileAndArch",3,"char… in _wrap_SBDebugger_FindTargetWithFileAndArch()
21952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_FindTargetWithFileAndArch()
21956 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_FindTargetWithFileAndArch()
21957 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBDebugger_FindTargetWithFileAndArch()
21961 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_FindTargetWithFileAndArch()
21967 lua_error(L); in _wrap_SBDebugger_FindTargetWithFileAndArch()
21972 static int _wrap_SBDebugger_GetNumTargets(lua_State* L) { in _wrap_SBDebugger_GetNumTargets() argument
21979 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumTargets",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetNumTargets()
21981 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetNumTargets()
21986 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetNumTargets()
21991 lua_error(L); in _wrap_SBDebugger_GetNumTargets()
21996 static int _wrap_SBDebugger_GetSelectedTarget(lua_State* L) { in _wrap_SBDebugger_GetSelectedTarget() argument
22003 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSelectedTarget",1,"lldb::SBDebugger *… in _wrap_SBDebugger_GetSelectedTarget()
22005 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSelectedTarget()
22012 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBDebugger_GetSelectedTarget()
22018 lua_error(L); in _wrap_SBDebugger_GetSelectedTarget()
22023 static int _wrap_SBDebugger_SetSelectedTarget(lua_State* L) { in _wrap_SBDebugger_SetSelectedTarget() argument
22030 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedTarget",1,"lldb::SBDebugger *… in _wrap_SBDebugger_SetSelectedTarget()
22031 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedTarget",2,"lldb::SBTarget &"); in _wrap_SBDebugger_SetSelectedTarget()
22033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetSelectedTarget()
22038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBDebugger_SetSelectedTarget()
22048 lua_error(L); in _wrap_SBDebugger_SetSelectedTarget()
22053 static int _wrap_SBDebugger_GetSelectedPlatform(lua_State* L) { in _wrap_SBDebugger_GetSelectedPlatform() argument
22060 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSelectedPlatform",1,"lldb::SBDebugger… in _wrap_SBDebugger_GetSelectedPlatform()
22062 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSelectedPlatform()
22069 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_SBDebugger_GetSelectedPlatform()
22075 lua_error(L); in _wrap_SBDebugger_GetSelectedPlatform()
22080 static int _wrap_SBDebugger_SetSelectedPlatform(lua_State* L) { in _wrap_SBDebugger_SetSelectedPlatform() argument
22087 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedPlatform",1,"lldb::SBDebugger… in _wrap_SBDebugger_SetSelectedPlatform()
22088 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetSelectedPlatform",2,"lldb::SBPlatform… in _wrap_SBDebugger_SetSelectedPlatform()
22090 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetSelectedPlatform()
22095 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBDebugger_SetSelectedPlatform()
22105 lua_error(L); in _wrap_SBDebugger_SetSelectedPlatform()
22110 static int _wrap_SBDebugger_GetNumPlatforms(lua_State* L) { in _wrap_SBDebugger_GetNumPlatforms() argument
22117 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumPlatforms",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetNumPlatforms()
22119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetNumPlatforms()
22124 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetNumPlatforms()
22129 lua_error(L); in _wrap_SBDebugger_GetNumPlatforms()
22134 static int _wrap_SBDebugger_GetPlatformAtIndex(lua_State* L) { in _wrap_SBDebugger_GetPlatformAtIndex() argument
22142 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetPlatformAtIndex",1,"lldb::SBDebugger … in _wrap_SBDebugger_GetPlatformAtIndex()
22143 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetPlatformAtIndex",2,"uint32_t"); in _wrap_SBDebugger_GetPlatformAtIndex()
22145 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetPlatformAtIndex()
22149 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDebugger_GetPlatformAtIndex()
22153 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_SBDebugger_GetPlatformAtIndex()
22159 lua_error(L); in _wrap_SBDebugger_GetPlatformAtIndex()
22164 static int _wrap_SBDebugger_GetNumAvailablePlatforms(lua_State* L) { in _wrap_SBDebugger_GetNumAvailablePlatforms() argument
22171 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumAvailablePlatforms",1,"lldb::SBDeb… in _wrap_SBDebugger_GetNumAvailablePlatforms()
22173 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetNumAvailablePlatforms()
22178 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetNumAvailablePlatforms()
22183 lua_error(L); in _wrap_SBDebugger_GetNumAvailablePlatforms()
22188 static int _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex(lua_State* L) { in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex() argument
22196 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetAvailablePlatformInfoAtIndex",1,"lldb… in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex()
22197 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetAvailablePlatformInfoAtIndex",2,"uint3… in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex()
22199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex()
22203 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex()
22207 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex()
22213 lua_error(L); in _wrap_SBDebugger_GetAvailablePlatformInfoAtIndex()
22218 static int _wrap_SBDebugger_GetSourceManager(lua_State* L) { in _wrap_SBDebugger_GetSourceManager() argument
22225 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSourceManager",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_GetSourceManager()
22227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSourceManager()
22234 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++; in _wrap_SBDebugger_GetSourceManager()
22240 lua_error(L); in _wrap_SBDebugger_GetSourceManager()
22245 static int _wrap_SBDebugger_SetCurrentPlatform(lua_State* L) { in _wrap_SBDebugger_SetCurrentPlatform() argument
22253 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatform",1,"lldb::SBDebugger … in _wrap_SBDebugger_SetCurrentPlatform()
22254 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatform",2,"char const … in _wrap_SBDebugger_SetCurrentPlatform()
22256 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetCurrentPlatform()
22260 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_SetCurrentPlatform()
22264 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetCurrentPlatform()
22270 lua_error(L); in _wrap_SBDebugger_SetCurrentPlatform()
22275 static int _wrap_SBDebugger_SetCurrentPlatformSDKRoot(lua_State* L) { in _wrap_SBDebugger_SetCurrentPlatformSDKRoot() argument
22283 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatformSDKRoot",1,"lldb::SBDe… in _wrap_SBDebugger_SetCurrentPlatformSDKRoot()
22284 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetCurrentPlatformSDKRoot",2,"char… in _wrap_SBDebugger_SetCurrentPlatformSDKRoot()
22286 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetCurrentPlatformSDKRoot()
22290 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_SetCurrentPlatformSDKRoot()
22292 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_SetCurrentPlatformSDKRoot()
22297 lua_error(L); in _wrap_SBDebugger_SetCurrentPlatformSDKRoot()
22302 static int _wrap_SBDebugger_SetUseExternalEditor(lua_State* L) { in _wrap_SBDebugger_SetUseExternalEditor() argument
22310 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetUseExternalEditor",1,"lldb::SBDebugge… in _wrap_SBDebugger_SetUseExternalEditor()
22311 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetUseExternalEditor",2,"bool"); in _wrap_SBDebugger_SetUseExternalEditor()
22313 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetUseExternalEditor()
22317 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SetUseExternalEditor()
22319 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_SetUseExternalEditor()
22324 lua_error(L); in _wrap_SBDebugger_SetUseExternalEditor()
22329 static int _wrap_SBDebugger_GetUseExternalEditor(lua_State* L) { in _wrap_SBDebugger_GetUseExternalEditor() argument
22336 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetUseExternalEditor",1,"lldb::SBDebugge… in _wrap_SBDebugger_GetUseExternalEditor()
22338 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetUseExternalEditor()
22343 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetUseExternalEditor()
22348 lua_error(L); in _wrap_SBDebugger_GetUseExternalEditor()
22353 static int _wrap_SBDebugger_SetUseColor(lua_State* L) { in _wrap_SBDebugger_SetUseColor() argument
22361 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetUseColor",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetUseColor()
22362 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetUseColor",2,"bool"); in _wrap_SBDebugger_SetUseColor()
22364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetUseColor()
22368 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SetUseColor()
22370 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_SetUseColor()
22375 lua_error(L); in _wrap_SBDebugger_SetUseColor()
22380 static int _wrap_SBDebugger_GetUseColor(lua_State* L) { in _wrap_SBDebugger_GetUseColor() argument
22387 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetUseColor",1,"lldb::SBDebugger const *… in _wrap_SBDebugger_GetUseColor()
22389 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetUseColor()
22394 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetUseColor()
22399 lua_error(L); in _wrap_SBDebugger_GetUseColor()
22404 static int _wrap_SBDebugger_SetUseSourceCache(lua_State* L) { in _wrap_SBDebugger_SetUseSourceCache() argument
22412 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetUseSourceCache",1,"lldb::SBDebugger *… in _wrap_SBDebugger_SetUseSourceCache()
22413 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetUseSourceCache",2,"bool"); in _wrap_SBDebugger_SetUseSourceCache()
22415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetUseSourceCache()
22419 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SetUseSourceCache()
22421 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_SetUseSourceCache()
22426 lua_error(L); in _wrap_SBDebugger_SetUseSourceCache()
22431 static int _wrap_SBDebugger_GetUseSourceCache(lua_State* L) { in _wrap_SBDebugger_GetUseSourceCache() argument
22438 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetUseSourceCache",1,"lldb::SBDebugger c… in _wrap_SBDebugger_GetUseSourceCache()
22440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetUseSourceCache()
22445 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetUseSourceCache()
22450 lua_error(L); in _wrap_SBDebugger_GetUseSourceCache()
22455 static int _wrap_SBDebugger_GetDefaultArchitecture(lua_State* L) { in _wrap_SBDebugger_GetDefaultArchitecture() argument
22463 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDefaultArchitecture",1,"char *"… in _wrap_SBDebugger_GetDefaultArchitecture()
22464 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetDefaultArchitecture",2,"size_t"); in _wrap_SBDebugger_GetDefaultArchitecture()
22465 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBDebugger_GetDefaultArchitecture()
22466 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBDebugger_GetDefaultArchitecture()
22468 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetDefaultArchitecture()
22473 lua_error(L); in _wrap_SBDebugger_GetDefaultArchitecture()
22478 static int _wrap_SBDebugger_SetDefaultArchitecture(lua_State* L) { in _wrap_SBDebugger_SetDefaultArchitecture() argument
22485 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetDefaultArchitecture",1,"char co… in _wrap_SBDebugger_SetDefaultArchitecture()
22486 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBDebugger_SetDefaultArchitecture()
22488 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_SetDefaultArchitecture()
22493 lua_error(L); in _wrap_SBDebugger_SetDefaultArchitecture()
22498 static int _wrap_SBDebugger_GetScriptingLanguage(lua_State* L) { in _wrap_SBDebugger_GetScriptingLanguage() argument
22506 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetScriptingLanguage",1,"lldb::SBDebugge… in _wrap_SBDebugger_GetScriptingLanguage()
22507 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetScriptingLanguage",2,"char cons… in _wrap_SBDebugger_GetScriptingLanguage()
22509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetScriptingLanguage()
22513 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_GetScriptingLanguage()
22515 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetScriptingLanguage()
22520 lua_error(L); in _wrap_SBDebugger_GetScriptingLanguage()
22525 static int _wrap_SBDebugger_GetScriptInterpreterInfo(lua_State* L) { in _wrap_SBDebugger_GetScriptInterpreterInfo() argument
22533 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetScriptInterpreterInfo",1,"lldb::SBDeb… in _wrap_SBDebugger_GetScriptInterpreterInfo()
22534 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetScriptInterpreterInfo",2,"lldb::Script… in _wrap_SBDebugger_GetScriptInterpreterInfo()
22536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetScriptInterpreterInfo()
22540 arg2 = (lldb::ScriptLanguage)lua_tointeger(L, 2); in _wrap_SBDebugger_GetScriptInterpreterInfo()
22544 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetScriptInterpreterInfo()
22550 lua_error(L); in _wrap_SBDebugger_GetScriptInterpreterInfo()
22555 static int _wrap_SBDebugger_GetVersionString(lua_State* L) { in _wrap_SBDebugger_GetVersionString() argument
22562 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_GetVersionString()
22567 lua_error(L); in _wrap_SBDebugger_GetVersionString()
22572 static int _wrap_SBDebugger_StateAsCString(lua_State* L) { in _wrap_SBDebugger_StateAsCString() argument
22579 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::StateAsCString",1,"lldb::StateType"); in _wrap_SBDebugger_StateAsCString()
22580 arg1 = (lldb::StateType)lua_tointeger(L, 1); in _wrap_SBDebugger_StateAsCString()
22582 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_StateAsCString()
22587 lua_error(L); in _wrap_SBDebugger_StateAsCString()
22592 static int _wrap_SBDebugger_GetBuildConfiguration(lua_State* L) { in _wrap_SBDebugger_GetBuildConfiguration() argument
22601 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBDebugger_GetBuildConfiguration()
22607 lua_error(L); in _wrap_SBDebugger_GetBuildConfiguration()
22612 static int _wrap_SBDebugger_StateIsRunningState(lua_State* L) { in _wrap_SBDebugger_StateIsRunningState() argument
22619 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::StateIsRunningState",1,"lldb::StateType"); in _wrap_SBDebugger_StateIsRunningState()
22620 arg1 = (lldb::StateType)lua_tointeger(L, 1); in _wrap_SBDebugger_StateIsRunningState()
22622 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_StateIsRunningState()
22627 lua_error(L); in _wrap_SBDebugger_StateIsRunningState()
22632 static int _wrap_SBDebugger_StateIsStoppedState(lua_State* L) { in _wrap_SBDebugger_StateIsStoppedState() argument
22639 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::StateIsStoppedState",1,"lldb::StateType"); in _wrap_SBDebugger_StateIsStoppedState()
22640 arg1 = (lldb::StateType)lua_tointeger(L, 1); in _wrap_SBDebugger_StateIsStoppedState()
22642 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_StateIsStoppedState()
22647 lua_error(L); in _wrap_SBDebugger_StateIsStoppedState()
22652 static int _wrap_SBDebugger_EnableLog(lua_State* L) { in _wrap_SBDebugger_EnableLog() argument
22661 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::EnableLog",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_EnableLog()
22662 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::EnableLog",2,"char const *"); in _wrap_SBDebugger_EnableLog()
22664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_EnableLog()
22668 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_EnableLog()
22670 if (lua_istable(L, 3)) { in _wrap_SBDebugger_EnableLog()
22671 size_t size = lua_rawlen(L, 3); in _wrap_SBDebugger_EnableLog()
22675 lua_rawgeti(L, 3, i); in _wrap_SBDebugger_EnableLog()
22676 if (!lua_isstring(L, -1)) { in _wrap_SBDebugger_EnableLog()
22678 lua_pop(L, 1); in _wrap_SBDebugger_EnableLog()
22679 return luaL_error(L, "List should only contain strings"); in _wrap_SBDebugger_EnableLog()
22681 arg3[j++] = (char *)lua_tostring(L, -1); in _wrap_SBDebugger_EnableLog()
22682 lua_pop(L, 1); in _wrap_SBDebugger_EnableLog()
22685 } else if (lua_isnil(L, 3)) { in _wrap_SBDebugger_EnableLog()
22689 return luaL_error(L, "A list of strings expected"); in _wrap_SBDebugger_EnableLog()
22693 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_EnableLog()
22704 lua_error(L); in _wrap_SBDebugger_EnableLog()
22709 static int _wrap_SBDebugger_SetLoggingCallback(lua_State* L) { in _wrap_SBDebugger_SetLoggingCallback() argument
22717 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetLoggingCallback",1,"lldb::SBDebugger … in _wrap_SBDebugger_SetLoggingCallback()
22719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetLoggingCallback()
22725 arg3 = (void *)L; in _wrap_SBDebugger_SetLoggingCallback()
22727 luaL_checktype(L, 2, LUA_TFUNCTION); in _wrap_SBDebugger_SetLoggingCallback()
22728 lua_settop(L, 2); in _wrap_SBDebugger_SetLoggingCallback()
22730 lua_pushlightuserdata(L, (void *)&LLDBSwigLuaCallLuaLogOutputCallback); in _wrap_SBDebugger_SetLoggingCallback()
22731 lua_insert(L, 2); in _wrap_SBDebugger_SetLoggingCallback()
22732 lua_settable(L, LUA_REGISTRYINDEX); in _wrap_SBDebugger_SetLoggingCallback()
22740 lua_error(L); in _wrap_SBDebugger_SetLoggingCallback()
22745 static int _wrap_SBDebugger_SetDestroyCallback(lua_State* L) { in _wrap_SBDebugger_SetDestroyCallback() argument
22753 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetDestroyCallback",1,"lldb::SBDebugger … in _wrap_SBDebugger_SetDestroyCallback()
22754 …if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetDestroyCallback",2,"lldb::SBDebuggerD… in _wrap_SBDebugger_SetDestroyCallback()
22755 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBDebugger::SetDestroyCallback",3,"void *"); in _wrap_SBDebugger_SetDestroyCallback()
22757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetDestroyCallback()
22762 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_unsigned_long_long_p_void__void,0))){ in _wrap_SBDebugger_SetDestroyCallback()
22766 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBDebugger_SetDestroyCallback"); in _wrap_SBDebugger_SetDestroyCallback()
22773 lua_error(L); in _wrap_SBDebugger_SetDestroyCallback()
22778 static int _wrap_SBDebugger_AddDestroyCallback(lua_State* L) { in _wrap_SBDebugger_AddDestroyCallback() argument
22787 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::AddDestroyCallback",1,"lldb::SBDebugger … in _wrap_SBDebugger_AddDestroyCallback()
22788 …if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBDebugger::AddDestroyCallback",2,"lldb::SBDebuggerD… in _wrap_SBDebugger_AddDestroyCallback()
22789 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBDebugger::AddDestroyCallback",3,"void *"); in _wrap_SBDebugger_AddDestroyCallback()
22791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_AddDestroyCallback()
22796 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_unsigned_long_long_p_void__void,0))){ in _wrap_SBDebugger_AddDestroyCallback()
22800 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBDebugger_AddDestroyCallback"); in _wrap_SBDebugger_AddDestroyCallback()
22802 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_AddDestroyCallback()
22807 lua_error(L); in _wrap_SBDebugger_AddDestroyCallback()
22812 static int _wrap_SBDebugger_RemoveDestroyCallback(lua_State* L) { in _wrap_SBDebugger_RemoveDestroyCallback() argument
22820 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RemoveDestroyCallback",1,"lldb::SBDebugg… in _wrap_SBDebugger_RemoveDestroyCallback()
22821 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::RemoveDestroyCallback",2,"lldb::callback_… in _wrap_SBDebugger_RemoveDestroyCallback()
22823 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_RemoveDestroyCallback()
22827 arg2 = (lldb::callback_token_t)lua_tointeger(L, 2); in _wrap_SBDebugger_RemoveDestroyCallback()
22829 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_RemoveDestroyCallback()
22834 lua_error(L); in _wrap_SBDebugger_RemoveDestroyCallback()
22839 static int _wrap_SBDebugger_DispatchInput(lua_State* L) { in _wrap_SBDebugger_DispatchInput() argument
22847 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DispatchInput",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_DispatchInput()
22849 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_DispatchInput()
22854 arg2 = (void *)luaL_checklstring(L, 2, &arg3); in _wrap_SBDebugger_DispatchInput()
22862 lua_error(L); in _wrap_SBDebugger_DispatchInput()
22867 static int _wrap_SBDebugger_DispatchInputInterrupt(lua_State* L) { in _wrap_SBDebugger_DispatchInputInterrupt() argument
22873 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DispatchInputInterrupt",1,"lldb::SBDebug… in _wrap_SBDebugger_DispatchInputInterrupt()
22875 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_DispatchInputInterrupt()
22885 lua_error(L); in _wrap_SBDebugger_DispatchInputInterrupt()
22890 static int _wrap_SBDebugger_DispatchInputEndOfFile(lua_State* L) { in _wrap_SBDebugger_DispatchInputEndOfFile() argument
22896 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DispatchInputEndOfFile",1,"lldb::SBDebug… in _wrap_SBDebugger_DispatchInputEndOfFile()
22898 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_DispatchInputEndOfFile()
22908 lua_error(L); in _wrap_SBDebugger_DispatchInputEndOfFile()
22913 static int _wrap_SBDebugger_GetInstanceName(lua_State* L) { in _wrap_SBDebugger_GetInstanceName() argument
22920 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInstanceName",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetInstanceName()
22922 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetInstanceName()
22927 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_GetInstanceName()
22932 lua_error(L); in _wrap_SBDebugger_GetInstanceName()
22937 static int _wrap_SBDebugger_FindDebuggerWithID(lua_State* L) { in _wrap_SBDebugger_FindDebuggerWithID() argument
22944 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBDebugger::FindDebuggerWithID",1,"int"); in _wrap_SBDebugger_FindDebuggerWithID()
22945 arg1 = (int)lua_tointeger(L, 1); in _wrap_SBDebugger_FindDebuggerWithID()
22949 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_SBDebugger_FindDebuggerWithID()
22955 lua_error(L); in _wrap_SBDebugger_FindDebuggerWithID()
22960 static int _wrap_SBDebugger_SetInternalVariable(lua_State* L) { in _wrap_SBDebugger_SetInternalVariable() argument
22969 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetInternalVariable",1,"char const… in _wrap_SBDebugger_SetInternalVariable()
22970 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetInternalVariable",2,"char const… in _wrap_SBDebugger_SetInternalVariable()
22971 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::SetInternalVariable",3,"char const… in _wrap_SBDebugger_SetInternalVariable()
22972 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBDebugger_SetInternalVariable()
22973 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_SetInternalVariable()
22974 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBDebugger_SetInternalVariable()
22978 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_SetInternalVariable()
22984 lua_error(L); in _wrap_SBDebugger_SetInternalVariable()
22989 static int _wrap_SBDebugger_GetInternalVariableValue(lua_State* L) { in _wrap_SBDebugger_GetInternalVariableValue() argument
22997 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInternalVariableValue",1,"char … in _wrap_SBDebugger_GetInternalVariableValue()
22998 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetInternalVariableValue",2,"char … in _wrap_SBDebugger_GetInternalVariableValue()
22999 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBDebugger_GetInternalVariableValue()
23000 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_GetInternalVariableValue()
23004 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++; in _wrap_SBDebugger_GetInternalVariableValue()
23010 lua_error(L); in _wrap_SBDebugger_GetInternalVariableValue()
23015 static int _wrap_SBDebugger_GetDescription(lua_State* L) { in _wrap_SBDebugger_GetDescription() argument
23023 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDescription",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetDescription()
23024 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetDescription",2,"lldb::SBStream &"); in _wrap_SBDebugger_GetDescription()
23026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetDescription()
23031 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBDebugger_GetDescription()
23036 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetDescription()
23041 lua_error(L); in _wrap_SBDebugger_GetDescription()
23046 static int _wrap_SBDebugger_GetTerminalWidth(lua_State* L) { in _wrap_SBDebugger_GetTerminalWidth() argument
23053 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetTerminalWidth",1,"lldb::SBDebugger co… in _wrap_SBDebugger_GetTerminalWidth()
23055 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetTerminalWidth()
23060 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetTerminalWidth()
23065 lua_error(L); in _wrap_SBDebugger_GetTerminalWidth()
23070 static int _wrap_SBDebugger_SetTerminalWidth(lua_State* L) { in _wrap_SBDebugger_SetTerminalWidth() argument
23077 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetTerminalWidth",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_SetTerminalWidth()
23078 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetTerminalWidth",2,"uint32_t"); in _wrap_SBDebugger_SetTerminalWidth()
23080 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetTerminalWidth()
23084 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDebugger_SetTerminalWidth()
23091 lua_error(L); in _wrap_SBDebugger_SetTerminalWidth()
23096 static int _wrap_SBDebugger_GetID(lua_State* L) { in _wrap_SBDebugger_GetID() argument
23103 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetID",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetID()
23105 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetID()
23110 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetID()
23115 lua_error(L); in _wrap_SBDebugger_GetID()
23120 static int _wrap_SBDebugger_GetPrompt(lua_State* L) { in _wrap_SBDebugger_GetPrompt() argument
23127 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetPrompt",1,"lldb::SBDebugger const *"); in _wrap_SBDebugger_GetPrompt()
23129 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetPrompt()
23134 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_GetPrompt()
23139 lua_error(L); in _wrap_SBDebugger_GetPrompt()
23144 static int _wrap_SBDebugger_SetPrompt(lua_State* L) { in _wrap_SBDebugger_SetPrompt() argument
23151 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetPrompt",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetPrompt()
23152 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetPrompt",2,"char const *"); in _wrap_SBDebugger_SetPrompt()
23154 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetPrompt()
23158 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_SetPrompt()
23165 lua_error(L); in _wrap_SBDebugger_SetPrompt()
23170 static int _wrap_SBDebugger_GetReproducerPath(lua_State* L) { in _wrap_SBDebugger_GetReproducerPath() argument
23177 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetReproducerPath",1,"lldb::SBDebugger c… in _wrap_SBDebugger_GetReproducerPath()
23179 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetReproducerPath()
23184 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBDebugger_GetReproducerPath()
23189 lua_error(L); in _wrap_SBDebugger_GetReproducerPath()
23194 static int _wrap_SBDebugger_GetScriptLanguage(lua_State* L) { in _wrap_SBDebugger_GetScriptLanguage() argument
23201 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetScriptLanguage",1,"lldb::SBDebugger c… in _wrap_SBDebugger_GetScriptLanguage()
23203 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetScriptLanguage()
23208 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetScriptLanguage()
23213 lua_error(L); in _wrap_SBDebugger_GetScriptLanguage()
23218 static int _wrap_SBDebugger_SetScriptLanguage(lua_State* L) { in _wrap_SBDebugger_SetScriptLanguage() argument
23225 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetScriptLanguage",1,"lldb::SBDebugger *… in _wrap_SBDebugger_SetScriptLanguage()
23226 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetScriptLanguage",2,"lldb::ScriptLanguag… in _wrap_SBDebugger_SetScriptLanguage()
23228 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetScriptLanguage()
23232 arg2 = (lldb::ScriptLanguage)lua_tointeger(L, 2); in _wrap_SBDebugger_SetScriptLanguage()
23239 lua_error(L); in _wrap_SBDebugger_SetScriptLanguage()
23244 static int _wrap_SBDebugger_GetREPLLanguage(lua_State* L) { in _wrap_SBDebugger_GetREPLLanguage() argument
23251 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetREPLLanguage",1,"lldb::SBDebugger con… in _wrap_SBDebugger_GetREPLLanguage()
23253 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetREPLLanguage()
23258 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetREPLLanguage()
23263 lua_error(L); in _wrap_SBDebugger_GetREPLLanguage()
23268 static int _wrap_SBDebugger_SetREPLLanguage(lua_State* L) { in _wrap_SBDebugger_SetREPLLanguage() argument
23275 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetREPLLanguage",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_SetREPLLanguage()
23276 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetREPLLanguage",2,"lldb::LanguageType"); in _wrap_SBDebugger_SetREPLLanguage()
23278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetREPLLanguage()
23282 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBDebugger_SetREPLLanguage()
23289 lua_error(L); in _wrap_SBDebugger_SetREPLLanguage()
23294 static int _wrap_SBDebugger_GetCloseInputOnEOF(lua_State* L) { in _wrap_SBDebugger_GetCloseInputOnEOF() argument
23301 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCloseInputOnEOF",1,"lldb::SBDebugger … in _wrap_SBDebugger_GetCloseInputOnEOF()
23303 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetCloseInputOnEOF()
23308 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_GetCloseInputOnEOF()
23313 lua_error(L); in _wrap_SBDebugger_GetCloseInputOnEOF()
23318 static int _wrap_SBDebugger_SetCloseInputOnEOF(lua_State* L) { in _wrap_SBDebugger_SetCloseInputOnEOF() argument
23325 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::SetCloseInputOnEOF",1,"lldb::SBDebugger … in _wrap_SBDebugger_SetCloseInputOnEOF()
23326 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::SetCloseInputOnEOF",2,"bool"); in _wrap_SBDebugger_SetCloseInputOnEOF()
23328 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_SetCloseInputOnEOF()
23332 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_SetCloseInputOnEOF()
23339 lua_error(L); in _wrap_SBDebugger_SetCloseInputOnEOF()
23344 static int _wrap_SBDebugger_GetCategory__SWIG_0(lua_State* L) { in _wrap_SBDebugger_GetCategory__SWIG_0() argument
23352 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetCategory__SWIG_0()
23353 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",2,"char const *"); in _wrap_SBDebugger_GetCategory__SWIG_0()
23355 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetCategory__SWIG_0()
23359 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_GetCategory__SWIG_0()
23363 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_SBDebugger_GetCategory__SWIG_0()
23369 lua_error(L); in _wrap_SBDebugger_GetCategory__SWIG_0()
23374 static int _wrap_SBDebugger_GetCategory__SWIG_1(lua_State* L) { in _wrap_SBDebugger_GetCategory__SWIG_1() argument
23382 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_GetCategory__SWIG_1()
23383 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetCategory",2,"lldb::LanguageType"); in _wrap_SBDebugger_GetCategory__SWIG_1()
23385 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetCategory__SWIG_1()
23389 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBDebugger_GetCategory__SWIG_1()
23393 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_SBDebugger_GetCategory__SWIG_1()
23399 lua_error(L); in _wrap_SBDebugger_GetCategory__SWIG_1()
23404 static int _wrap_SBDebugger_GetCategory(lua_State* L) { in _wrap_SBDebugger_GetCategory() argument
23410 argc = lua_gettop(L); in _wrap_SBDebugger_GetCategory()
23415 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_GetCategory()
23423 _v = lua_isnumber(L,argv[1]); in _wrap_SBDebugger_GetCategory()
23426 return _wrap_SBDebugger_GetCategory__SWIG_1(L); in _wrap_SBDebugger_GetCategory()
23434 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBDebugger_GetCategory()
23442 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBDebugger_GetCategory()
23445 return _wrap_SBDebugger_GetCategory__SWIG_0(L); in _wrap_SBDebugger_GetCategory()
23450 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBDebugger_GetCategory'\n" in _wrap_SBDebugger_GetCategory()
23454 lua_error(L);return 0; in _wrap_SBDebugger_GetCategory()
23458 static int _wrap_SBDebugger_CreateCategory(lua_State* L) { in _wrap_SBDebugger_CreateCategory() argument
23466 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::CreateCategory",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_CreateCategory()
23467 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::CreateCategory",2,"char const *"); in _wrap_SBDebugger_CreateCategory()
23469 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_CreateCategory()
23473 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_CreateCategory()
23477 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_SBDebugger_CreateCategory()
23483 lua_error(L); in _wrap_SBDebugger_CreateCategory()
23488 static int _wrap_SBDebugger_DeleteCategory(lua_State* L) { in _wrap_SBDebugger_DeleteCategory() argument
23496 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::DeleteCategory",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_DeleteCategory()
23497 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBDebugger::DeleteCategory",2,"char const *"); in _wrap_SBDebugger_DeleteCategory()
23499 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_DeleteCategory()
23503 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBDebugger_DeleteCategory()
23505 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDebugger_DeleteCategory()
23510 lua_error(L); in _wrap_SBDebugger_DeleteCategory()
23515 static int _wrap_SBDebugger_GetNumCategories(lua_State* L) { in _wrap_SBDebugger_GetNumCategories() argument
23522 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetNumCategories",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_GetNumCategories()
23524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetNumCategories()
23529 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDebugger_GetNumCategories()
23534 lua_error(L); in _wrap_SBDebugger_GetNumCategories()
23539 static int _wrap_SBDebugger_GetCategoryAtIndex(lua_State* L) { in _wrap_SBDebugger_GetCategoryAtIndex() argument
23547 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetCategoryAtIndex",1,"lldb::SBDebugger … in _wrap_SBDebugger_GetCategoryAtIndex()
23548 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetCategoryAtIndex",2,"uint32_t"); in _wrap_SBDebugger_GetCategoryAtIndex()
23550 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetCategoryAtIndex()
23554 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDebugger_GetCategoryAtIndex()
23558 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_SBDebugger_GetCategoryAtIndex()
23564 lua_error(L); in _wrap_SBDebugger_GetCategoryAtIndex()
23569 static int _wrap_SBDebugger_GetDefaultCategory(lua_State* L) { in _wrap_SBDebugger_GetDefaultCategory() argument
23576 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetDefaultCategory",1,"lldb::SBDebugger … in _wrap_SBDebugger_GetDefaultCategory()
23578 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetDefaultCategory()
23585 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_SBDebugger_GetDefaultCategory()
23591 lua_error(L); in _wrap_SBDebugger_GetDefaultCategory()
23596 static int _wrap_SBDebugger_GetFormatForType(lua_State* L) { in _wrap_SBDebugger_GetFormatForType() argument
23605 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetFormatForType",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_GetFormatForType()
23606 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetFormatForType",2,"lldb::SBTypeNameSpe… in _wrap_SBDebugger_GetFormatForType()
23608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetFormatForType()
23613 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBDebugger_GetFormatForType()
23621 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_SBDebugger_GetFormatForType()
23627 lua_error(L); in _wrap_SBDebugger_GetFormatForType()
23632 static int _wrap_SBDebugger_GetSummaryForType(lua_State* L) { in _wrap_SBDebugger_GetSummaryForType() argument
23641 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSummaryForType",1,"lldb::SBDebugger *… in _wrap_SBDebugger_GetSummaryForType()
23642 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetSummaryForType",2,"lldb::SBTypeNameSp… in _wrap_SBDebugger_GetSummaryForType()
23644 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSummaryForType()
23649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBDebugger_GetSummaryForType()
23657 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBDebugger_GetSummaryForType()
23663 lua_error(L); in _wrap_SBDebugger_GetSummaryForType()
23668 static int _wrap_SBDebugger_GetFilterForType(lua_State* L) { in _wrap_SBDebugger_GetFilterForType() argument
23677 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetFilterForType",1,"lldb::SBDebugger *"… in _wrap_SBDebugger_GetFilterForType()
23678 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetFilterForType",2,"lldb::SBTypeNameSpe… in _wrap_SBDebugger_GetFilterForType()
23680 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetFilterForType()
23685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBDebugger_GetFilterForType()
23693 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_SBDebugger_GetFilterForType()
23699 lua_error(L); in _wrap_SBDebugger_GetFilterForType()
23704 static int _wrap_SBDebugger_GetSyntheticForType(lua_State* L) { in _wrap_SBDebugger_GetSyntheticForType() argument
23713 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetSyntheticForType",1,"lldb::SBDebugger… in _wrap_SBDebugger_GetSyntheticForType()
23714 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::GetSyntheticForType",2,"lldb::SBTypeName… in _wrap_SBDebugger_GetSyntheticForType()
23716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetSyntheticForType()
23721 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBDebugger_GetSyntheticForType()
23729 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBDebugger_GetSyntheticForType()
23735 lua_error(L); in _wrap_SBDebugger_GetSyntheticForType()
23740 static int _wrap_SBDebugger_RunCommandInterpreter(lua_State* L) { in _wrap_SBDebugger_RunCommandInterpreter() argument
23755 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",1,"lldb::SBDebugg… in _wrap_SBDebugger_RunCommandInterpreter()
23756 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",2,"bool"); in _wrap_SBDebugger_RunCommandInterpreter()
23757 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",3,"bool"); in _wrap_SBDebugger_RunCommandInterpreter()
23758 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",4,"lldb::SBComman… in _wrap_SBDebugger_RunCommandInterpreter()
23759 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",5,"int &"); in _wrap_SBDebugger_RunCommandInterpreter()
23760 if(!lua_isboolean(L,6)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",6,"bool &"); in _wrap_SBDebugger_RunCommandInterpreter()
23761 if(!lua_isboolean(L,7)) SWIG_fail_arg("lldb::SBDebugger::RunCommandInterpreter",7,"bool &"); in _wrap_SBDebugger_RunCommandInterpreter()
23763 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_RunCommandInterpreter()
23767 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBDebugger_RunCommandInterpreter()
23768 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBDebugger_RunCommandInterpreter()
23770 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBCommandInterpreterRunOptions,0… in _wrap_SBDebugger_RunCommandInterpreter()
23774 temp5 = (int)lua_tointeger(L,5); in _wrap_SBDebugger_RunCommandInterpreter()
23776 temp6 = (lua_toboolean(L,6)!=0); in _wrap_SBDebugger_RunCommandInterpreter()
23778 temp7 = (lua_toboolean(L,7)!=0); in _wrap_SBDebugger_RunCommandInterpreter()
23782 lua_pushinteger(L, (lua_Integer) *arg5); SWIG_arg++; in _wrap_SBDebugger_RunCommandInterpreter()
23783 lua_pushboolean(L, (int)((*arg6)!=0)); SWIG_arg++; in _wrap_SBDebugger_RunCommandInterpreter()
23784 lua_pushboolean(L, (int)((*arg7)!=0)); SWIG_arg++; in _wrap_SBDebugger_RunCommandInterpreter()
23789 lua_error(L); in _wrap_SBDebugger_RunCommandInterpreter()
23794 static int _wrap_SBDebugger_RunREPL(lua_State* L) { in _wrap_SBDebugger_RunREPL() argument
23803 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::RunREPL",1,"lldb::SBDebugger *"); in _wrap_SBDebugger_RunREPL()
23804 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDebugger::RunREPL",2,"lldb::LanguageType"); in _wrap_SBDebugger_RunREPL()
23805 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBDebugger::RunREPL",3,"char const *"); in _wrap_SBDebugger_RunREPL()
23807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_RunREPL()
23811 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBDebugger_RunREPL()
23812 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBDebugger_RunREPL()
23816 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBDebugger_RunREPL()
23822 lua_error(L); in _wrap_SBDebugger_RunREPL()
23827 static int _wrap_SBDebugger_LoadTraceFromFile(lua_State* L) { in _wrap_SBDebugger_LoadTraceFromFile() argument
23836 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::LoadTraceFromFile",1,"lldb::SBDebugger *… in _wrap_SBDebugger_LoadTraceFromFile()
23837 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDebugger::LoadTraceFromFile",2,"lldb::SBError &"); in _wrap_SBDebugger_LoadTraceFromFile()
23838 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBDebugger::LoadTraceFromFile",3,"lldb::SBFileSpec c… in _wrap_SBDebugger_LoadTraceFromFile()
23840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_LoadTraceFromFile()
23845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBDebugger_LoadTraceFromFile()
23850 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBDebugger_LoadTraceFromFile()
23857 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++; in _wrap_SBDebugger_LoadTraceFromFile()
23863 lua_error(L); in _wrap_SBDebugger_LoadTraceFromFile()
23868 static int _wrap_SBDebugger___tostring(lua_State* L) { in _wrap_SBDebugger___tostring() argument
23875 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::__repr__",1,"lldb::SBDebugger *"); in _wrap_SBDebugger___tostring()
23877 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger___tostring()
23882 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBDebugger___tostring()
23887 lua_error(L); in _wrap_SBDebugger___tostring()
23892 static int _wrap_SBDebugger_GetInputFileHandle(lua_State* L) { in _wrap_SBDebugger_GetInputFileHandle() argument
23899 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetInputFileHandle",1,"lldb::SBDebugger … in _wrap_SBDebugger_GetInputFileHandle()
23901 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetInputFileHandle()
23909 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream)); in _wrap_SBDebugger_GetInputFileHandle()
23912 luaL_setmetatable(L, LUA_FILEHANDLE); in _wrap_SBDebugger_GetInputFileHandle()
23920 lua_error(L); in _wrap_SBDebugger_GetInputFileHandle()
23925 static int _wrap_SBDebugger_GetOutputFileHandle(lua_State* L) { in _wrap_SBDebugger_GetOutputFileHandle() argument
23932 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetOutputFileHandle",1,"lldb::SBDebugger… in _wrap_SBDebugger_GetOutputFileHandle()
23934 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetOutputFileHandle()
23942 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream)); in _wrap_SBDebugger_GetOutputFileHandle()
23945 luaL_setmetatable(L, LUA_FILEHANDLE); in _wrap_SBDebugger_GetOutputFileHandle()
23953 lua_error(L); in _wrap_SBDebugger_GetOutputFileHandle()
23958 static int _wrap_SBDebugger_GetErrorFileHandle(lua_State* L) { in _wrap_SBDebugger_GetErrorFileHandle() argument
23965 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDebugger::GetErrorFileHandle",1,"lldb::SBDebugger … in _wrap_SBDebugger_GetErrorFileHandle()
23967 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBDebugger_GetErrorFileHandle()
23975 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream)); in _wrap_SBDebugger_GetErrorFileHandle()
23978 luaL_setmetatable(L, LUA_FILEHANDLE); in _wrap_SBDebugger_GetErrorFileHandle()
23986 lua_error(L); in _wrap_SBDebugger_GetErrorFileHandle()
23995 static int _proxy__wrap_new_SBDebugger(lua_State *L) { in _proxy__wrap_new_SBDebugger() argument
23996 assert(lua_istable(L,1)); in _proxy__wrap_new_SBDebugger()
23997 lua_pushcfunction(L,_wrap_new_SBDebugger); in _proxy__wrap_new_SBDebugger()
23998 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBDebugger()
23999 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBDebugger()
24000 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBDebugger()
24158 static int _wrap_new_SBDeclaration__SWIG_0(lua_State* L) { in _wrap_new_SBDeclaration__SWIG_0() argument
24165 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDeclaration,1); SWIG_arg++; in _wrap_new_SBDeclaration__SWIG_0()
24170 lua_error(L); in _wrap_new_SBDeclaration__SWIG_0()
24175 static int _wrap_new_SBDeclaration__SWIG_1(lua_State* L) { in _wrap_new_SBDeclaration__SWIG_1() argument
24182 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SBDeclaration",1,"lldb::SBDeclaration… in _wrap_new_SBDeclaration__SWIG_1()
24184 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_new_SBDeclaration__SWIG_1()
24189 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBDeclaration,1); SWIG_arg++; in _wrap_new_SBDeclaration__SWIG_1()
24194 lua_error(L); in _wrap_new_SBDeclaration__SWIG_1()
24199 static int _wrap_new_SBDeclaration(lua_State* L) { in _wrap_new_SBDeclaration() argument
24205 argc = lua_gettop(L); in _wrap_new_SBDeclaration()
24207 return _wrap_new_SBDeclaration__SWIG_0(L); in _wrap_new_SBDeclaration()
24213 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBDeclaration()
24220 return _wrap_new_SBDeclaration__SWIG_1(L); in _wrap_new_SBDeclaration()
24224 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBDeclaration'\n" in _wrap_new_SBDeclaration()
24228 lua_error(L);return 0; in _wrap_new_SBDeclaration()
24232 static int _wrap_SBDeclaration_IsValid(lua_State* L) { in _wrap_SBDeclaration_IsValid() argument
24239 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::IsValid",1,"lldb::SBDeclaration const… in _wrap_SBDeclaration_IsValid()
24241 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_IsValid()
24246 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDeclaration_IsValid()
24251 lua_error(L); in _wrap_SBDeclaration_IsValid()
24256 static int _wrap_SBDeclaration_GetFileSpec(lua_State* L) { in _wrap_SBDeclaration_GetFileSpec() argument
24263 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetFileSpec",1,"lldb::SBDeclaration c… in _wrap_SBDeclaration_GetFileSpec()
24265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_GetFileSpec()
24272 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBDeclaration_GetFileSpec()
24278 lua_error(L); in _wrap_SBDeclaration_GetFileSpec()
24283 static int _wrap_SBDeclaration_GetLine(lua_State* L) { in _wrap_SBDeclaration_GetLine() argument
24290 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetLine",1,"lldb::SBDeclaration const… in _wrap_SBDeclaration_GetLine()
24292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_GetLine()
24297 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDeclaration_GetLine()
24302 lua_error(L); in _wrap_SBDeclaration_GetLine()
24307 static int _wrap_SBDeclaration_GetColumn(lua_State* L) { in _wrap_SBDeclaration_GetColumn() argument
24314 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetColumn",1,"lldb::SBDeclaration con… in _wrap_SBDeclaration_GetColumn()
24316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_GetColumn()
24321 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBDeclaration_GetColumn()
24326 lua_error(L); in _wrap_SBDeclaration_GetColumn()
24331 static int _wrap_SBDeclaration_SetFileSpec(lua_State* L) { in _wrap_SBDeclaration_SetFileSpec() argument
24339 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SetFileSpec",1,"lldb::SBDeclaration *… in _wrap_SBDeclaration_SetFileSpec()
24340 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDeclaration::SetFileSpec",2,"lldb::SBFileSpec"); in _wrap_SBDeclaration_SetFileSpec()
24342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_SetFileSpec()
24347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBDeclaration_SetFileSpec()
24358 lua_error(L); in _wrap_SBDeclaration_SetFileSpec()
24363 static int _wrap_SBDeclaration_SetLine(lua_State* L) { in _wrap_SBDeclaration_SetLine() argument
24370 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SetLine",1,"lldb::SBDeclaration *"); in _wrap_SBDeclaration_SetLine()
24371 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDeclaration::SetLine",2,"uint32_t"); in _wrap_SBDeclaration_SetLine()
24373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_SetLine()
24377 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDeclaration_SetLine()
24384 lua_error(L); in _wrap_SBDeclaration_SetLine()
24389 static int _wrap_SBDeclaration_SetColumn(lua_State* L) { in _wrap_SBDeclaration_SetColumn() argument
24396 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::SetColumn",1,"lldb::SBDeclaration *"); in _wrap_SBDeclaration_SetColumn()
24397 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBDeclaration::SetColumn",2,"uint32_t"); in _wrap_SBDeclaration_SetColumn()
24399 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_SetColumn()
24403 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBDeclaration_SetColumn()
24410 lua_error(L); in _wrap_SBDeclaration_SetColumn()
24415 static int _wrap_SBDeclaration___eq(lua_State* L) { in _wrap_SBDeclaration___eq() argument
24423 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::operator ==",1,"lldb::SBDeclaration c… in _wrap_SBDeclaration___eq()
24424 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDeclaration::operator ==",2,"lldb::SBDeclaration c… in _wrap_SBDeclaration___eq()
24426 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration___eq()
24431 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration___eq()
24436 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDeclaration___eq()
24441 lua_error(L); in _wrap_SBDeclaration___eq()
24446 static int _wrap_SBDeclaration_GetDescription(lua_State* L) { in _wrap_SBDeclaration_GetDescription() argument
24454 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::GetDescription",1,"lldb::SBDeclaratio… in _wrap_SBDeclaration_GetDescription()
24455 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBDeclaration::GetDescription",2,"lldb::SBStream &"); in _wrap_SBDeclaration_GetDescription()
24457 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration_GetDescription()
24462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBDeclaration_GetDescription()
24467 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBDeclaration_GetDescription()
24472 lua_error(L); in _wrap_SBDeclaration_GetDescription()
24477 static int _wrap_SBDeclaration___tostring(lua_State* L) { in _wrap_SBDeclaration___tostring() argument
24484 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBDeclaration::__repr__",1,"lldb::SBDeclaration *"); in _wrap_SBDeclaration___tostring()
24486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDeclaration,0))){ in _wrap_SBDeclaration___tostring()
24491 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBDeclaration___tostring()
24496 lua_error(L); in _wrap_SBDeclaration___tostring()
24505 static int _proxy__wrap_new_SBDeclaration(lua_State *L) { in _proxy__wrap_new_SBDeclaration() argument
24506 assert(lua_istable(L,1)); in _proxy__wrap_new_SBDeclaration()
24507 lua_pushcfunction(L,_wrap_new_SBDeclaration); in _proxy__wrap_new_SBDeclaration()
24508 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBDeclaration()
24509 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBDeclaration()
24510 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBDeclaration()
24560 static int _wrap_new_SBError__SWIG_0(lua_State* L) { in _wrap_new_SBError__SWIG_0() argument
24567 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_new_SBError__SWIG_0()
24572 lua_error(L); in _wrap_new_SBError__SWIG_0()
24577 static int _wrap_new_SBError__SWIG_1(lua_State* L) { in _wrap_new_SBError__SWIG_1() argument
24584 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBError::SBError",1,"lldb::SBError const &"); in _wrap_new_SBError__SWIG_1()
24586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_new_SBError__SWIG_1()
24591 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_new_SBError__SWIG_1()
24596 lua_error(L); in _wrap_new_SBError__SWIG_1()
24601 static int _wrap_new_SBError__SWIG_2(lua_State* L) { in _wrap_new_SBError__SWIG_2() argument
24608 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBError::SBError",1,"char const *"); in _wrap_new_SBError__SWIG_2()
24609 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBError__SWIG_2()
24611 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_new_SBError__SWIG_2()
24616 lua_error(L); in _wrap_new_SBError__SWIG_2()
24621 static int _wrap_new_SBError(lua_State* L) { in _wrap_new_SBError() argument
24627 argc = lua_gettop(L); in _wrap_new_SBError()
24629 return _wrap_new_SBError__SWIG_0(L); in _wrap_new_SBError()
24635 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBError()
24642 return _wrap_new_SBError__SWIG_1(L); in _wrap_new_SBError()
24648 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBError()
24651 return _wrap_new_SBError__SWIG_2(L); in _wrap_new_SBError()
24655 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBError'\n" in _wrap_new_SBError()
24660 lua_error(L);return 0; in _wrap_new_SBError()
24664 static int _wrap_SBError_GetCString(lua_State* L) { in _wrap_SBError_GetCString() argument
24671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetCString",1,"lldb::SBError const *"); in _wrap_SBError_GetCString()
24673 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_GetCString()
24678 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBError_GetCString()
24683 lua_error(L); in _wrap_SBError_GetCString()
24688 static int _wrap_SBError_Clear(lua_State* L) { in _wrap_SBError_Clear() argument
24694 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::Clear",1,"lldb::SBError *"); in _wrap_SBError_Clear()
24696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_Clear()
24706 lua_error(L); in _wrap_SBError_Clear()
24711 static int _wrap_SBError_Fail(lua_State* L) { in _wrap_SBError_Fail() argument
24718 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::Fail",1,"lldb::SBError const *"); in _wrap_SBError_Fail()
24720 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_Fail()
24725 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBError_Fail()
24730 lua_error(L); in _wrap_SBError_Fail()
24735 static int _wrap_SBError_Success(lua_State* L) { in _wrap_SBError_Success() argument
24742 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::Success",1,"lldb::SBError const *"); in _wrap_SBError_Success()
24744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_Success()
24749 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBError_Success()
24754 lua_error(L); in _wrap_SBError_Success()
24759 static int _wrap_SBError_GetError(lua_State* L) { in _wrap_SBError_GetError() argument
24766 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetError",1,"lldb::SBError const *"); in _wrap_SBError_GetError()
24768 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_GetError()
24773 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBError_GetError()
24778 lua_error(L); in _wrap_SBError_GetError()
24783 static int _wrap_SBError_GetType(lua_State* L) { in _wrap_SBError_GetType() argument
24790 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetType",1,"lldb::SBError const *"); in _wrap_SBError_GetType()
24792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_GetType()
24797 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBError_GetType()
24802 lua_error(L); in _wrap_SBError_GetType()
24807 static int _wrap_SBError_SetError(lua_State* L) { in _wrap_SBError_SetError() argument
24815 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetError",1,"lldb::SBError *"); in _wrap_SBError_SetError()
24816 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBError::SetError",2,"uint32_t"); in _wrap_SBError_SetError()
24817 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBError::SetError",3,"lldb::ErrorType"); in _wrap_SBError_SetError()
24819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetError()
24823 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBError_SetError()
24824 arg3 = (lldb::ErrorType)lua_tointeger(L, 3); in _wrap_SBError_SetError()
24831 lua_error(L); in _wrap_SBError_SetError()
24836 static int _wrap_SBError_SetErrorToErrno(lua_State* L) { in _wrap_SBError_SetErrorToErrno() argument
24842 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorToErrno",1,"lldb::SBError *"); in _wrap_SBError_SetErrorToErrno()
24844 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorToErrno()
24854 lua_error(L); in _wrap_SBError_SetErrorToErrno()
24859 static int _wrap_SBError_SetErrorToGenericError(lua_State* L) { in _wrap_SBError_SetErrorToGenericError() argument
24865 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorToGenericError",1,"lldb::SBError *"… in _wrap_SBError_SetErrorToGenericError()
24867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorToGenericError()
24877 lua_error(L); in _wrap_SBError_SetErrorToGenericError()
24882 static int _wrap_SBError_SetErrorString(lua_State* L) { in _wrap_SBError_SetErrorString() argument
24889 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorString",1,"lldb::SBError *"); in _wrap_SBError_SetErrorString()
24890 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorString",2,"char const *"); in _wrap_SBError_SetErrorString()
24892 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorString()
24896 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBError_SetErrorString()
24903 lua_error(L); in _wrap_SBError_SetErrorString()
24908 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_0(lua_State* L) { in _wrap_SBError_SetErrorStringWithFormat__SWIG_0() argument
24919 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError … in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24920 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char con… in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24921 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",3,"char *"); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24922 …if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",4,"char *"); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24923 …if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",5,"char *"); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24925 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24929 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24930 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24931 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24932 arg5 = (char *)lua_tostring(L, 5); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24934 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24939 lua_error(L); in _wrap_SBError_SetErrorStringWithFormat__SWIG_0()
24944 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_1(lua_State* L) { in _wrap_SBError_SetErrorStringWithFormat__SWIG_1() argument
24954 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError … in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24955 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char con… in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24956 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",3,"char *"); in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24957 …if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",4,"char *"); in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24963 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24964 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24965 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24967 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24972 lua_error(L); in _wrap_SBError_SetErrorStringWithFormat__SWIG_1()
24977 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_2(lua_State* L) { in _wrap_SBError_SetErrorStringWithFormat__SWIG_2() argument
24986 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError … in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
24987 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char con… in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
24988 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",3,"char *"); in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
24990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
24994 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
24995 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
24997 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
25002 lua_error(L); in _wrap_SBError_SetErrorStringWithFormat__SWIG_2()
25007 static int _wrap_SBError_SetErrorStringWithFormat__SWIG_3(lua_State* L) { in _wrap_SBError_SetErrorStringWithFormat__SWIG_3() argument
25015 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",1,"lldb::SBError … in _wrap_SBError_SetErrorStringWithFormat__SWIG_3()
25016 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBError::SetErrorStringWithFormat",2,"char con… in _wrap_SBError_SetErrorStringWithFormat__SWIG_3()
25018 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_SetErrorStringWithFormat__SWIG_3()
25022 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBError_SetErrorStringWithFormat__SWIG_3()
25024 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBError_SetErrorStringWithFormat__SWIG_3()
25029 lua_error(L); in _wrap_SBError_SetErrorStringWithFormat__SWIG_3()
25034 static int _wrap_SBError_SetErrorStringWithFormat(lua_State* L) { in _wrap_SBError_SetErrorStringWithFormat() argument
25040 argc = lua_gettop(L); in _wrap_SBError_SetErrorStringWithFormat()
25045 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBError_SetErrorStringWithFormat()
25053 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBError_SetErrorStringWithFormat()
25056 return _wrap_SBError_SetErrorStringWithFormat__SWIG_3(L); in _wrap_SBError_SetErrorStringWithFormat()
25064 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBError_SetErrorStringWithFormat()
25072 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBError_SetErrorStringWithFormat()
25076 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBError_SetErrorStringWithFormat()
25079 return _wrap_SBError_SetErrorStringWithFormat__SWIG_2(L); in _wrap_SBError_SetErrorStringWithFormat()
25088 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBError_SetErrorStringWithFormat()
25096 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBError_SetErrorStringWithFormat()
25100 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBError_SetErrorStringWithFormat()
25104 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBError_SetErrorStringWithFormat()
25107 return _wrap_SBError_SetErrorStringWithFormat__SWIG_1(L); in _wrap_SBError_SetErrorStringWithFormat()
25117 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBError_SetErrorStringWithFormat()
25125 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBError_SetErrorStringWithFormat()
25129 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBError_SetErrorStringWithFormat()
25133 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBError_SetErrorStringWithFormat()
25137 _v = SWIG_lua_isnilstring(L,argv[4]); in _wrap_SBError_SetErrorStringWithFormat()
25140 return _wrap_SBError_SetErrorStringWithFormat__SWIG_0(L); in _wrap_SBError_SetErrorStringWithFormat()
25148 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBError_SetErrorStringWithForma… in _wrap_SBError_SetErrorStringWithFormat()
25154 lua_error(L);return 0; in _wrap_SBError_SetErrorStringWithFormat()
25158 static int _wrap_SBError_IsValid(lua_State* L) { in _wrap_SBError_IsValid() argument
25165 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::IsValid",1,"lldb::SBError const *"); in _wrap_SBError_IsValid()
25167 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_IsValid()
25172 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBError_IsValid()
25177 lua_error(L); in _wrap_SBError_IsValid()
25182 static int _wrap_SBError_GetDescription(lua_State* L) { in _wrap_SBError_GetDescription() argument
25190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::GetDescription",1,"lldb::SBError *"); in _wrap_SBError_GetDescription()
25191 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBError::GetDescription",2,"lldb::SBStream &"); in _wrap_SBError_GetDescription()
25193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError_GetDescription()
25198 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBError_GetDescription()
25203 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBError_GetDescription()
25208 lua_error(L); in _wrap_SBError_GetDescription()
25213 static int _wrap_SBError___tostring(lua_State* L) { in _wrap_SBError___tostring() argument
25220 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBError::__repr__",1,"lldb::SBError *"); in _wrap_SBError___tostring()
25222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBError___tostring()
25227 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBError___tostring()
25232 lua_error(L); in _wrap_SBError___tostring()
25241 static int _proxy__wrap_new_SBError(lua_State *L) { in _proxy__wrap_new_SBError() argument
25242 assert(lua_istable(L,1)); in _proxy__wrap_new_SBError()
25243 lua_pushcfunction(L,_wrap_new_SBError); in _proxy__wrap_new_SBError()
25244 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBError()
25245 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBError()
25246 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBError()
25299 static int _wrap_new_SBEnvironment__SWIG_0(lua_State* L) { in _wrap_new_SBEnvironment__SWIG_0() argument
25306 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++; in _wrap_new_SBEnvironment__SWIG_0()
25311 lua_error(L); in _wrap_new_SBEnvironment__SWIG_0()
25316 static int _wrap_new_SBEnvironment__SWIG_1(lua_State* L) { in _wrap_new_SBEnvironment__SWIG_1() argument
25323 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBEnvironment::SBEnvironment",1,"lldb::SBEnvironment… in _wrap_new_SBEnvironment__SWIG_1()
25325 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_new_SBEnvironment__SWIG_1()
25330 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++; in _wrap_new_SBEnvironment__SWIG_1()
25335 lua_error(L); in _wrap_new_SBEnvironment__SWIG_1()
25340 static int _wrap_new_SBEnvironment(lua_State* L) { in _wrap_new_SBEnvironment() argument
25346 argc = lua_gettop(L); in _wrap_new_SBEnvironment()
25348 return _wrap_new_SBEnvironment__SWIG_0(L); in _wrap_new_SBEnvironment()
25354 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBEnvironment()
25361 return _wrap_new_SBEnvironment__SWIG_1(L); in _wrap_new_SBEnvironment()
25365 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBEnvironment'\n" in _wrap_new_SBEnvironment()
25369 lua_error(L);return 0; in _wrap_new_SBEnvironment()
25373 static int _wrap_SBEnvironment_Get(lua_State* L) { in _wrap_SBEnvironment_Get() argument
25381 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Get",1,"lldb::SBEnvironment *"); in _wrap_SBEnvironment_Get()
25382 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::Get",2,"char const *"); in _wrap_SBEnvironment_Get()
25384 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_Get()
25388 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBEnvironment_Get()
25390 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBEnvironment_Get()
25395 lua_error(L); in _wrap_SBEnvironment_Get()
25400 static int _wrap_SBEnvironment_GetNumValues(lua_State* L) { in _wrap_SBEnvironment_GetNumValues() argument
25407 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetNumValues",1,"lldb::SBEnvironment … in _wrap_SBEnvironment_GetNumValues()
25409 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_GetNumValues()
25414 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBEnvironment_GetNumValues()
25419 lua_error(L); in _wrap_SBEnvironment_GetNumValues()
25424 static int _wrap_SBEnvironment_GetNameAtIndex(lua_State* L) { in _wrap_SBEnvironment_GetNameAtIndex() argument
25432 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetNameAtIndex",1,"lldb::SBEnvironmen… in _wrap_SBEnvironment_GetNameAtIndex()
25433 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBEnvironment::GetNameAtIndex",2,"size_t"); in _wrap_SBEnvironment_GetNameAtIndex()
25435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_GetNameAtIndex()
25439 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBEnvironment_GetNameAtIndex()
25441 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBEnvironment_GetNameAtIndex()
25446 lua_error(L); in _wrap_SBEnvironment_GetNameAtIndex()
25451 static int _wrap_SBEnvironment_GetValueAtIndex(lua_State* L) { in _wrap_SBEnvironment_GetValueAtIndex() argument
25459 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetValueAtIndex",1,"lldb::SBEnvironme… in _wrap_SBEnvironment_GetValueAtIndex()
25460 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBEnvironment::GetValueAtIndex",2,"size_t"); in _wrap_SBEnvironment_GetValueAtIndex()
25462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_GetValueAtIndex()
25466 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBEnvironment_GetValueAtIndex()
25468 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBEnvironment_GetValueAtIndex()
25473 lua_error(L); in _wrap_SBEnvironment_GetValueAtIndex()
25478 static int _wrap_SBEnvironment_GetEntries(lua_State* L) { in _wrap_SBEnvironment_GetEntries() argument
25485 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::GetEntries",1,"lldb::SBEnvironment *"… in _wrap_SBEnvironment_GetEntries()
25487 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_GetEntries()
25494 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++; in _wrap_SBEnvironment_GetEntries()
25500 lua_error(L); in _wrap_SBEnvironment_GetEntries()
25505 static int _wrap_SBEnvironment_PutEntry(lua_State* L) { in _wrap_SBEnvironment_PutEntry() argument
25512 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::PutEntry",1,"lldb::SBEnvironment *"); in _wrap_SBEnvironment_PutEntry()
25513 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::PutEntry",2,"char const *"); in _wrap_SBEnvironment_PutEntry()
25515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_PutEntry()
25519 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBEnvironment_PutEntry()
25526 lua_error(L); in _wrap_SBEnvironment_PutEntry()
25531 static int _wrap_SBEnvironment_SetEntries(lua_State* L) { in _wrap_SBEnvironment_SetEntries() argument
25539 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::SetEntries",1,"lldb::SBEnvironment *"… in _wrap_SBEnvironment_SetEntries()
25540 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEnvironment::SetEntries",2,"lldb::SBStringList con… in _wrap_SBEnvironment_SetEntries()
25541 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBEnvironment::SetEntries",3,"bool"); in _wrap_SBEnvironment_SetEntries()
25543 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_SetEntries()
25548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBEnvironment_SetEntries()
25552 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBEnvironment_SetEntries()
25559 lua_error(L); in _wrap_SBEnvironment_SetEntries()
25564 static int _wrap_SBEnvironment_Set(lua_State* L) { in _wrap_SBEnvironment_Set() argument
25574 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Set",1,"lldb::SBEnvironment *"); in _wrap_SBEnvironment_Set()
25575 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::Set",2,"char const *"); in _wrap_SBEnvironment_Set()
25576 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBEnvironment::Set",3,"char const *"); in _wrap_SBEnvironment_Set()
25577 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBEnvironment::Set",4,"bool"); in _wrap_SBEnvironment_Set()
25579 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_Set()
25583 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBEnvironment_Set()
25584 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBEnvironment_Set()
25585 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBEnvironment_Set()
25587 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBEnvironment_Set()
25592 lua_error(L); in _wrap_SBEnvironment_Set()
25597 static int _wrap_SBEnvironment_Unset(lua_State* L) { in _wrap_SBEnvironment_Unset() argument
25605 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Unset",1,"lldb::SBEnvironment *"); in _wrap_SBEnvironment_Unset()
25606 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBEnvironment::Unset",2,"char const *"); in _wrap_SBEnvironment_Unset()
25608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_Unset()
25612 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBEnvironment_Unset()
25614 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBEnvironment_Unset()
25619 lua_error(L); in _wrap_SBEnvironment_Unset()
25624 static int _wrap_SBEnvironment_Clear(lua_State* L) { in _wrap_SBEnvironment_Clear() argument
25630 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEnvironment::Clear",1,"lldb::SBEnvironment *"); in _wrap_SBEnvironment_Clear()
25632 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBEnvironment_Clear()
25642 lua_error(L); in _wrap_SBEnvironment_Clear()
25651 static int _proxy__wrap_new_SBEnvironment(lua_State *L) { in _proxy__wrap_new_SBEnvironment() argument
25652 assert(lua_istable(L,1)); in _proxy__wrap_new_SBEnvironment()
25653 lua_pushcfunction(L,_wrap_new_SBEnvironment); in _proxy__wrap_new_SBEnvironment()
25654 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBEnvironment()
25655 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBEnvironment()
25656 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBEnvironment()
25704 static int _wrap_new_SBEvent__SWIG_0(lua_State* L) { in _wrap_new_SBEvent__SWIG_0() argument
25711 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++; in _wrap_new_SBEvent__SWIG_0()
25716 lua_error(L); in _wrap_new_SBEvent__SWIG_0()
25721 static int _wrap_new_SBEvent__SWIG_1(lua_State* L) { in _wrap_new_SBEvent__SWIG_1() argument
25728 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBEvent::SBEvent",1,"lldb::SBEvent const &"); in _wrap_new_SBEvent__SWIG_1()
25730 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_new_SBEvent__SWIG_1()
25735 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++; in _wrap_new_SBEvent__SWIG_1()
25740 lua_error(L); in _wrap_new_SBEvent__SWIG_1()
25745 static int _wrap_new_SBEvent__SWIG_2(lua_State* L) { in _wrap_new_SBEvent__SWIG_2() argument
25754 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBEvent::SBEvent",1,"uint32_t"); in _wrap_new_SBEvent__SWIG_2()
25755 arg1 = (uint32_t)lua_tointeger(L, 1); in _wrap_new_SBEvent__SWIG_2()
25757 arg2 = (char *)luaL_checklstring(L, 2, (size_t *)&arg3); in _wrap_new_SBEvent__SWIG_2()
25760 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++; in _wrap_new_SBEvent__SWIG_2()
25765 lua_error(L); in _wrap_new_SBEvent__SWIG_2()
25770 static int _wrap_new_SBEvent(lua_State* L) { in _wrap_new_SBEvent() argument
25776 argc = lua_gettop(L); in _wrap_new_SBEvent()
25778 return _wrap_new_SBEvent__SWIG_0(L); in _wrap_new_SBEvent()
25784 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBEvent()
25791 return _wrap_new_SBEvent__SWIG_1(L); in _wrap_new_SBEvent()
25797 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBEvent()
25801 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBEvent()
25805 return _wrap_new_SBEvent__SWIG_2(L); in _wrap_new_SBEvent()
25808 _v = lua_isnumber(L,argv[2]); in _wrap_new_SBEvent()
25811 return _wrap_new_SBEvent__SWIG_2(L); in _wrap_new_SBEvent()
25817 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBEvent'\n" in _wrap_new_SBEvent()
25822 lua_error(L);return 0; in _wrap_new_SBEvent()
25826 static int _wrap_SBEvent_IsValid(lua_State* L) { in _wrap_SBEvent_IsValid() argument
25833 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::IsValid",1,"lldb::SBEvent const *"); in _wrap_SBEvent_IsValid()
25835 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_IsValid()
25840 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBEvent_IsValid()
25845 lua_error(L); in _wrap_SBEvent_IsValid()
25850 static int _wrap_SBEvent_GetDataFlavor(lua_State* L) { in _wrap_SBEvent_GetDataFlavor() argument
25857 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetDataFlavor",1,"lldb::SBEvent *"); in _wrap_SBEvent_GetDataFlavor()
25859 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetDataFlavor()
25864 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBEvent_GetDataFlavor()
25869 lua_error(L); in _wrap_SBEvent_GetDataFlavor()
25874 static int _wrap_SBEvent_GetType(lua_State* L) { in _wrap_SBEvent_GetType() argument
25881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetType",1,"lldb::SBEvent const *"); in _wrap_SBEvent_GetType()
25883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetType()
25888 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBEvent_GetType()
25893 lua_error(L); in _wrap_SBEvent_GetType()
25898 static int _wrap_SBEvent_GetBroadcaster(lua_State* L) { in _wrap_SBEvent_GetBroadcaster() argument
25905 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetBroadcaster",1,"lldb::SBEvent const *"); in _wrap_SBEvent_GetBroadcaster()
25907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetBroadcaster()
25914 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_SBEvent_GetBroadcaster()
25920 lua_error(L); in _wrap_SBEvent_GetBroadcaster()
25925 static int _wrap_SBEvent_GetBroadcasterClass(lua_State* L) { in _wrap_SBEvent_GetBroadcasterClass() argument
25932 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetBroadcasterClass",1,"lldb::SBEvent const… in _wrap_SBEvent_GetBroadcasterClass()
25934 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetBroadcasterClass()
25939 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBEvent_GetBroadcasterClass()
25944 lua_error(L); in _wrap_SBEvent_GetBroadcasterClass()
25949 static int _wrap_SBEvent_BroadcasterMatchesRef(lua_State* L) { in _wrap_SBEvent_BroadcasterMatchesRef() argument
25957 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::BroadcasterMatchesRef",1,"lldb::SBEvent *"); in _wrap_SBEvent_BroadcasterMatchesRef()
25958 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEvent::BroadcasterMatchesRef",2,"lldb::SBBroadcast… in _wrap_SBEvent_BroadcasterMatchesRef()
25960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_BroadcasterMatchesRef()
25965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBEvent_BroadcasterMatchesRef()
25970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBEvent_BroadcasterMatchesRef()
25975 lua_error(L); in _wrap_SBEvent_BroadcasterMatchesRef()
25980 static int _wrap_SBEvent_Clear(lua_State* L) { in _wrap_SBEvent_Clear() argument
25986 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::Clear",1,"lldb::SBEvent *"); in _wrap_SBEvent_Clear()
25988 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_Clear()
25998 lua_error(L); in _wrap_SBEvent_Clear()
26003 static int _wrap_SBEvent_GetCStringFromEvent(lua_State* L) { in _wrap_SBEvent_GetCStringFromEvent() argument
26010 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBEvent::GetCStringFromEvent",1,"lldb::SBEvent const… in _wrap_SBEvent_GetCStringFromEvent()
26012 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetCStringFromEvent()
26017 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBEvent_GetCStringFromEvent()
26022 lua_error(L); in _wrap_SBEvent_GetCStringFromEvent()
26027 static int _wrap_SBEvent_GetDescription__SWIG_0(lua_State* L) { in _wrap_SBEvent_GetDescription__SWIG_0() argument
26035 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetDescription",1,"lldb::SBEvent *"); in _wrap_SBEvent_GetDescription__SWIG_0()
26036 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEvent::GetDescription",2,"lldb::SBStream &"); in _wrap_SBEvent_GetDescription__SWIG_0()
26038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetDescription__SWIG_0()
26043 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBEvent_GetDescription__SWIG_0()
26048 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBEvent_GetDescription__SWIG_0()
26053 lua_error(L); in _wrap_SBEvent_GetDescription__SWIG_0()
26058 static int _wrap_SBEvent_GetDescription__SWIG_1(lua_State* L) { in _wrap_SBEvent_GetDescription__SWIG_1() argument
26066 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBEvent::GetDescription",1,"lldb::SBEvent const *"); in _wrap_SBEvent_GetDescription__SWIG_1()
26067 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBEvent::GetDescription",2,"lldb::SBStream &"); in _wrap_SBEvent_GetDescription__SWIG_1()
26069 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBEvent_GetDescription__SWIG_1()
26074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBEvent_GetDescription__SWIG_1()
26079 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBEvent_GetDescription__SWIG_1()
26084 lua_error(L); in _wrap_SBEvent_GetDescription__SWIG_1()
26089 static int _wrap_SBEvent_GetDescription(lua_State* L) { in _wrap_SBEvent_GetDescription() argument
26095 argc = lua_gettop(L); in _wrap_SBEvent_GetDescription()
26100 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBEvent_GetDescription()
26109 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBEvent_GetDescription()
26116 return _wrap_SBEvent_GetDescription__SWIG_0(L); in _wrap_SBEvent_GetDescription()
26124 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBEvent_GetDescription()
26133 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBEvent_GetDescription()
26140 return _wrap_SBEvent_GetDescription__SWIG_1(L); in _wrap_SBEvent_GetDescription()
26145 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBEvent_GetDescription'\n" in _wrap_SBEvent_GetDescription()
26149 lua_error(L);return 0; in _wrap_SBEvent_GetDescription()
26157 static int _proxy__wrap_new_SBEvent(lua_State *L) { in _proxy__wrap_new_SBEvent() argument
26158 assert(lua_istable(L,1)); in _proxy__wrap_new_SBEvent()
26159 lua_pushcfunction(L,_wrap_new_SBEvent); in _proxy__wrap_new_SBEvent()
26160 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBEvent()
26161 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBEvent()
26162 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBEvent()
26209 static int _wrap_new_SBExecutionContext__SWIG_0(lua_State* L) { in _wrap_new_SBExecutionContext__SWIG_0() argument
26216 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++; in _wrap_new_SBExecutionContext__SWIG_0()
26221 lua_error(L); in _wrap_new_SBExecutionContext__SWIG_0()
26226 static int _wrap_new_SBExecutionContext__SWIG_1(lua_State* L) { in _wrap_new_SBExecutionContext__SWIG_1() argument
26233 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBE… in _wrap_new_SBExecutionContext__SWIG_1()
26235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_new_SBExecutionContext__SWIG_1()
26240 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++; in _wrap_new_SBExecutionContext__SWIG_1()
26245 lua_error(L); in _wrap_new_SBExecutionContext__SWIG_1()
26250 static int _wrap_new_SBExecutionContext__SWIG_2(lua_State* L) { in _wrap_new_SBExecutionContext__SWIG_2() argument
26257 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBT… in _wrap_new_SBExecutionContext__SWIG_2()
26259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_new_SBExecutionContext__SWIG_2()
26264 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++; in _wrap_new_SBExecutionContext__SWIG_2()
26269 lua_error(L); in _wrap_new_SBExecutionContext__SWIG_2()
26274 static int _wrap_new_SBExecutionContext__SWIG_3(lua_State* L) { in _wrap_new_SBExecutionContext__SWIG_3() argument
26281 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBP… in _wrap_new_SBExecutionContext__SWIG_3()
26283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_new_SBExecutionContext__SWIG_3()
26288 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++; in _wrap_new_SBExecutionContext__SWIG_3()
26293 lua_error(L); in _wrap_new_SBExecutionContext__SWIG_3()
26298 static int _wrap_new_SBExecutionContext__SWIG_4(lua_State* L) { in _wrap_new_SBExecutionContext__SWIG_4() argument
26306 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBT… in _wrap_new_SBExecutionContext__SWIG_4()
26308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_new_SBExecutionContext__SWIG_4()
26314 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++; in _wrap_new_SBExecutionContext__SWIG_4()
26319 lua_error(L); in _wrap_new_SBExecutionContext__SWIG_4()
26324 static int _wrap_new_SBExecutionContext__SWIG_5(lua_State* L) { in _wrap_new_SBExecutionContext__SWIG_5() argument
26331 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::SBExecutionContext",1,"lldb::SBF… in _wrap_new_SBExecutionContext__SWIG_5()
26333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_new_SBExecutionContext__SWIG_5()
26338 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExecutionContext,1); SWIG_arg++; in _wrap_new_SBExecutionContext__SWIG_5()
26343 lua_error(L); in _wrap_new_SBExecutionContext__SWIG_5()
26348 static int _wrap_new_SBExecutionContext(lua_State* L) { in _wrap_new_SBExecutionContext() argument
26354 argc = lua_gettop(L); in _wrap_new_SBExecutionContext()
26356 return _wrap_new_SBExecutionContext__SWIG_0(L); in _wrap_new_SBExecutionContext()
26362 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBExecutionContext()
26369 return _wrap_new_SBExecutionContext__SWIG_1(L); in _wrap_new_SBExecutionContext()
26376 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBExecutionContext()
26383 return _wrap_new_SBExecutionContext__SWIG_2(L); in _wrap_new_SBExecutionContext()
26390 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBExecutionContext()
26397 return _wrap_new_SBExecutionContext__SWIG_3(L); in _wrap_new_SBExecutionContext()
26404 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBExecutionContext()
26411 return _wrap_new_SBExecutionContext__SWIG_4(L); in _wrap_new_SBExecutionContext()
26418 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBExecutionContext()
26425 return _wrap_new_SBExecutionContext__SWIG_5(L); in _wrap_new_SBExecutionContext()
26429 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBExecutionContext'\n" in _wrap_new_SBExecutionContext()
26437 lua_error(L);return 0; in _wrap_new_SBExecutionContext()
26441 static int _wrap_SBExecutionContext_GetTarget(lua_State* L) { in _wrap_SBExecutionContext_GetTarget() argument
26448 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetTarget",1,"lldb::SBExecutionC… in _wrap_SBExecutionContext_GetTarget()
26450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBExecutionContext_GetTarget()
26457 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBExecutionContext_GetTarget()
26463 lua_error(L); in _wrap_SBExecutionContext_GetTarget()
26468 static int _wrap_SBExecutionContext_GetProcess(lua_State* L) { in _wrap_SBExecutionContext_GetProcess() argument
26475 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetProcess",1,"lldb::SBExecution… in _wrap_SBExecutionContext_GetProcess()
26477 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBExecutionContext_GetProcess()
26484 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBExecutionContext_GetProcess()
26490 lua_error(L); in _wrap_SBExecutionContext_GetProcess()
26495 static int _wrap_SBExecutionContext_GetThread(lua_State* L) { in _wrap_SBExecutionContext_GetThread() argument
26502 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetThread",1,"lldb::SBExecutionC… in _wrap_SBExecutionContext_GetThread()
26504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBExecutionContext_GetThread()
26511 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBExecutionContext_GetThread()
26517 lua_error(L); in _wrap_SBExecutionContext_GetThread()
26522 static int _wrap_SBExecutionContext_GetFrame(lua_State* L) { in _wrap_SBExecutionContext_GetFrame() argument
26529 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExecutionContext::GetFrame",1,"lldb::SBExecutionCo… in _wrap_SBExecutionContext_GetFrame()
26531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExecutionContext,0))){ in _wrap_SBExecutionContext_GetFrame()
26538 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_SBExecutionContext_GetFrame()
26544 lua_error(L); in _wrap_SBExecutionContext_GetFrame()
26553 static int _proxy__wrap_new_SBExecutionContext(lua_State *L) { in _proxy__wrap_new_SBExecutionContext() argument
26554 assert(lua_istable(L,1)); in _proxy__wrap_new_SBExecutionContext()
26555 lua_pushcfunction(L,_wrap_new_SBExecutionContext); in _proxy__wrap_new_SBExecutionContext()
26556 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBExecutionContext()
26557 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBExecutionContext()
26558 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBExecutionContext()
26600 static int _wrap_new_SBExpressionOptions__SWIG_0(lua_State* L) { in _wrap_new_SBExpressionOptions__SWIG_0() argument
26607 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExpressionOptions,1); SWIG_arg++; in _wrap_new_SBExpressionOptions__SWIG_0()
26612 lua_error(L); in _wrap_new_SBExpressionOptions__SWIG_0()
26617 static int _wrap_new_SBExpressionOptions__SWIG_1(lua_State* L) { in _wrap_new_SBExpressionOptions__SWIG_1() argument
26624 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SBExpressionOptions",1,"lldb::S… in _wrap_new_SBExpressionOptions__SWIG_1()
26626 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_new_SBExpressionOptions__SWIG_1()
26631 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBExpressionOptions,1); SWIG_arg++; in _wrap_new_SBExpressionOptions__SWIG_1()
26636 lua_error(L); in _wrap_new_SBExpressionOptions__SWIG_1()
26641 static int _wrap_new_SBExpressionOptions(lua_State* L) { in _wrap_new_SBExpressionOptions() argument
26647 argc = lua_gettop(L); in _wrap_new_SBExpressionOptions()
26649 return _wrap_new_SBExpressionOptions__SWIG_0(L); in _wrap_new_SBExpressionOptions()
26655 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBExpressionOptions()
26662 return _wrap_new_SBExpressionOptions__SWIG_1(L); in _wrap_new_SBExpressionOptions()
26666 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBExpressionOptions'\n" in _wrap_new_SBExpressionOptions()
26670 lua_error(L);return 0; in _wrap_new_SBExpressionOptions()
26674 static int _wrap_SBExpressionOptions_GetCoerceResultToId(lua_State* L) { in _wrap_SBExpressionOptions_GetCoerceResultToId() argument
26681 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetCoerceResultToId",1,"lldb::S… in _wrap_SBExpressionOptions_GetCoerceResultToId()
26683 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetCoerceResultToId()
26688 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetCoerceResultToId()
26693 lua_error(L); in _wrap_SBExpressionOptions_GetCoerceResultToId()
26698 static int _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0() argument
26705 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetCoerceResultToId",1,"lldb::S… in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0()
26706 … if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetCoerceResultToId",2,"bool"); in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0()
26708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0()
26712 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0()
26719 lua_error(L); in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0()
26724 static int _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1() argument
26730 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetCoerceResultToId",1,"lldb::S… in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1()
26732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1()
26742 lua_error(L); in _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1()
26747 static int _wrap_SBExpressionOptions_SetCoerceResultToId(lua_State* L) { in _wrap_SBExpressionOptions_SetCoerceResultToId() argument
26753 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetCoerceResultToId()
26758 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetCoerceResultToId()
26765 return _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_1(L); in _wrap_SBExpressionOptions_SetCoerceResultToId()
26772 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetCoerceResultToId()
26780 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetCoerceResultToId()
26783 return _wrap_SBExpressionOptions_SetCoerceResultToId__SWIG_0(L); in _wrap_SBExpressionOptions_SetCoerceResultToId()
26788 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetCoerceRe… in _wrap_SBExpressionOptions_SetCoerceResultToId()
26792 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetCoerceResultToId()
26796 static int _wrap_SBExpressionOptions_GetUnwindOnError(lua_State* L) { in _wrap_SBExpressionOptions_GetUnwindOnError() argument
26803 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetUnwindOnError",1,"lldb::SBEx… in _wrap_SBExpressionOptions_GetUnwindOnError()
26805 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetUnwindOnError()
26810 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetUnwindOnError()
26815 lua_error(L); in _wrap_SBExpressionOptions_GetUnwindOnError()
26820 static int _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0() argument
26827 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetUnwindOnError",1,"lldb::SBEx… in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0()
26828 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetUnwindOnError",2,"bool"); in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0()
26830 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0()
26834 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0()
26841 lua_error(L); in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0()
26846 static int _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1() argument
26852 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetUnwindOnError",1,"lldb::SBEx… in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1()
26854 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1()
26864 lua_error(L); in _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1()
26869 static int _wrap_SBExpressionOptions_SetUnwindOnError(lua_State* L) { in _wrap_SBExpressionOptions_SetUnwindOnError() argument
26875 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetUnwindOnError()
26880 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetUnwindOnError()
26887 return _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_1(L); in _wrap_SBExpressionOptions_SetUnwindOnError()
26894 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetUnwindOnError()
26902 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetUnwindOnError()
26905 return _wrap_SBExpressionOptions_SetUnwindOnError__SWIG_0(L); in _wrap_SBExpressionOptions_SetUnwindOnError()
26910 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetUnwindOn… in _wrap_SBExpressionOptions_SetUnwindOnError()
26914 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetUnwindOnError()
26918 static int _wrap_SBExpressionOptions_GetIgnoreBreakpoints(lua_State* L) { in _wrap_SBExpressionOptions_GetIgnoreBreakpoints() argument
26925 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetIgnoreBreakpoints",1,"lldb::… in _wrap_SBExpressionOptions_GetIgnoreBreakpoints()
26927 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetIgnoreBreakpoints()
26932 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetIgnoreBreakpoints()
26937 lua_error(L); in _wrap_SBExpressionOptions_GetIgnoreBreakpoints()
26942 static int _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0() argument
26949 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetIgnoreBreakpoints",1,"lldb::… in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0()
26950 … if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetIgnoreBreakpoints",2,"bool"); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0()
26952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0()
26956 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0()
26963 lua_error(L); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0()
26968 static int _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1() argument
26974 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetIgnoreBreakpoints",1,"lldb::… in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1()
26976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1()
26986 lua_error(L); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1()
26991 static int _wrap_SBExpressionOptions_SetIgnoreBreakpoints(lua_State* L) { in _wrap_SBExpressionOptions_SetIgnoreBreakpoints() argument
26997 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27002 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27009 return _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_1(L); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27016 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27024 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27027 return _wrap_SBExpressionOptions_SetIgnoreBreakpoints__SWIG_0(L); in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27032 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetIgnoreBr… in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27036 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetIgnoreBreakpoints()
27040 static int _wrap_SBExpressionOptions_GetFetchDynamicValue(lua_State* L) { in _wrap_SBExpressionOptions_GetFetchDynamicValue() argument
27047 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetFetchDynamicValue",1,"lldb::… in _wrap_SBExpressionOptions_GetFetchDynamicValue()
27049 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetFetchDynamicValue()
27054 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBExpressionOptions_GetFetchDynamicValue()
27059 lua_error(L); in _wrap_SBExpressionOptions_GetFetchDynamicValue()
27064 static int _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0() argument
27071 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetFetchDynamicValue",1,"lldb::… in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0()
27072 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetFetchDynamicValue",2,"lldb::D… in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0()
27074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0()
27078 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2); in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0()
27085 lua_error(L); in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0()
27090 static int _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1() argument
27096 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetFetchDynamicValue",1,"lldb::… in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1()
27098 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1()
27108 lua_error(L); in _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1()
27113 static int _wrap_SBExpressionOptions_SetFetchDynamicValue(lua_State* L) { in _wrap_SBExpressionOptions_SetFetchDynamicValue() argument
27119 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27124 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27131 return _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_1(L); in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27138 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27146 _v = lua_isnumber(L,argv[1]); in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27149 return _wrap_SBExpressionOptions_SetFetchDynamicValue__SWIG_0(L); in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27154 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetFetchDyn… in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27158 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetFetchDynamicValue()
27162 static int _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds(lua_State* L) { in _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds() argument
27169 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTimeoutInMicroSeconds",1,"ll… in _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds()
27171 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds()
27176 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds()
27181 lua_error(L); in _wrap_SBExpressionOptions_GetTimeoutInMicroSeconds()
27186 static int _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0() argument
27193 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTimeoutInMicroSeconds",1,"ll… in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0()
27194 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTimeoutInMicroSeconds",2,"uin… in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0()
27196 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0()
27200 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0()
27207 lua_error(L); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0()
27212 static int _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1() argument
27218 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTimeoutInMicroSeconds",1,"ll… in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1()
27220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1()
27230 lua_error(L); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1()
27235 static int _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds(lua_State* L) { in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds() argument
27241 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27246 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27253 return _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_1(L); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27260 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27268 _v = lua_isnumber(L,argv[1]); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27271 return _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds__SWIG_0(L); in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27276 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTimeoutI… in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27280 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetTimeoutInMicroSeconds()
27284 static int _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds(lua_State* L) { in _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds() argument
27291 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetOneThreadTimeoutInMicroSecon… in _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds()
27293 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds()
27298 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds()
27303 lua_error(L); in _wrap_SBExpressionOptions_GetOneThreadTimeoutInMicroSeconds()
27308 static int _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0() argument
27315 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetOneThreadTimeoutInMicroSecon… in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0()
27316 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetOneThreadTimeoutInMicroSecond… in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0()
27318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0()
27322 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0()
27329 lua_error(L); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0()
27334 static int _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1() argument
27340 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetOneThreadTimeoutInMicroSecon… in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1()
27342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1()
27352 lua_error(L); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1()
27357 static int _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds(lua_State* L) { in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds() argument
27363 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27368 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27375 return _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_1(L); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27382 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27390 _v = lua_isnumber(L,argv[1]); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27393 return _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds__SWIG_0(L); in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27398 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetOneThrea… in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27402 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetOneThreadTimeoutInMicroSeconds()
27406 static int _wrap_SBExpressionOptions_GetTryAllThreads(lua_State* L) { in _wrap_SBExpressionOptions_GetTryAllThreads() argument
27413 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTryAllThreads",1,"lldb::SBEx… in _wrap_SBExpressionOptions_GetTryAllThreads()
27415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetTryAllThreads()
27420 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetTryAllThreads()
27425 lua_error(L); in _wrap_SBExpressionOptions_GetTryAllThreads()
27430 static int _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0() argument
27437 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTryAllThreads",1,"lldb::SBEx… in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0()
27438 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTryAllThreads",2,"bool"); in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0()
27440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0()
27444 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0()
27451 lua_error(L); in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0()
27456 static int _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1() argument
27462 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTryAllThreads",1,"lldb::SBEx… in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1()
27464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1()
27474 lua_error(L); in _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1()
27479 static int _wrap_SBExpressionOptions_SetTryAllThreads(lua_State* L) { in _wrap_SBExpressionOptions_SetTryAllThreads() argument
27485 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetTryAllThreads()
27490 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTryAllThreads()
27497 return _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_1(L); in _wrap_SBExpressionOptions_SetTryAllThreads()
27504 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTryAllThreads()
27512 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetTryAllThreads()
27515 return _wrap_SBExpressionOptions_SetTryAllThreads__SWIG_0(L); in _wrap_SBExpressionOptions_SetTryAllThreads()
27520 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTryAllTh… in _wrap_SBExpressionOptions_SetTryAllThreads()
27524 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetTryAllThreads()
27528 static int _wrap_SBExpressionOptions_GetStopOthers(lua_State* L) { in _wrap_SBExpressionOptions_GetStopOthers() argument
27535 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetStopOthers",1,"lldb::SBExpre… in _wrap_SBExpressionOptions_GetStopOthers()
27537 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetStopOthers()
27542 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetStopOthers()
27547 lua_error(L); in _wrap_SBExpressionOptions_GetStopOthers()
27552 static int _wrap_SBExpressionOptions_SetStopOthers__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetStopOthers__SWIG_0() argument
27559 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetStopOthers",1,"lldb::SBExpre… in _wrap_SBExpressionOptions_SetStopOthers__SWIG_0()
27560 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetStopOthers",2,"bool"); in _wrap_SBExpressionOptions_SetStopOthers__SWIG_0()
27562 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetStopOthers__SWIG_0()
27566 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetStopOthers__SWIG_0()
27573 lua_error(L); in _wrap_SBExpressionOptions_SetStopOthers__SWIG_0()
27578 static int _wrap_SBExpressionOptions_SetStopOthers__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetStopOthers__SWIG_1() argument
27584 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetStopOthers",1,"lldb::SBExpre… in _wrap_SBExpressionOptions_SetStopOthers__SWIG_1()
27586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetStopOthers__SWIG_1()
27596 lua_error(L); in _wrap_SBExpressionOptions_SetStopOthers__SWIG_1()
27601 static int _wrap_SBExpressionOptions_SetStopOthers(lua_State* L) { in _wrap_SBExpressionOptions_SetStopOthers() argument
27607 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetStopOthers()
27612 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetStopOthers()
27619 return _wrap_SBExpressionOptions_SetStopOthers__SWIG_1(L); in _wrap_SBExpressionOptions_SetStopOthers()
27626 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetStopOthers()
27634 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetStopOthers()
27637 return _wrap_SBExpressionOptions_SetStopOthers__SWIG_0(L); in _wrap_SBExpressionOptions_SetStopOthers()
27642 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetStopOthe… in _wrap_SBExpressionOptions_SetStopOthers()
27646 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetStopOthers()
27650 static int _wrap_SBExpressionOptions_GetTrapExceptions(lua_State* L) { in _wrap_SBExpressionOptions_GetTrapExceptions() argument
27657 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTrapExceptions",1,"lldb::SBE… in _wrap_SBExpressionOptions_GetTrapExceptions()
27659 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetTrapExceptions()
27664 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetTrapExceptions()
27669 lua_error(L); in _wrap_SBExpressionOptions_GetTrapExceptions()
27674 static int _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0() argument
27681 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTrapExceptions",1,"lldb::SBE… in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0()
27682 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTrapExceptions",2,"bool"); in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0()
27684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0()
27688 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0()
27695 lua_error(L); in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0()
27700 static int _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1() argument
27706 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTrapExceptions",1,"lldb::SBE… in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1()
27708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1()
27718 lua_error(L); in _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1()
27723 static int _wrap_SBExpressionOptions_SetTrapExceptions(lua_State* L) { in _wrap_SBExpressionOptions_SetTrapExceptions() argument
27729 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetTrapExceptions()
27734 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTrapExceptions()
27741 return _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_1(L); in _wrap_SBExpressionOptions_SetTrapExceptions()
27748 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTrapExceptions()
27756 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetTrapExceptions()
27759 return _wrap_SBExpressionOptions_SetTrapExceptions__SWIG_0(L); in _wrap_SBExpressionOptions_SetTrapExceptions()
27764 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTrapExce… in _wrap_SBExpressionOptions_SetTrapExceptions()
27768 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetTrapExceptions()
27772 static int _wrap_SBExpressionOptions_SetLanguage__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetLanguage__SWIG_0() argument
27779 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_SetLanguage__SWIG_0()
27780 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",2,"lldb::LanguageTy… in _wrap_SBExpressionOptions_SetLanguage__SWIG_0()
27782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetLanguage__SWIG_0()
27786 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBExpressionOptions_SetLanguage__SWIG_0()
27793 lua_error(L); in _wrap_SBExpressionOptions_SetLanguage__SWIG_0()
27798 static int _wrap_SBExpressionOptions_SetLanguage__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetLanguage__SWIG_1() argument
27806 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27807 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",2,"lldb::SBSourceLa… in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27808 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBExpressionOptions::SetLanguage",3,"uint32_t"); in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27814 arg2 = (lldb::SBSourceLanguageName)lua_tointeger(L, 2); in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27815 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27822 lua_error(L); in _wrap_SBExpressionOptions_SetLanguage__SWIG_1()
27827 static int _wrap_SBExpressionOptions_SetLanguage(lua_State* L) { in _wrap_SBExpressionOptions_SetLanguage() argument
27833 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetLanguage()
27838 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetLanguage()
27846 _v = lua_isnumber(L,argv[1]); in _wrap_SBExpressionOptions_SetLanguage()
27849 return _wrap_SBExpressionOptions_SetLanguage__SWIG_0(L); in _wrap_SBExpressionOptions_SetLanguage()
27857 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetLanguage()
27865 _v = lua_isnumber(L,argv[1]); in _wrap_SBExpressionOptions_SetLanguage()
27869 _v = lua_isnumber(L,argv[2]); in _wrap_SBExpressionOptions_SetLanguage()
27872 return _wrap_SBExpressionOptions_SetLanguage__SWIG_1(L); in _wrap_SBExpressionOptions_SetLanguage()
27878 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetLanguage… in _wrap_SBExpressionOptions_SetLanguage()
27882 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetLanguage()
27886 static int _wrap_SBExpressionOptions_GetGenerateDebugInfo(lua_State* L) { in _wrap_SBExpressionOptions_GetGenerateDebugInfo() argument
27893 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetGenerateDebugInfo",1,"lldb::… in _wrap_SBExpressionOptions_GetGenerateDebugInfo()
27895 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetGenerateDebugInfo()
27900 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetGenerateDebugInfo()
27905 lua_error(L); in _wrap_SBExpressionOptions_GetGenerateDebugInfo()
27910 static int _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0() argument
27917 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetGenerateDebugInfo",1,"lldb::… in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0()
27918 … if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetGenerateDebugInfo",2,"bool"); in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0()
27920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0()
27924 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0()
27931 lua_error(L); in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0()
27936 static int _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1() argument
27942 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetGenerateDebugInfo",1,"lldb::… in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1()
27944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1()
27954 lua_error(L); in _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1()
27959 static int _wrap_SBExpressionOptions_SetGenerateDebugInfo(lua_State* L) { in _wrap_SBExpressionOptions_SetGenerateDebugInfo() argument
27965 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
27970 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
27977 return _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_1(L); in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
27984 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
27992 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
27995 return _wrap_SBExpressionOptions_SetGenerateDebugInfo__SWIG_0(L); in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
28000 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetGenerate… in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
28004 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetGenerateDebugInfo()
28008 static int _wrap_SBExpressionOptions_GetSuppressPersistentResult(lua_State* L) { in _wrap_SBExpressionOptions_GetSuppressPersistentResult() argument
28015 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetSuppressPersistentResult",1,… in _wrap_SBExpressionOptions_GetSuppressPersistentResult()
28017 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetSuppressPersistentResult()
28022 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetSuppressPersistentResult()
28027 lua_error(L); in _wrap_SBExpressionOptions_GetSuppressPersistentResult()
28032 static int _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0() argument
28039 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetSuppressPersistentResult",1,… in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0()
28040 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetSuppressPersistentResult",2,"… in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0()
28042 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0()
28046 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0()
28053 lua_error(L); in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0()
28058 static int _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1() argument
28064 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetSuppressPersistentResult",1,… in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1()
28066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1()
28076 lua_error(L); in _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1()
28081 static int _wrap_SBExpressionOptions_SetSuppressPersistentResult(lua_State* L) { in _wrap_SBExpressionOptions_SetSuppressPersistentResult() argument
28087 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28092 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28099 return _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_1(L); in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28106 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28114 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28117 return _wrap_SBExpressionOptions_SetSuppressPersistentResult__SWIG_0(L); in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28122 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetSuppress… in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28126 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetSuppressPersistentResult()
28130 static int _wrap_SBExpressionOptions_GetPrefix(lua_State* L) { in _wrap_SBExpressionOptions_GetPrefix() argument
28137 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetPrefix",1,"lldb::SBExpressio… in _wrap_SBExpressionOptions_GetPrefix()
28139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetPrefix()
28144 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBExpressionOptions_GetPrefix()
28149 lua_error(L); in _wrap_SBExpressionOptions_GetPrefix()
28154 static int _wrap_SBExpressionOptions_SetPrefix(lua_State* L) { in _wrap_SBExpressionOptions_SetPrefix() argument
28161 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetPrefix",1,"lldb::SBExpressio… in _wrap_SBExpressionOptions_SetPrefix()
28162 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetPrefix",2,"char const … in _wrap_SBExpressionOptions_SetPrefix()
28164 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetPrefix()
28168 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBExpressionOptions_SetPrefix()
28175 lua_error(L); in _wrap_SBExpressionOptions_SetPrefix()
28180 static int _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0() argument
28187 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAutoApplyFixIts",1,"lldb::SB… in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0()
28188 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAutoApplyFixIts",2,"bool"); in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0()
28190 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0()
28194 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0()
28201 lua_error(L); in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0()
28206 static int _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1() argument
28212 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAutoApplyFixIts",1,"lldb::SB… in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1()
28214 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1()
28224 lua_error(L); in _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1()
28229 static int _wrap_SBExpressionOptions_SetAutoApplyFixIts(lua_State* L) { in _wrap_SBExpressionOptions_SetAutoApplyFixIts() argument
28235 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28240 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28247 return _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_1(L); in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28254 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28262 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28265 return _wrap_SBExpressionOptions_SetAutoApplyFixIts__SWIG_0(L); in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28270 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetAutoAppl… in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28274 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetAutoApplyFixIts()
28278 static int _wrap_SBExpressionOptions_GetAutoApplyFixIts(lua_State* L) { in _wrap_SBExpressionOptions_GetAutoApplyFixIts() argument
28285 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetAutoApplyFixIts",1,"lldb::SB… in _wrap_SBExpressionOptions_GetAutoApplyFixIts()
28287 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetAutoApplyFixIts()
28292 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetAutoApplyFixIts()
28297 lua_error(L); in _wrap_SBExpressionOptions_GetAutoApplyFixIts()
28302 static int _wrap_SBExpressionOptions_SetRetriesWithFixIts(lua_State* L) { in _wrap_SBExpressionOptions_SetRetriesWithFixIts() argument
28309 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetRetriesWithFixIts",1,"lldb::… in _wrap_SBExpressionOptions_SetRetriesWithFixIts()
28310 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetRetriesWithFixIts",2,"uint64_… in _wrap_SBExpressionOptions_SetRetriesWithFixIts()
28312 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetRetriesWithFixIts()
28316 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBExpressionOptions_SetRetriesWithFixIts()
28323 lua_error(L); in _wrap_SBExpressionOptions_SetRetriesWithFixIts()
28328 static int _wrap_SBExpressionOptions_GetRetriesWithFixIts(lua_State* L) { in _wrap_SBExpressionOptions_GetRetriesWithFixIts() argument
28335 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetRetriesWithFixIts",1,"lldb::… in _wrap_SBExpressionOptions_GetRetriesWithFixIts()
28337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetRetriesWithFixIts()
28342 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBExpressionOptions_GetRetriesWithFixIts()
28347 lua_error(L); in _wrap_SBExpressionOptions_GetRetriesWithFixIts()
28352 static int _wrap_SBExpressionOptions_GetTopLevel(lua_State* L) { in _wrap_SBExpressionOptions_GetTopLevel() argument
28359 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetTopLevel",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_GetTopLevel()
28361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetTopLevel()
28366 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetTopLevel()
28371 lua_error(L); in _wrap_SBExpressionOptions_GetTopLevel()
28376 static int _wrap_SBExpressionOptions_SetTopLevel__SWIG_0(lua_State* L) { in _wrap_SBExpressionOptions_SetTopLevel__SWIG_0() argument
28383 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTopLevel",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_SetTopLevel__SWIG_0()
28384 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTopLevel",2,"bool"); in _wrap_SBExpressionOptions_SetTopLevel__SWIG_0()
28386 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTopLevel__SWIG_0()
28390 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetTopLevel__SWIG_0()
28397 lua_error(L); in _wrap_SBExpressionOptions_SetTopLevel__SWIG_0()
28402 static int _wrap_SBExpressionOptions_SetTopLevel__SWIG_1(lua_State* L) { in _wrap_SBExpressionOptions_SetTopLevel__SWIG_1() argument
28408 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetTopLevel",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_SetTopLevel__SWIG_1()
28410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetTopLevel__SWIG_1()
28420 lua_error(L); in _wrap_SBExpressionOptions_SetTopLevel__SWIG_1()
28425 static int _wrap_SBExpressionOptions_SetTopLevel(lua_State* L) { in _wrap_SBExpressionOptions_SetTopLevel() argument
28431 argc = lua_gettop(L); in _wrap_SBExpressionOptions_SetTopLevel()
28436 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTopLevel()
28443 return _wrap_SBExpressionOptions_SetTopLevel__SWIG_1(L); in _wrap_SBExpressionOptions_SetTopLevel()
28450 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBExpressionOptions_SetTopLevel()
28458 _v = lua_isboolean(L,argv[1]); in _wrap_SBExpressionOptions_SetTopLevel()
28461 return _wrap_SBExpressionOptions_SetTopLevel__SWIG_0(L); in _wrap_SBExpressionOptions_SetTopLevel()
28466 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBExpressionOptions_SetTopLevel… in _wrap_SBExpressionOptions_SetTopLevel()
28470 lua_error(L);return 0; in _wrap_SBExpressionOptions_SetTopLevel()
28474 static int _wrap_SBExpressionOptions_GetAllowJIT(lua_State* L) { in _wrap_SBExpressionOptions_GetAllowJIT() argument
28481 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::GetAllowJIT",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_GetAllowJIT()
28483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_GetAllowJIT()
28488 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBExpressionOptions_GetAllowJIT()
28493 lua_error(L); in _wrap_SBExpressionOptions_GetAllowJIT()
28498 static int _wrap_SBExpressionOptions_SetAllowJIT(lua_State* L) { in _wrap_SBExpressionOptions_SetAllowJIT() argument
28505 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAllowJIT",1,"lldb::SBExpress… in _wrap_SBExpressionOptions_SetAllowJIT()
28506 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBExpressionOptions::SetAllowJIT",2,"bool"); in _wrap_SBExpressionOptions_SetAllowJIT()
28508 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBExpressionOptions_SetAllowJIT()
28512 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBExpressionOptions_SetAllowJIT()
28519 lua_error(L); in _wrap_SBExpressionOptions_SetAllowJIT()
28528 static int _proxy__wrap_new_SBExpressionOptions(lua_State *L) { in _proxy__wrap_new_SBExpressionOptions() argument
28529 assert(lua_istable(L,1)); in _proxy__wrap_new_SBExpressionOptions()
28530 lua_pushcfunction(L,_wrap_new_SBExpressionOptions); in _proxy__wrap_new_SBExpressionOptions()
28531 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBExpressionOptions()
28532 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBExpressionOptions()
28533 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBExpressionOptions()
28604 static int _wrap_new_SBFile__SWIG_0(lua_State* L) { in _wrap_new_SBFile__SWIG_0() argument
28611 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_new_SBFile__SWIG_0()
28616 lua_error(L); in _wrap_new_SBFile__SWIG_0()
28621 static int _wrap_new_SBFile__SWIG_1(lua_State* L) { in _wrap_new_SBFile__SWIG_1() argument
28629 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE); in _wrap_new_SBFile__SWIG_1()
28633 return luaL_error(L, "Invalid file"); in _wrap_new_SBFile__SWIG_1()
28637 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_new_SBFile__SWIG_1()
28642 lua_error(L); in _wrap_new_SBFile__SWIG_1()
28647 static int _wrap_new_SBFile__SWIG_2(lua_State* L) { in _wrap_new_SBFile__SWIG_2() argument
28656 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBFile::SBFile",1,"int"); in _wrap_new_SBFile__SWIG_2()
28657 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFile::SBFile",2,"char const *"); in _wrap_new_SBFile__SWIG_2()
28658 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBFile::SBFile",3,"bool"); in _wrap_new_SBFile__SWIG_2()
28659 arg1 = (int)lua_tointeger(L, 1); in _wrap_new_SBFile__SWIG_2()
28660 arg2 = (char *)lua_tostring(L, 2); in _wrap_new_SBFile__SWIG_2()
28661 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_new_SBFile__SWIG_2()
28663 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_new_SBFile__SWIG_2()
28668 lua_error(L); in _wrap_new_SBFile__SWIG_2()
28673 static int _wrap_new_SBFile(lua_State* L) { in _wrap_new_SBFile() argument
28679 argc = lua_gettop(L); in _wrap_new_SBFile()
28681 return _wrap_new_SBFile__SWIG_0(L); in _wrap_new_SBFile()
28686 _v = (lua_isuserdata(L, argv[0])) && in _wrap_new_SBFile()
28687 (luaL_testudata(L, argv[0], LUA_FILEHANDLE) != nullptr); in _wrap_new_SBFile()
28690 return _wrap_new_SBFile__SWIG_1(L); in _wrap_new_SBFile()
28696 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBFile()
28700 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBFile()
28704 _v = lua_isboolean(L,argv[2]); in _wrap_new_SBFile()
28707 return _wrap_new_SBFile__SWIG_2(L); in _wrap_new_SBFile()
28713 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFile'\n" in _wrap_new_SBFile()
28718 lua_error(L);return 0; in _wrap_new_SBFile()
28722 static int _wrap_SBFile_Read(lua_State* L) { in _wrap_SBFile_Read() argument
28732 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Read",1,"lldb::SBFile *"); in _wrap_SBFile_Read()
28733 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBFile::Read",2,"uint8_t *"); in _wrap_SBFile_Read()
28734 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFile::Read",3,"size_t"); in _wrap_SBFile_Read()
28735 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBFile::Read",4,"size_t *"); in _wrap_SBFile_Read()
28737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBFile_Read()
28742 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_unsigned_char,0))){ in _wrap_SBFile_Read()
28746 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBFile_Read()
28748 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_size_t,0))){ in _wrap_SBFile_Read()
28755 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBFile_Read()
28761 lua_error(L); in _wrap_SBFile_Read()
28766 static int _wrap_SBFile_Write(lua_State* L) { in _wrap_SBFile_Write() argument
28776 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Write",1,"lldb::SBFile *"); in _wrap_SBFile_Write()
28777 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBFile::Write",2,"uint8_t const *"); in _wrap_SBFile_Write()
28778 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFile::Write",3,"size_t"); in _wrap_SBFile_Write()
28779 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBFile::Write",4,"size_t *"); in _wrap_SBFile_Write()
28781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBFile_Write()
28786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_unsigned_char,0))){ in _wrap_SBFile_Write()
28790 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBFile_Write()
28792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_size_t,0))){ in _wrap_SBFile_Write()
28799 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBFile_Write()
28805 lua_error(L); in _wrap_SBFile_Write()
28810 static int _wrap_SBFile_Flush(lua_State* L) { in _wrap_SBFile_Flush() argument
28817 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Flush",1,"lldb::SBFile *"); in _wrap_SBFile_Flush()
28819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBFile_Flush()
28826 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBFile_Flush()
28832 lua_error(L); in _wrap_SBFile_Flush()
28837 static int _wrap_SBFile_IsValid(lua_State* L) { in _wrap_SBFile_IsValid() argument
28844 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::IsValid",1,"lldb::SBFile const *"); in _wrap_SBFile_IsValid()
28846 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBFile_IsValid()
28851 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFile_IsValid()
28856 lua_error(L); in _wrap_SBFile_IsValid()
28861 static int _wrap_SBFile_Close(lua_State* L) { in _wrap_SBFile_Close() argument
28868 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::Close",1,"lldb::SBFile *"); in _wrap_SBFile_Close()
28870 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBFile_Close()
28877 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBFile_Close()
28883 lua_error(L); in _wrap_SBFile_Close()
28888 static int _wrap_SBFile_GetFile(lua_State* L) { in _wrap_SBFile_GetFile() argument
28895 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFile::GetFile",1,"lldb::SBFile const *"); in _wrap_SBFile_GetFile()
28897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBFile_GetFile()
28905 luaL_Stream *p = (luaL_Stream *)lua_newuserdata(L, sizeof(luaL_Stream)); in _wrap_SBFile_GetFile()
28908 luaL_setmetatable(L, LUA_FILEHANDLE); in _wrap_SBFile_GetFile()
28916 lua_error(L); in _wrap_SBFile_GetFile()
28921 static int _wrap_SBFile_MakeBorrowed(lua_State* L) { in _wrap_SBFile_MakeBorrowed() argument
28929 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE); in _wrap_SBFile_MakeBorrowed()
28933 return luaL_error(L, "Invalid file"); in _wrap_SBFile_MakeBorrowed()
28939 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_SBFile_MakeBorrowed()
28945 lua_error(L); in _wrap_SBFile_MakeBorrowed()
28950 static int _wrap_SBFile_MakeForcingIOMethods(lua_State* L) { in _wrap_SBFile_MakeForcingIOMethods() argument
28958 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE); in _wrap_SBFile_MakeForcingIOMethods()
28962 return luaL_error(L, "Invalid file"); in _wrap_SBFile_MakeForcingIOMethods()
28968 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_SBFile_MakeForcingIOMethods()
28974 lua_error(L); in _wrap_SBFile_MakeForcingIOMethods()
28979 static int _wrap_SBFile_MakeBorrowedForcingIOMethods(lua_State* L) { in _wrap_SBFile_MakeBorrowedForcingIOMethods() argument
28987 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 1, LUA_FILEHANDLE); in _wrap_SBFile_MakeBorrowedForcingIOMethods()
28991 return luaL_error(L, "Invalid file"); in _wrap_SBFile_MakeBorrowedForcingIOMethods()
28997 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFile,1); SWIG_arg++; in _wrap_SBFile_MakeBorrowedForcingIOMethods()
29003 lua_error(L); in _wrap_SBFile_MakeBorrowedForcingIOMethods()
29012 static int _proxy__wrap_new_SBFile(lua_State *L) { in _proxy__wrap_new_SBFile() argument
29013 assert(lua_istable(L,1)); in _proxy__wrap_new_SBFile()
29014 lua_pushcfunction(L,_wrap_new_SBFile); in _proxy__wrap_new_SBFile()
29015 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBFile()
29016 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBFile()
29017 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBFile()
29064 static int _wrap_new_SBFileSpec__SWIG_0(lua_State* L) { in _wrap_new_SBFileSpec__SWIG_0() argument
29071 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_new_SBFileSpec__SWIG_0()
29076 lua_error(L); in _wrap_new_SBFileSpec__SWIG_0()
29081 static int _wrap_new_SBFileSpec__SWIG_1(lua_State* L) { in _wrap_new_SBFileSpec__SWIG_1() argument
29088 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",1,"lldb::SBFileSpec const &"… in _wrap_new_SBFileSpec__SWIG_1()
29090 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_new_SBFileSpec__SWIG_1()
29095 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_new_SBFileSpec__SWIG_1()
29100 lua_error(L); in _wrap_new_SBFileSpec__SWIG_1()
29105 static int _wrap_new_SBFileSpec__SWIG_2(lua_State* L) { in _wrap_new_SBFileSpec__SWIG_2() argument
29112 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",1,"char const *"); in _wrap_new_SBFileSpec__SWIG_2()
29113 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBFileSpec__SWIG_2()
29115 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_new_SBFileSpec__SWIG_2()
29120 lua_error(L); in _wrap_new_SBFileSpec__SWIG_2()
29125 static int _wrap_new_SBFileSpec__SWIG_3(lua_State* L) { in _wrap_new_SBFileSpec__SWIG_3() argument
29133 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",1,"char const *"); in _wrap_new_SBFileSpec__SWIG_3()
29134 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBFileSpec::SBFileSpec",2,"bool"); in _wrap_new_SBFileSpec__SWIG_3()
29135 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBFileSpec__SWIG_3()
29136 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_new_SBFileSpec__SWIG_3()
29138 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_new_SBFileSpec__SWIG_3()
29143 lua_error(L); in _wrap_new_SBFileSpec__SWIG_3()
29148 static int _wrap_new_SBFileSpec(lua_State* L) { in _wrap_new_SBFileSpec() argument
29154 argc = lua_gettop(L); in _wrap_new_SBFileSpec()
29156 return _wrap_new_SBFileSpec__SWIG_0(L); in _wrap_new_SBFileSpec()
29162 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBFileSpec()
29169 return _wrap_new_SBFileSpec__SWIG_1(L); in _wrap_new_SBFileSpec()
29175 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBFileSpec()
29178 return _wrap_new_SBFileSpec__SWIG_2(L); in _wrap_new_SBFileSpec()
29184 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBFileSpec()
29188 _v = lua_isboolean(L,argv[1]); in _wrap_new_SBFileSpec()
29191 return _wrap_new_SBFileSpec__SWIG_3(L); in _wrap_new_SBFileSpec()
29196 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFileSpec'\n" in _wrap_new_SBFileSpec()
29202 lua_error(L);return 0; in _wrap_new_SBFileSpec()
29206 static int _wrap_SBFileSpec___eq(lua_State* L) { in _wrap_SBFileSpec___eq() argument
29214 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::operator ==",1,"lldb::SBFileSpec const *… in _wrap_SBFileSpec___eq()
29215 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpec::operator ==",2,"lldb::SBFileSpec const &… in _wrap_SBFileSpec___eq()
29217 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec___eq()
29222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec___eq()
29227 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpec___eq()
29232 lua_error(L); in _wrap_SBFileSpec___eq()
29237 static int _wrap_SBFileSpec_IsValid(lua_State* L) { in _wrap_SBFileSpec_IsValid() argument
29244 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::IsValid",1,"lldb::SBFileSpec const *"); in _wrap_SBFileSpec_IsValid()
29246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_IsValid()
29251 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpec_IsValid()
29256 lua_error(L); in _wrap_SBFileSpec_IsValid()
29261 static int _wrap_SBFileSpec_Exists(lua_State* L) { in _wrap_SBFileSpec_Exists() argument
29268 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::Exists",1,"lldb::SBFileSpec const *"); in _wrap_SBFileSpec_Exists()
29270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_Exists()
29275 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpec_Exists()
29280 lua_error(L); in _wrap_SBFileSpec_Exists()
29285 static int _wrap_SBFileSpec_ResolveExecutableLocation(lua_State* L) { in _wrap_SBFileSpec_ResolveExecutableLocation() argument
29292 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::ResolveExecutableLocation",1,"lldb::SBFi… in _wrap_SBFileSpec_ResolveExecutableLocation()
29294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_ResolveExecutableLocation()
29299 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpec_ResolveExecutableLocation()
29304 lua_error(L); in _wrap_SBFileSpec_ResolveExecutableLocation()
29309 static int _wrap_SBFileSpec_GetFilename(lua_State* L) { in _wrap_SBFileSpec_GetFilename() argument
29316 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetFilename",1,"lldb::SBFileSpec const *… in _wrap_SBFileSpec_GetFilename()
29318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_GetFilename()
29323 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFileSpec_GetFilename()
29328 lua_error(L); in _wrap_SBFileSpec_GetFilename()
29333 static int _wrap_SBFileSpec_GetDirectory(lua_State* L) { in _wrap_SBFileSpec_GetDirectory() argument
29340 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetDirectory",1,"lldb::SBFileSpec const … in _wrap_SBFileSpec_GetDirectory()
29342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_GetDirectory()
29347 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFileSpec_GetDirectory()
29352 lua_error(L); in _wrap_SBFileSpec_GetDirectory()
29357 static int _wrap_SBFileSpec_SetFilename(lua_State* L) { in _wrap_SBFileSpec_SetFilename() argument
29364 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SetFilename",1,"lldb::SBFileSpec *"); in _wrap_SBFileSpec_SetFilename()
29365 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::SetFilename",2,"char const *"); in _wrap_SBFileSpec_SetFilename()
29367 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_SetFilename()
29371 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFileSpec_SetFilename()
29378 lua_error(L); in _wrap_SBFileSpec_SetFilename()
29383 static int _wrap_SBFileSpec_SetDirectory(lua_State* L) { in _wrap_SBFileSpec_SetDirectory() argument
29390 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::SetDirectory",1,"lldb::SBFileSpec *"); in _wrap_SBFileSpec_SetDirectory()
29391 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::SetDirectory",2,"char const *"); in _wrap_SBFileSpec_SetDirectory()
29393 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_SetDirectory()
29397 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFileSpec_SetDirectory()
29404 lua_error(L); in _wrap_SBFileSpec_SetDirectory()
29409 static int _wrap_SBFileSpec_GetPath(lua_State* L) { in _wrap_SBFileSpec_GetPath() argument
29418 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetPath",1,"lldb::SBFileSpec const *"); in _wrap_SBFileSpec_GetPath()
29419 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::GetPath",2,"char *"); in _wrap_SBFileSpec_GetPath()
29420 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFileSpec::GetPath",3,"size_t"); in _wrap_SBFileSpec_GetPath()
29422 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_GetPath()
29426 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFileSpec_GetPath()
29427 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBFileSpec_GetPath()
29429 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFileSpec_GetPath()
29434 lua_error(L); in _wrap_SBFileSpec_GetPath()
29439 static int _wrap_SBFileSpec_ResolvePath(lua_State* L) { in _wrap_SBFileSpec_ResolvePath() argument
29448 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFileSpec::ResolvePath",1,"char const *"); in _wrap_SBFileSpec_ResolvePath()
29449 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::ResolvePath",2,"char *"); in _wrap_SBFileSpec_ResolvePath()
29450 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFileSpec::ResolvePath",3,"size_t"); in _wrap_SBFileSpec_ResolvePath()
29451 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBFileSpec_ResolvePath()
29452 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFileSpec_ResolvePath()
29453 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBFileSpec_ResolvePath()
29455 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFileSpec_ResolvePath()
29460 lua_error(L); in _wrap_SBFileSpec_ResolvePath()
29465 static int _wrap_SBFileSpec_GetDescription(lua_State* L) { in _wrap_SBFileSpec_GetDescription() argument
29473 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::GetDescription",1,"lldb::SBFileSpec cons… in _wrap_SBFileSpec_GetDescription()
29474 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpec::GetDescription",2,"lldb::SBStream &"); in _wrap_SBFileSpec_GetDescription()
29476 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_GetDescription()
29481 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBFileSpec_GetDescription()
29486 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpec_GetDescription()
29491 lua_error(L); in _wrap_SBFileSpec_GetDescription()
29496 static int _wrap_SBFileSpec_AppendPathComponent(lua_State* L) { in _wrap_SBFileSpec_AppendPathComponent() argument
29503 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::AppendPathComponent",1,"lldb::SBFileSpec… in _wrap_SBFileSpec_AppendPathComponent()
29504 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFileSpec::AppendPathComponent",2,"char const… in _wrap_SBFileSpec_AppendPathComponent()
29506 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec_AppendPathComponent()
29510 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFileSpec_AppendPathComponent()
29517 lua_error(L); in _wrap_SBFileSpec_AppendPathComponent()
29522 static int _wrap_SBFileSpec___tostring(lua_State* L) { in _wrap_SBFileSpec___tostring() argument
29529 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpec::__repr__",1,"lldb::SBFileSpec *"); in _wrap_SBFileSpec___tostring()
29531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpec___tostring()
29536 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBFileSpec___tostring()
29541 lua_error(L); in _wrap_SBFileSpec___tostring()
29550 static int _proxy__wrap_new_SBFileSpec(lua_State *L) { in _proxy__wrap_new_SBFileSpec() argument
29551 assert(lua_istable(L,1)); in _proxy__wrap_new_SBFileSpec()
29552 lua_pushcfunction(L,_wrap_new_SBFileSpec); in _proxy__wrap_new_SBFileSpec()
29553 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBFileSpec()
29554 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBFileSpec()
29555 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBFileSpec()
29608 static int _wrap_new_SBFileSpecList__SWIG_0(lua_State* L) { in _wrap_new_SBFileSpecList__SWIG_0() argument
29615 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpecList,1); SWIG_arg++; in _wrap_new_SBFileSpecList__SWIG_0()
29620 lua_error(L); in _wrap_new_SBFileSpecList__SWIG_0()
29625 static int _wrap_new_SBFileSpecList__SWIG_1(lua_State* L) { in _wrap_new_SBFileSpecList__SWIG_1() argument
29632 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::SBFileSpecList",1,"lldb::SBFileSpecL… in _wrap_new_SBFileSpecList__SWIG_1()
29634 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_new_SBFileSpecList__SWIG_1()
29639 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFileSpecList,1); SWIG_arg++; in _wrap_new_SBFileSpecList__SWIG_1()
29644 lua_error(L); in _wrap_new_SBFileSpecList__SWIG_1()
29649 static int _wrap_new_SBFileSpecList(lua_State* L) { in _wrap_new_SBFileSpecList() argument
29655 argc = lua_gettop(L); in _wrap_new_SBFileSpecList()
29657 return _wrap_new_SBFileSpecList__SWIG_0(L); in _wrap_new_SBFileSpecList()
29663 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBFileSpecList()
29670 return _wrap_new_SBFileSpecList__SWIG_1(L); in _wrap_new_SBFileSpecList()
29674 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFileSpecList'\n" in _wrap_new_SBFileSpecList()
29678 lua_error(L);return 0; in _wrap_new_SBFileSpecList()
29682 static int _wrap_SBFileSpecList_GetSize(lua_State* L) { in _wrap_SBFileSpecList_GetSize() argument
29689 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::GetSize",1,"lldb::SBFileSpecList con… in _wrap_SBFileSpecList_GetSize()
29691 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_GetSize()
29696 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFileSpecList_GetSize()
29701 lua_error(L); in _wrap_SBFileSpecList_GetSize()
29706 static int _wrap_SBFileSpecList_GetDescription(lua_State* L) { in _wrap_SBFileSpecList_GetDescription() argument
29714 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::GetDescription",1,"lldb::SBFileSpecL… in _wrap_SBFileSpecList_GetDescription()
29715 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::GetDescription",2,"lldb::SBStream &"… in _wrap_SBFileSpecList_GetDescription()
29717 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_GetDescription()
29722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBFileSpecList_GetDescription()
29727 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpecList_GetDescription()
29732 lua_error(L); in _wrap_SBFileSpecList_GetDescription()
29737 static int _wrap_SBFileSpecList_Append(lua_State* L) { in _wrap_SBFileSpecList_Append() argument
29744 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::Append",1,"lldb::SBFileSpecList *"); in _wrap_SBFileSpecList_Append()
29745 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::Append",2,"lldb::SBFileSpec const &"… in _wrap_SBFileSpecList_Append()
29747 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_Append()
29752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpecList_Append()
29762 lua_error(L); in _wrap_SBFileSpecList_Append()
29767 static int _wrap_SBFileSpecList_AppendIfUnique(lua_State* L) { in _wrap_SBFileSpecList_AppendIfUnique() argument
29775 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::AppendIfUnique",1,"lldb::SBFileSpecL… in _wrap_SBFileSpecList_AppendIfUnique()
29776 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::AppendIfUnique",2,"lldb::SBFileSpec … in _wrap_SBFileSpecList_AppendIfUnique()
29778 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_AppendIfUnique()
29783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpecList_AppendIfUnique()
29788 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFileSpecList_AppendIfUnique()
29793 lua_error(L); in _wrap_SBFileSpecList_AppendIfUnique()
29798 static int _wrap_SBFileSpecList_Clear(lua_State* L) { in _wrap_SBFileSpecList_Clear() argument
29804 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::Clear",1,"lldb::SBFileSpecList *"); in _wrap_SBFileSpecList_Clear()
29806 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_Clear()
29816 lua_error(L); in _wrap_SBFileSpecList_Clear()
29821 static int _wrap_SBFileSpecList_FindFileIndex(lua_State* L) { in _wrap_SBFileSpecList_FindFileIndex() argument
29831 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",1,"lldb::SBFileSpecLi… in _wrap_SBFileSpecList_FindFileIndex()
29832 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",2,"uint32_t"); in _wrap_SBFileSpecList_FindFileIndex()
29833 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",3,"lldb::SBFileSpec c… in _wrap_SBFileSpecList_FindFileIndex()
29834 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFileSpecList::FindFileIndex",4,"bool"); in _wrap_SBFileSpecList_FindFileIndex()
29836 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_FindFileIndex()
29840 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBFileSpecList_FindFileIndex()
29842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBFileSpecList_FindFileIndex()
29846 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBFileSpecList_FindFileIndex()
29848 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFileSpecList_FindFileIndex()
29853 lua_error(L); in _wrap_SBFileSpecList_FindFileIndex()
29858 static int _wrap_SBFileSpecList_GetFileSpecAtIndex(lua_State* L) { in _wrap_SBFileSpecList_GetFileSpecAtIndex() argument
29866 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::GetFileSpecAtIndex",1,"lldb::SBFileS… in _wrap_SBFileSpecList_GetFileSpecAtIndex()
29867 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFileSpecList::GetFileSpecAtIndex",2,"uint32_t"); in _wrap_SBFileSpecList_GetFileSpecAtIndex()
29869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList_GetFileSpecAtIndex()
29873 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBFileSpecList_GetFileSpecAtIndex()
29877 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBFileSpecList_GetFileSpecAtIndex()
29883 lua_error(L); in _wrap_SBFileSpecList_GetFileSpecAtIndex()
29888 static int _wrap_SBFileSpecList___tostring(lua_State* L) { in _wrap_SBFileSpecList___tostring() argument
29895 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFileSpecList::__repr__",1,"lldb::SBFileSpecList *"… in _wrap_SBFileSpecList___tostring()
29897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBFileSpecList___tostring()
29902 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBFileSpecList___tostring()
29907 lua_error(L); in _wrap_SBFileSpecList___tostring()
29916 static int _proxy__wrap_new_SBFileSpecList(lua_State *L) { in _proxy__wrap_new_SBFileSpecList() argument
29917 assert(lua_istable(L,1)); in _proxy__wrap_new_SBFileSpecList()
29918 lua_pushcfunction(L,_wrap_new_SBFileSpecList); in _proxy__wrap_new_SBFileSpecList()
29919 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBFileSpecList()
29920 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBFileSpecList()
29921 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBFileSpecList()
29968 static int _wrap_new_SBFormat__SWIG_0(lua_State* L) { in _wrap_new_SBFormat__SWIG_0() argument
29975 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFormat,1); SWIG_arg++; in _wrap_new_SBFormat__SWIG_0()
29980 lua_error(L); in _wrap_new_SBFormat__SWIG_0()
29985 static int _wrap_new_SBFormat__SWIG_1(lua_State* L) { in _wrap_new_SBFormat__SWIG_1() argument
29993 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBFormat::SBFormat",1,"char const *"); in _wrap_new_SBFormat__SWIG_1()
29994 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFormat::SBFormat",2,"lldb::SBError &"); in _wrap_new_SBFormat__SWIG_1()
29995 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBFormat__SWIG_1()
29997 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_new_SBFormat__SWIG_1()
30002 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFormat,1); SWIG_arg++; in _wrap_new_SBFormat__SWIG_1()
30007 lua_error(L); in _wrap_new_SBFormat__SWIG_1()
30012 static int _wrap_new_SBFormat__SWIG_2(lua_State* L) { in _wrap_new_SBFormat__SWIG_2() argument
30019 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFormat::SBFormat",1,"lldb::SBFormat const &"); in _wrap_new_SBFormat__SWIG_2()
30021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFormat,0))){ in _wrap_new_SBFormat__SWIG_2()
30026 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFormat,1); SWIG_arg++; in _wrap_new_SBFormat__SWIG_2()
30031 lua_error(L); in _wrap_new_SBFormat__SWIG_2()
30036 static int _wrap_new_SBFormat(lua_State* L) { in _wrap_new_SBFormat() argument
30042 argc = lua_gettop(L); in _wrap_new_SBFormat()
30044 return _wrap_new_SBFormat__SWIG_0(L); in _wrap_new_SBFormat()
30050 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBFormat()
30057 return _wrap_new_SBFormat__SWIG_2(L); in _wrap_new_SBFormat()
30063 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBFormat()
30068 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBFormat()
30075 return _wrap_new_SBFormat__SWIG_1(L); in _wrap_new_SBFormat()
30080 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFormat'\n" in _wrap_new_SBFormat()
30085 lua_error(L);return 0; in _wrap_new_SBFormat()
30093 static int _proxy__wrap_new_SBFormat(lua_State *L) { in _proxy__wrap_new_SBFormat() argument
30094 assert(lua_istable(L,1)); in _proxy__wrap_new_SBFormat()
30095 lua_pushcfunction(L,_wrap_new_SBFormat); in _proxy__wrap_new_SBFormat()
30096 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBFormat()
30097 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBFormat()
30098 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBFormat()
30136 static int _wrap_new_SBFrame__SWIG_0(lua_State* L) { in _wrap_new_SBFrame__SWIG_0() argument
30143 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_new_SBFrame__SWIG_0()
30148 lua_error(L); in _wrap_new_SBFrame__SWIG_0()
30153 static int _wrap_new_SBFrame__SWIG_1(lua_State* L) { in _wrap_new_SBFrame__SWIG_1() argument
30160 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFrame::SBFrame",1,"lldb::SBFrame const &"); in _wrap_new_SBFrame__SWIG_1()
30162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_new_SBFrame__SWIG_1()
30167 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_new_SBFrame__SWIG_1()
30172 lua_error(L); in _wrap_new_SBFrame__SWIG_1()
30177 static int _wrap_new_SBFrame(lua_State* L) { in _wrap_new_SBFrame() argument
30183 argc = lua_gettop(L); in _wrap_new_SBFrame()
30185 return _wrap_new_SBFrame__SWIG_0(L); in _wrap_new_SBFrame()
30191 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBFrame()
30198 return _wrap_new_SBFrame__SWIG_1(L); in _wrap_new_SBFrame()
30202 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFrame'\n" in _wrap_new_SBFrame()
30206 lua_error(L);return 0; in _wrap_new_SBFrame()
30210 static int _wrap_SBFrame_IsEqual(lua_State* L) { in _wrap_SBFrame_IsEqual() argument
30218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsEqual",1,"lldb::SBFrame const *"); in _wrap_SBFrame_IsEqual()
30219 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::IsEqual",2,"lldb::SBFrame const &"); in _wrap_SBFrame_IsEqual()
30221 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsEqual()
30226 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsEqual()
30231 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_IsEqual()
30236 lua_error(L); in _wrap_SBFrame_IsEqual()
30241 static int _wrap_SBFrame_IsValid(lua_State* L) { in _wrap_SBFrame_IsValid() argument
30248 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsValid",1,"lldb::SBFrame const *"); in _wrap_SBFrame_IsValid()
30250 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsValid()
30255 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_IsValid()
30260 lua_error(L); in _wrap_SBFrame_IsValid()
30265 static int _wrap_SBFrame_GetFrameID(lua_State* L) { in _wrap_SBFrame_GetFrameID() argument
30272 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFrameID",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetFrameID()
30274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetFrameID()
30279 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFrame_GetFrameID()
30284 lua_error(L); in _wrap_SBFrame_GetFrameID()
30289 static int _wrap_SBFrame_GetCFA(lua_State* L) { in _wrap_SBFrame_GetCFA() argument
30296 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetCFA",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetCFA()
30298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetCFA()
30303 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFrame_GetCFA()
30308 lua_error(L); in _wrap_SBFrame_GetCFA()
30313 static int _wrap_SBFrame_GetPC(lua_State* L) { in _wrap_SBFrame_GetPC() argument
30320 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetPC",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetPC()
30322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetPC()
30327 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFrame_GetPC()
30332 lua_error(L); in _wrap_SBFrame_GetPC()
30337 static int _wrap_SBFrame_SetPC(lua_State* L) { in _wrap_SBFrame_SetPC() argument
30345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::SetPC",1,"lldb::SBFrame *"); in _wrap_SBFrame_SetPC()
30346 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFrame::SetPC",2,"lldb::addr_t"); in _wrap_SBFrame_SetPC()
30348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_SetPC()
30352 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBFrame_SetPC()
30354 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_SetPC()
30359 lua_error(L); in _wrap_SBFrame_SetPC()
30364 static int _wrap_SBFrame_GetSP(lua_State* L) { in _wrap_SBFrame_GetSP() argument
30371 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetSP",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetSP()
30373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetSP()
30378 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFrame_GetSP()
30383 lua_error(L); in _wrap_SBFrame_GetSP()
30388 static int _wrap_SBFrame_GetFP(lua_State* L) { in _wrap_SBFrame_GetFP() argument
30395 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFP",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetFP()
30397 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetFP()
30402 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFrame_GetFP()
30407 lua_error(L); in _wrap_SBFrame_GetFP()
30412 static int _wrap_SBFrame_GetPCAddress(lua_State* L) { in _wrap_SBFrame_GetPCAddress() argument
30419 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetPCAddress",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetPCAddress()
30421 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetPCAddress()
30428 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBFrame_GetPCAddress()
30434 lua_error(L); in _wrap_SBFrame_GetPCAddress()
30439 static int _wrap_SBFrame_GetSymbolContext(lua_State* L) { in _wrap_SBFrame_GetSymbolContext() argument
30447 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetSymbolContext",1,"lldb::SBFrame const *"… in _wrap_SBFrame_GetSymbolContext()
30448 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFrame::GetSymbolContext",2,"uint32_t"); in _wrap_SBFrame_GetSymbolContext()
30450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetSymbolContext()
30454 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBFrame_GetSymbolContext()
30458 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_SBFrame_GetSymbolContext()
30464 lua_error(L); in _wrap_SBFrame_GetSymbolContext()
30469 static int _wrap_SBFrame_GetModule(lua_State* L) { in _wrap_SBFrame_GetModule() argument
30476 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetModule",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetModule()
30478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetModule()
30485 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBFrame_GetModule()
30491 lua_error(L); in _wrap_SBFrame_GetModule()
30496 static int _wrap_SBFrame_GetCompileUnit(lua_State* L) { in _wrap_SBFrame_GetCompileUnit() argument
30503 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetCompileUnit",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetCompileUnit()
30505 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetCompileUnit()
30512 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++; in _wrap_SBFrame_GetCompileUnit()
30518 lua_error(L); in _wrap_SBFrame_GetCompileUnit()
30523 static int _wrap_SBFrame_GetFunction(lua_State* L) { in _wrap_SBFrame_GetFunction() argument
30530 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFunction",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetFunction()
30532 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetFunction()
30539 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++; in _wrap_SBFrame_GetFunction()
30545 lua_error(L); in _wrap_SBFrame_GetFunction()
30550 static int _wrap_SBFrame_GetSymbol(lua_State* L) { in _wrap_SBFrame_GetSymbol() argument
30557 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetSymbol",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetSymbol()
30559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetSymbol()
30566 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_SBFrame_GetSymbol()
30572 lua_error(L); in _wrap_SBFrame_GetSymbol()
30577 static int _wrap_SBFrame_GetBlock(lua_State* L) { in _wrap_SBFrame_GetBlock() argument
30584 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetBlock",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetBlock()
30586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetBlock()
30593 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBFrame_GetBlock()
30599 lua_error(L); in _wrap_SBFrame_GetBlock()
30604 static int _wrap_SBFrame_GetFunctionName__SWIG_0(lua_State* L) { in _wrap_SBFrame_GetFunctionName__SWIG_0() argument
30611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFunctionName",1,"lldb::SBFrame *"); in _wrap_SBFrame_GetFunctionName__SWIG_0()
30613 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetFunctionName__SWIG_0()
30618 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFrame_GetFunctionName__SWIG_0()
30623 lua_error(L); in _wrap_SBFrame_GetFunctionName__SWIG_0()
30628 static int _wrap_SBFrame_GetDisplayFunctionName(lua_State* L) { in _wrap_SBFrame_GetDisplayFunctionName() argument
30635 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetDisplayFunctionName",1,"lldb::SBFrame *"… in _wrap_SBFrame_GetDisplayFunctionName()
30637 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetDisplayFunctionName()
30642 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFrame_GetDisplayFunctionName()
30647 lua_error(L); in _wrap_SBFrame_GetDisplayFunctionName()
30652 static int _wrap_SBFrame_GetFunctionName__SWIG_1(lua_State* L) { in _wrap_SBFrame_GetFunctionName__SWIG_1() argument
30659 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFunctionName",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetFunctionName__SWIG_1()
30661 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetFunctionName__SWIG_1()
30666 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFrame_GetFunctionName__SWIG_1()
30671 lua_error(L); in _wrap_SBFrame_GetFunctionName__SWIG_1()
30676 static int _wrap_SBFrame_GetFunctionName(lua_State* L) { in _wrap_SBFrame_GetFunctionName() argument
30682 argc = lua_gettop(L); in _wrap_SBFrame_GetFunctionName()
30687 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetFunctionName()
30694 return _wrap_SBFrame_GetFunctionName__SWIG_0(L); in _wrap_SBFrame_GetFunctionName()
30701 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetFunctionName()
30708 return _wrap_SBFrame_GetFunctionName__SWIG_1(L); in _wrap_SBFrame_GetFunctionName()
30712 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_GetFunctionName'\n" in _wrap_SBFrame_GetFunctionName()
30716 lua_error(L);return 0; in _wrap_SBFrame_GetFunctionName()
30720 static int _wrap_SBFrame_GuessLanguage(lua_State* L) { in _wrap_SBFrame_GuessLanguage() argument
30727 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GuessLanguage",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GuessLanguage()
30729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GuessLanguage()
30734 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFrame_GuessLanguage()
30739 lua_error(L); in _wrap_SBFrame_GuessLanguage()
30744 static int _wrap_SBFrame_IsInlined__SWIG_0(lua_State* L) { in _wrap_SBFrame_IsInlined__SWIG_0() argument
30751 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsInlined",1,"lldb::SBFrame *"); in _wrap_SBFrame_IsInlined__SWIG_0()
30753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsInlined__SWIG_0()
30758 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_IsInlined__SWIG_0()
30763 lua_error(L); in _wrap_SBFrame_IsInlined__SWIG_0()
30768 static int _wrap_SBFrame_IsInlined__SWIG_1(lua_State* L) { in _wrap_SBFrame_IsInlined__SWIG_1() argument
30775 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsInlined",1,"lldb::SBFrame const *"); in _wrap_SBFrame_IsInlined__SWIG_1()
30777 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsInlined__SWIG_1()
30782 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_IsInlined__SWIG_1()
30787 lua_error(L); in _wrap_SBFrame_IsInlined__SWIG_1()
30792 static int _wrap_SBFrame_IsInlined(lua_State* L) { in _wrap_SBFrame_IsInlined() argument
30798 argc = lua_gettop(L); in _wrap_SBFrame_IsInlined()
30803 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_IsInlined()
30810 return _wrap_SBFrame_IsInlined__SWIG_0(L); in _wrap_SBFrame_IsInlined()
30817 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_IsInlined()
30824 return _wrap_SBFrame_IsInlined__SWIG_1(L); in _wrap_SBFrame_IsInlined()
30828 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_IsInlined'\n" in _wrap_SBFrame_IsInlined()
30832 lua_error(L);return 0; in _wrap_SBFrame_IsInlined()
30836 static int _wrap_SBFrame_IsArtificial__SWIG_0(lua_State* L) { in _wrap_SBFrame_IsArtificial__SWIG_0() argument
30843 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsArtificial",1,"lldb::SBFrame *"); in _wrap_SBFrame_IsArtificial__SWIG_0()
30845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsArtificial__SWIG_0()
30850 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_IsArtificial__SWIG_0()
30855 lua_error(L); in _wrap_SBFrame_IsArtificial__SWIG_0()
30860 static int _wrap_SBFrame_IsArtificial__SWIG_1(lua_State* L) { in _wrap_SBFrame_IsArtificial__SWIG_1() argument
30867 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::IsArtificial",1,"lldb::SBFrame const *"); in _wrap_SBFrame_IsArtificial__SWIG_1()
30869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_IsArtificial__SWIG_1()
30874 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_IsArtificial__SWIG_1()
30879 lua_error(L); in _wrap_SBFrame_IsArtificial__SWIG_1()
30884 static int _wrap_SBFrame_IsArtificial(lua_State* L) { in _wrap_SBFrame_IsArtificial() argument
30890 argc = lua_gettop(L); in _wrap_SBFrame_IsArtificial()
30895 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_IsArtificial()
30902 return _wrap_SBFrame_IsArtificial__SWIG_0(L); in _wrap_SBFrame_IsArtificial()
30909 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_IsArtificial()
30916 return _wrap_SBFrame_IsArtificial__SWIG_1(L); in _wrap_SBFrame_IsArtificial()
30920 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_IsArtificial'\n" in _wrap_SBFrame_IsArtificial()
30924 lua_error(L);return 0; in _wrap_SBFrame_IsArtificial()
30928 static int _wrap_SBFrame_EvaluateExpression__SWIG_0(lua_State* L) { in _wrap_SBFrame_EvaluateExpression__SWIG_0() argument
30936 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *"); in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30937 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *"); in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30943 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30947 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30953 lua_error(L); in _wrap_SBFrame_EvaluateExpression__SWIG_0()
30958 static int _wrap_SBFrame_EvaluateExpression__SWIG_1(lua_State* L) { in _wrap_SBFrame_EvaluateExpression__SWIG_1() argument
30967 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *"); in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30968 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *"); in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30969 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",3,"lldb::DynamicValueTyp… in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30971 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30975 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30976 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3); in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30980 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30986 lua_error(L); in _wrap_SBFrame_EvaluateExpression__SWIG_1()
30991 static int _wrap_SBFrame_EvaluateExpression__SWIG_2(lua_State* L) { in _wrap_SBFrame_EvaluateExpression__SWIG_2() argument
31001 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *"); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31002 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *"); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31003 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",3,"lldb::DynamicValueTyp… in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31004 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",4,"bool"); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31006 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31010 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31011 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31012 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31016 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31022 lua_error(L); in _wrap_SBFrame_EvaluateExpression__SWIG_2()
31027 static int _wrap_SBFrame_EvaluateExpression__SWIG_3(lua_State* L) { in _wrap_SBFrame_EvaluateExpression__SWIG_3() argument
31036 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",1,"lldb::SBFrame *"); in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31037 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",2,"char const *"); in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31038 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBFrame::EvaluateExpression",3,"lldb::SBExpressionOp… in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31040 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31044 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31053 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31059 lua_error(L); in _wrap_SBFrame_EvaluateExpression__SWIG_3()
31064 static int _wrap_SBFrame_EvaluateExpression(lua_State* L) { in _wrap_SBFrame_EvaluateExpression() argument
31070 argc = lua_gettop(L); in _wrap_SBFrame_EvaluateExpression()
31075 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_EvaluateExpression()
31083 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_EvaluateExpression()
31086 return _wrap_SBFrame_EvaluateExpression__SWIG_0(L); in _wrap_SBFrame_EvaluateExpression()
31094 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_EvaluateExpression()
31102 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_EvaluateExpression()
31107 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_EvaluateExpression()
31114 return _wrap_SBFrame_EvaluateExpression__SWIG_3(L); in _wrap_SBFrame_EvaluateExpression()
31123 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_EvaluateExpression()
31131 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_EvaluateExpression()
31135 _v = lua_isnumber(L,argv[2]); in _wrap_SBFrame_EvaluateExpression()
31138 return _wrap_SBFrame_EvaluateExpression__SWIG_1(L); in _wrap_SBFrame_EvaluateExpression()
31147 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_EvaluateExpression()
31155 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_EvaluateExpression()
31159 _v = lua_isnumber(L,argv[2]); in _wrap_SBFrame_EvaluateExpression()
31163 _v = lua_isboolean(L,argv[3]); in _wrap_SBFrame_EvaluateExpression()
31166 return _wrap_SBFrame_EvaluateExpression__SWIG_2(L); in _wrap_SBFrame_EvaluateExpression()
31173 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_EvaluateExpression'\n" in _wrap_SBFrame_EvaluateExpression()
31179 lua_error(L);return 0; in _wrap_SBFrame_EvaluateExpression()
31183 static int _wrap_SBFrame_GetFrameBlock(lua_State* L) { in _wrap_SBFrame_GetFrameBlock() argument
31190 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetFrameBlock",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetFrameBlock()
31192 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetFrameBlock()
31199 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBFrame_GetFrameBlock()
31205 lua_error(L); in _wrap_SBFrame_GetFrameBlock()
31210 static int _wrap_SBFrame_GetLineEntry(lua_State* L) { in _wrap_SBFrame_GetLineEntry() argument
31217 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetLineEntry",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetLineEntry()
31219 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetLineEntry()
31226 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++; in _wrap_SBFrame_GetLineEntry()
31232 lua_error(L); in _wrap_SBFrame_GetLineEntry()
31237 static int _wrap_SBFrame_GetThread(lua_State* L) { in _wrap_SBFrame_GetThread() argument
31244 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetThread",1,"lldb::SBFrame const *"); in _wrap_SBFrame_GetThread()
31246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetThread()
31253 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBFrame_GetThread()
31259 lua_error(L); in _wrap_SBFrame_GetThread()
31264 static int _wrap_SBFrame_Disassemble(lua_State* L) { in _wrap_SBFrame_Disassemble() argument
31271 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::Disassemble",1,"lldb::SBFrame const *"); in _wrap_SBFrame_Disassemble()
31273 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_Disassemble()
31278 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFrame_Disassemble()
31283 lua_error(L); in _wrap_SBFrame_Disassemble()
31288 static int _wrap_SBFrame_Clear(lua_State* L) { in _wrap_SBFrame_Clear() argument
31294 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::Clear",1,"lldb::SBFrame *"); in _wrap_SBFrame_Clear()
31296 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_Clear()
31306 lua_error(L); in _wrap_SBFrame_Clear()
31311 static int _wrap_SBFrame___eq(lua_State* L) { in _wrap_SBFrame___eq() argument
31319 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::operator ==",1,"lldb::SBFrame const *"); in _wrap_SBFrame___eq()
31320 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::operator ==",2,"lldb::SBFrame const &"); in _wrap_SBFrame___eq()
31322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame___eq()
31327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame___eq()
31332 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame___eq()
31337 lua_error(L); in _wrap_SBFrame___eq()
31342 static int _wrap_SBFrame_GetVariables__SWIG_0(lua_State* L) { in _wrap_SBFrame_GetVariables__SWIG_0() argument
31353 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetVariables",1,"lldb::SBFrame *"); in _wrap_SBFrame_GetVariables__SWIG_0()
31354 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBFrame::GetVariables",2,"bool"); in _wrap_SBFrame_GetVariables__SWIG_0()
31355 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBFrame::GetVariables",3,"bool"); in _wrap_SBFrame_GetVariables__SWIG_0()
31356 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFrame::GetVariables",4,"bool"); in _wrap_SBFrame_GetVariables__SWIG_0()
31357 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBFrame::GetVariables",5,"bool"); in _wrap_SBFrame_GetVariables__SWIG_0()
31359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetVariables__SWIG_0()
31363 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBFrame_GetVariables__SWIG_0()
31364 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBFrame_GetVariables__SWIG_0()
31365 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBFrame_GetVariables__SWIG_0()
31366 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBFrame_GetVariables__SWIG_0()
31370 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBFrame_GetVariables__SWIG_0()
31376 lua_error(L); in _wrap_SBFrame_GetVariables__SWIG_0()
31381 static int _wrap_SBFrame_GetVariables__SWIG_1(lua_State* L) { in _wrap_SBFrame_GetVariables__SWIG_1() argument
31393 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetVariables",1,"lldb::SBFrame *"); in _wrap_SBFrame_GetVariables__SWIG_1()
31394 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBFrame::GetVariables",2,"bool"); in _wrap_SBFrame_GetVariables__SWIG_1()
31395 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBFrame::GetVariables",3,"bool"); in _wrap_SBFrame_GetVariables__SWIG_1()
31396 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBFrame::GetVariables",4,"bool"); in _wrap_SBFrame_GetVariables__SWIG_1()
31397 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBFrame::GetVariables",5,"bool"); in _wrap_SBFrame_GetVariables__SWIG_1()
31398 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBFrame::GetVariables",6,"lldb::DynamicValueType"); in _wrap_SBFrame_GetVariables__SWIG_1()
31400 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetVariables__SWIG_1()
31404 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBFrame_GetVariables__SWIG_1()
31405 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBFrame_GetVariables__SWIG_1()
31406 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBFrame_GetVariables__SWIG_1()
31407 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBFrame_GetVariables__SWIG_1()
31408 arg6 = (lldb::DynamicValueType)lua_tointeger(L, 6); in _wrap_SBFrame_GetVariables__SWIG_1()
31412 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBFrame_GetVariables__SWIG_1()
31418 lua_error(L); in _wrap_SBFrame_GetVariables__SWIG_1()
31423 static int _wrap_SBFrame_GetVariables__SWIG_2(lua_State* L) { in _wrap_SBFrame_GetVariables__SWIG_2() argument
31431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetVariables",1,"lldb::SBFrame *"); in _wrap_SBFrame_GetVariables__SWIG_2()
31432 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::GetVariables",2,"lldb::SBVariablesOptions c… in _wrap_SBFrame_GetVariables__SWIG_2()
31434 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetVariables__SWIG_2()
31439 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBFrame_GetVariables__SWIG_2()
31446 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBFrame_GetVariables__SWIG_2()
31452 lua_error(L); in _wrap_SBFrame_GetVariables__SWIG_2()
31457 static int _wrap_SBFrame_GetVariables(lua_State* L) { in _wrap_SBFrame_GetVariables() argument
31463 argc = lua_gettop(L); in _wrap_SBFrame_GetVariables()
31468 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetVariables()
31477 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetVariables()
31484 return _wrap_SBFrame_GetVariables__SWIG_2(L); in _wrap_SBFrame_GetVariables()
31492 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetVariables()
31500 _v = lua_isboolean(L,argv[1]); in _wrap_SBFrame_GetVariables()
31504 _v = lua_isboolean(L,argv[2]); in _wrap_SBFrame_GetVariables()
31508 _v = lua_isboolean(L,argv[3]); in _wrap_SBFrame_GetVariables()
31512 _v = lua_isboolean(L,argv[4]); in _wrap_SBFrame_GetVariables()
31515 return _wrap_SBFrame_GetVariables__SWIG_0(L); in _wrap_SBFrame_GetVariables()
31526 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetVariables()
31534 _v = lua_isboolean(L,argv[1]); in _wrap_SBFrame_GetVariables()
31538 _v = lua_isboolean(L,argv[2]); in _wrap_SBFrame_GetVariables()
31542 _v = lua_isboolean(L,argv[3]); in _wrap_SBFrame_GetVariables()
31546 _v = lua_isboolean(L,argv[4]); in _wrap_SBFrame_GetVariables()
31550 _v = lua_isnumber(L,argv[5]); in _wrap_SBFrame_GetVariables()
31553 return _wrap_SBFrame_GetVariables__SWIG_1(L); in _wrap_SBFrame_GetVariables()
31562 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_GetVariables'\n" in _wrap_SBFrame_GetVariables()
31567 lua_error(L);return 0; in _wrap_SBFrame_GetVariables()
31571 static int _wrap_SBFrame_GetRegisters(lua_State* L) { in _wrap_SBFrame_GetRegisters() argument
31578 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetRegisters",1,"lldb::SBFrame *"); in _wrap_SBFrame_GetRegisters()
31580 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetRegisters()
31587 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBFrame_GetRegisters()
31593 lua_error(L); in _wrap_SBFrame_GetRegisters()
31598 static int _wrap_SBFrame_FindRegister(lua_State* L) { in _wrap_SBFrame_FindRegister() argument
31606 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindRegister",1,"lldb::SBFrame *"); in _wrap_SBFrame_FindRegister()
31607 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindRegister",2,"char const *"); in _wrap_SBFrame_FindRegister()
31609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_FindRegister()
31613 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_FindRegister()
31617 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_FindRegister()
31623 lua_error(L); in _wrap_SBFrame_FindRegister()
31628 static int _wrap_SBFrame_FindVariable__SWIG_0(lua_State* L) { in _wrap_SBFrame_FindVariable__SWIG_0() argument
31636 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindVariable",1,"lldb::SBFrame *"); in _wrap_SBFrame_FindVariable__SWIG_0()
31637 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindVariable",2,"char const *"); in _wrap_SBFrame_FindVariable__SWIG_0()
31639 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_FindVariable__SWIG_0()
31643 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_FindVariable__SWIG_0()
31647 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_FindVariable__SWIG_0()
31653 lua_error(L); in _wrap_SBFrame_FindVariable__SWIG_0()
31658 static int _wrap_SBFrame_FindVariable__SWIG_1(lua_State* L) { in _wrap_SBFrame_FindVariable__SWIG_1() argument
31667 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindVariable",1,"lldb::SBFrame *"); in _wrap_SBFrame_FindVariable__SWIG_1()
31668 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindVariable",2,"char const *"); in _wrap_SBFrame_FindVariable__SWIG_1()
31669 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::FindVariable",3,"lldb::DynamicValueType"); in _wrap_SBFrame_FindVariable__SWIG_1()
31671 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_FindVariable__SWIG_1()
31675 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_FindVariable__SWIG_1()
31676 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3); in _wrap_SBFrame_FindVariable__SWIG_1()
31680 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_FindVariable__SWIG_1()
31686 lua_error(L); in _wrap_SBFrame_FindVariable__SWIG_1()
31691 static int _wrap_SBFrame_FindVariable(lua_State* L) { in _wrap_SBFrame_FindVariable() argument
31697 argc = lua_gettop(L); in _wrap_SBFrame_FindVariable()
31702 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_FindVariable()
31710 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_FindVariable()
31713 return _wrap_SBFrame_FindVariable__SWIG_0(L); in _wrap_SBFrame_FindVariable()
31721 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_FindVariable()
31729 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_FindVariable()
31733 _v = lua_isnumber(L,argv[2]); in _wrap_SBFrame_FindVariable()
31736 return _wrap_SBFrame_FindVariable__SWIG_1(L); in _wrap_SBFrame_FindVariable()
31742 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_FindVariable'\n" in _wrap_SBFrame_FindVariable()
31746 lua_error(L);return 0; in _wrap_SBFrame_FindVariable()
31750 static int _wrap_SBFrame_GetValueForVariablePath__SWIG_0(lua_State* L) { in _wrap_SBFrame_GetValueForVariablePath__SWIG_0() argument
31759 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",1,"lldb::SBFrame *… in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31760 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",2,"char cons… in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31761 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",3,"lldb::DynamicVal… in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31763 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31767 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31768 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3); in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31772 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31778 lua_error(L); in _wrap_SBFrame_GetValueForVariablePath__SWIG_0()
31783 static int _wrap_SBFrame_GetValueForVariablePath__SWIG_1(lua_State* L) { in _wrap_SBFrame_GetValueForVariablePath__SWIG_1() argument
31791 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",1,"lldb::SBFrame *… in _wrap_SBFrame_GetValueForVariablePath__SWIG_1()
31792 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::GetValueForVariablePath",2,"char cons… in _wrap_SBFrame_GetValueForVariablePath__SWIG_1()
31794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetValueForVariablePath__SWIG_1()
31798 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_GetValueForVariablePath__SWIG_1()
31802 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_GetValueForVariablePath__SWIG_1()
31808 lua_error(L); in _wrap_SBFrame_GetValueForVariablePath__SWIG_1()
31813 static int _wrap_SBFrame_GetValueForVariablePath(lua_State* L) { in _wrap_SBFrame_GetValueForVariablePath() argument
31819 argc = lua_gettop(L); in _wrap_SBFrame_GetValueForVariablePath()
31824 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetValueForVariablePath()
31832 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_GetValueForVariablePath()
31835 return _wrap_SBFrame_GetValueForVariablePath__SWIG_1(L); in _wrap_SBFrame_GetValueForVariablePath()
31843 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_GetValueForVariablePath()
31851 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_GetValueForVariablePath()
31855 _v = lua_isnumber(L,argv[2]); in _wrap_SBFrame_GetValueForVariablePath()
31858 return _wrap_SBFrame_GetValueForVariablePath__SWIG_0(L); in _wrap_SBFrame_GetValueForVariablePath()
31864 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_GetValueForVariablePath… in _wrap_SBFrame_GetValueForVariablePath()
31868 lua_error(L);return 0; in _wrap_SBFrame_GetValueForVariablePath()
31872 static int _wrap_SBFrame_FindValue__SWIG_0(lua_State* L) { in _wrap_SBFrame_FindValue__SWIG_0() argument
31881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindValue",1,"lldb::SBFrame *"); in _wrap_SBFrame_FindValue__SWIG_0()
31882 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindValue",2,"char const *"); in _wrap_SBFrame_FindValue__SWIG_0()
31883 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::FindValue",3,"lldb::ValueType"); in _wrap_SBFrame_FindValue__SWIG_0()
31885 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_FindValue__SWIG_0()
31889 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_FindValue__SWIG_0()
31890 arg3 = (lldb::ValueType)lua_tointeger(L, 3); in _wrap_SBFrame_FindValue__SWIG_0()
31894 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_FindValue__SWIG_0()
31900 lua_error(L); in _wrap_SBFrame_FindValue__SWIG_0()
31905 static int _wrap_SBFrame_FindValue__SWIG_1(lua_State* L) { in _wrap_SBFrame_FindValue__SWIG_1() argument
31915 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::FindValue",1,"lldb::SBFrame *"); in _wrap_SBFrame_FindValue__SWIG_1()
31916 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBFrame::FindValue",2,"char const *"); in _wrap_SBFrame_FindValue__SWIG_1()
31917 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBFrame::FindValue",3,"lldb::ValueType"); in _wrap_SBFrame_FindValue__SWIG_1()
31918 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBFrame::FindValue",4,"lldb::DynamicValueType"); in _wrap_SBFrame_FindValue__SWIG_1()
31920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_FindValue__SWIG_1()
31924 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBFrame_FindValue__SWIG_1()
31925 arg3 = (lldb::ValueType)lua_tointeger(L, 3); in _wrap_SBFrame_FindValue__SWIG_1()
31926 arg4 = (lldb::DynamicValueType)lua_tointeger(L, 4); in _wrap_SBFrame_FindValue__SWIG_1()
31930 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBFrame_FindValue__SWIG_1()
31936 lua_error(L); in _wrap_SBFrame_FindValue__SWIG_1()
31941 static int _wrap_SBFrame_FindValue(lua_State* L) { in _wrap_SBFrame_FindValue() argument
31947 argc = lua_gettop(L); in _wrap_SBFrame_FindValue()
31952 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_FindValue()
31960 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_FindValue()
31964 _v = lua_isnumber(L,argv[2]); in _wrap_SBFrame_FindValue()
31967 return _wrap_SBFrame_FindValue__SWIG_0(L); in _wrap_SBFrame_FindValue()
31976 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFrame_FindValue()
31984 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBFrame_FindValue()
31988 _v = lua_isnumber(L,argv[2]); in _wrap_SBFrame_FindValue()
31992 _v = lua_isnumber(L,argv[3]); in _wrap_SBFrame_FindValue()
31995 return _wrap_SBFrame_FindValue__SWIG_1(L); in _wrap_SBFrame_FindValue()
32002 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFrame_FindValue'\n" in _wrap_SBFrame_FindValue()
32006 lua_error(L);return 0; in _wrap_SBFrame_FindValue()
32010 static int _wrap_SBFrame_GetDescription(lua_State* L) { in _wrap_SBFrame_GetDescription() argument
32018 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetDescription",1,"lldb::SBFrame *"); in _wrap_SBFrame_GetDescription()
32019 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::GetDescription",2,"lldb::SBStream &"); in _wrap_SBFrame_GetDescription()
32021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetDescription()
32026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBFrame_GetDescription()
32031 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFrame_GetDescription()
32036 lua_error(L); in _wrap_SBFrame_GetDescription()
32041 static int _wrap_SBFrame_GetDescriptionWithFormat(lua_State* L) { in _wrap_SBFrame_GetDescriptionWithFormat() argument
32050 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::GetDescriptionWithFormat",1,"lldb::SBFrame … in _wrap_SBFrame_GetDescriptionWithFormat()
32051 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFrame::GetDescriptionWithFormat",2,"lldb::SBFormat… in _wrap_SBFrame_GetDescriptionWithFormat()
32052 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBFrame::GetDescriptionWithFormat",3,"lldb::SBStream… in _wrap_SBFrame_GetDescriptionWithFormat()
32054 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame_GetDescriptionWithFormat()
32059 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFormat,0))){ in _wrap_SBFrame_GetDescriptionWithFormat()
32064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBFrame_GetDescriptionWithFormat()
32071 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBFrame_GetDescriptionWithFormat()
32077 lua_error(L); in _wrap_SBFrame_GetDescriptionWithFormat()
32082 static int _wrap_SBFrame___tostring(lua_State* L) { in _wrap_SBFrame___tostring() argument
32089 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFrame::__repr__",1,"lldb::SBFrame *"); in _wrap_SBFrame___tostring()
32091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBFrame___tostring()
32096 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBFrame___tostring()
32101 lua_error(L); in _wrap_SBFrame___tostring()
32110 static int _proxy__wrap_new_SBFrame(lua_State *L) { in _proxy__wrap_new_SBFrame() argument
32111 assert(lua_istable(L,1)); in _proxy__wrap_new_SBFrame()
32112 lua_pushcfunction(L,_wrap_new_SBFrame); in _proxy__wrap_new_SBFrame()
32113 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBFrame()
32114 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBFrame()
32115 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBFrame()
32191 static int _wrap_new_SBFunction__SWIG_0(lua_State* L) { in _wrap_new_SBFunction__SWIG_0() argument
32198 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++; in _wrap_new_SBFunction__SWIG_0()
32203 lua_error(L); in _wrap_new_SBFunction__SWIG_0()
32208 static int _wrap_new_SBFunction__SWIG_1(lua_State* L) { in _wrap_new_SBFunction__SWIG_1() argument
32215 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBFunction::SBFunction",1,"lldb::SBFunction const &"… in _wrap_new_SBFunction__SWIG_1()
32217 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_new_SBFunction__SWIG_1()
32222 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++; in _wrap_new_SBFunction__SWIG_1()
32227 lua_error(L); in _wrap_new_SBFunction__SWIG_1()
32232 static int _wrap_new_SBFunction(lua_State* L) { in _wrap_new_SBFunction() argument
32238 argc = lua_gettop(L); in _wrap_new_SBFunction()
32240 return _wrap_new_SBFunction__SWIG_0(L); in _wrap_new_SBFunction()
32246 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBFunction()
32253 return _wrap_new_SBFunction__SWIG_1(L); in _wrap_new_SBFunction()
32257 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBFunction'\n" in _wrap_new_SBFunction()
32261 lua_error(L);return 0; in _wrap_new_SBFunction()
32265 static int _wrap_SBFunction_IsValid(lua_State* L) { in _wrap_SBFunction_IsValid() argument
32272 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::IsValid",1,"lldb::SBFunction const *"); in _wrap_SBFunction_IsValid()
32274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_IsValid()
32279 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFunction_IsValid()
32284 lua_error(L); in _wrap_SBFunction_IsValid()
32289 static int _wrap_SBFunction_GetName(lua_State* L) { in _wrap_SBFunction_GetName() argument
32296 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetName",1,"lldb::SBFunction const *"); in _wrap_SBFunction_GetName()
32298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetName()
32303 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFunction_GetName()
32308 lua_error(L); in _wrap_SBFunction_GetName()
32313 static int _wrap_SBFunction_GetDisplayName(lua_State* L) { in _wrap_SBFunction_GetDisplayName() argument
32320 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetDisplayName",1,"lldb::SBFunction cons… in _wrap_SBFunction_GetDisplayName()
32322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetDisplayName()
32327 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFunction_GetDisplayName()
32332 lua_error(L); in _wrap_SBFunction_GetDisplayName()
32337 static int _wrap_SBFunction_GetMangledName(lua_State* L) { in _wrap_SBFunction_GetMangledName() argument
32344 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetMangledName",1,"lldb::SBFunction cons… in _wrap_SBFunction_GetMangledName()
32346 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetMangledName()
32351 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFunction_GetMangledName()
32356 lua_error(L); in _wrap_SBFunction_GetMangledName()
32361 static int _wrap_SBFunction_GetInstructions__SWIG_0(lua_State* L) { in _wrap_SBFunction_GetInstructions__SWIG_0() argument
32370 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetInstructions__SWIG_0()
32371 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",2,"lldb::SBTarget"); in _wrap_SBFunction_GetInstructions__SWIG_0()
32373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetInstructions__SWIG_0()
32378 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBFunction_GetInstructions__SWIG_0()
32386 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBFunction_GetInstructions__SWIG_0()
32392 lua_error(L); in _wrap_SBFunction_GetInstructions__SWIG_0()
32397 static int _wrap_SBFunction_GetInstructions__SWIG_1(lua_State* L) { in _wrap_SBFunction_GetInstructions__SWIG_1() argument
32407 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetInstructions__SWIG_1()
32408 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",2,"lldb::SBTarget"); in _wrap_SBFunction_GetInstructions__SWIG_1()
32409 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBFunction::GetInstructions",3,"char const *"); in _wrap_SBFunction_GetInstructions__SWIG_1()
32411 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetInstructions__SWIG_1()
32416 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBFunction_GetInstructions__SWIG_1()
32421 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBFunction_GetInstructions__SWIG_1()
32425 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBFunction_GetInstructions__SWIG_1()
32431 lua_error(L); in _wrap_SBFunction_GetInstructions__SWIG_1()
32436 static int _wrap_SBFunction_GetInstructions(lua_State* L) { in _wrap_SBFunction_GetInstructions() argument
32442 argc = lua_gettop(L); in _wrap_SBFunction_GetInstructions()
32447 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFunction_GetInstructions()
32456 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFunction_GetInstructions()
32463 return _wrap_SBFunction_GetInstructions__SWIG_0(L); in _wrap_SBFunction_GetInstructions()
32471 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFunction_GetInstructions()
32480 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBFunction_GetInstructions()
32488 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBFunction_GetInstructions()
32491 return _wrap_SBFunction_GetInstructions__SWIG_1(L); in _wrap_SBFunction_GetInstructions()
32497 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBFunction_GetInstructions'\n" in _wrap_SBFunction_GetInstructions()
32501 lua_error(L);return 0; in _wrap_SBFunction_GetInstructions()
32505 static int _wrap_SBFunction_GetStartAddress(lua_State* L) { in _wrap_SBFunction_GetStartAddress() argument
32512 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetStartAddress",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetStartAddress()
32514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetStartAddress()
32521 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBFunction_GetStartAddress()
32527 lua_error(L); in _wrap_SBFunction_GetStartAddress()
32532 static int _wrap_SBFunction_GetEndAddress(lua_State* L) { in _wrap_SBFunction_GetEndAddress() argument
32539 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetEndAddress",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetEndAddress()
32541 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetEndAddress()
32548 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBFunction_GetEndAddress()
32554 lua_error(L); in _wrap_SBFunction_GetEndAddress()
32559 static int _wrap_SBFunction_GetRanges(lua_State* L) { in _wrap_SBFunction_GetRanges() argument
32566 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetRanges",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetRanges()
32568 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetRanges()
32575 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++; in _wrap_SBFunction_GetRanges()
32581 lua_error(L); in _wrap_SBFunction_GetRanges()
32586 static int _wrap_SBFunction_GetArgumentName(lua_State* L) { in _wrap_SBFunction_GetArgumentName() argument
32594 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetArgumentName",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetArgumentName()
32595 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBFunction::GetArgumentName",2,"uint32_t"); in _wrap_SBFunction_GetArgumentName()
32597 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetArgumentName()
32601 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBFunction_GetArgumentName()
32603 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBFunction_GetArgumentName()
32608 lua_error(L); in _wrap_SBFunction_GetArgumentName()
32613 static int _wrap_SBFunction_GetPrologueByteSize(lua_State* L) { in _wrap_SBFunction_GetPrologueByteSize() argument
32620 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetPrologueByteSize",1,"lldb::SBFunction… in _wrap_SBFunction_GetPrologueByteSize()
32622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetPrologueByteSize()
32627 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFunction_GetPrologueByteSize()
32632 lua_error(L); in _wrap_SBFunction_GetPrologueByteSize()
32637 static int _wrap_SBFunction_GetType(lua_State* L) { in _wrap_SBFunction_GetType() argument
32644 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetType",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetType()
32646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetType()
32653 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBFunction_GetType()
32659 lua_error(L); in _wrap_SBFunction_GetType()
32664 static int _wrap_SBFunction_GetBlock(lua_State* L) { in _wrap_SBFunction_GetBlock() argument
32671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetBlock",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetBlock()
32673 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetBlock()
32680 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBFunction_GetBlock()
32686 lua_error(L); in _wrap_SBFunction_GetBlock()
32691 static int _wrap_SBFunction_GetLanguage(lua_State* L) { in _wrap_SBFunction_GetLanguage() argument
32698 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetLanguage",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetLanguage()
32700 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetLanguage()
32705 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBFunction_GetLanguage()
32710 lua_error(L); in _wrap_SBFunction_GetLanguage()
32715 static int _wrap_SBFunction_GetIsOptimized(lua_State* L) { in _wrap_SBFunction_GetIsOptimized() argument
32722 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetIsOptimized",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetIsOptimized()
32724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetIsOptimized()
32729 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFunction_GetIsOptimized()
32734 lua_error(L); in _wrap_SBFunction_GetIsOptimized()
32739 static int _wrap_SBFunction___eq(lua_State* L) { in _wrap_SBFunction___eq() argument
32747 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::operator ==",1,"lldb::SBFunction const *… in _wrap_SBFunction___eq()
32748 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::operator ==",2,"lldb::SBFunction const &… in _wrap_SBFunction___eq()
32750 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction___eq()
32755 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction___eq()
32760 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFunction___eq()
32765 lua_error(L); in _wrap_SBFunction___eq()
32770 static int _wrap_SBFunction_GetDescription(lua_State* L) { in _wrap_SBFunction_GetDescription() argument
32778 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::GetDescription",1,"lldb::SBFunction *"); in _wrap_SBFunction_GetDescription()
32779 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBFunction::GetDescription",2,"lldb::SBStream &"); in _wrap_SBFunction_GetDescription()
32781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction_GetDescription()
32786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBFunction_GetDescription()
32791 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBFunction_GetDescription()
32796 lua_error(L); in _wrap_SBFunction_GetDescription()
32801 static int _wrap_SBFunction___tostring(lua_State* L) { in _wrap_SBFunction___tostring() argument
32808 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBFunction::__repr__",1,"lldb::SBFunction *"); in _wrap_SBFunction___tostring()
32810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBFunction___tostring()
32815 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBFunction___tostring()
32820 lua_error(L); in _wrap_SBFunction___tostring()
32829 static int _proxy__wrap_new_SBFunction(lua_State *L) { in _proxy__wrap_new_SBFunction() argument
32830 assert(lua_istable(L,1)); in _proxy__wrap_new_SBFunction()
32831 lua_pushcfunction(L,_wrap_new_SBFunction); in _proxy__wrap_new_SBFunction()
32832 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBFunction()
32833 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBFunction()
32834 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBFunction()
32891 static int _wrap_SBHostOS_GetProgramFileSpec(lua_State* L) { in _wrap_SBHostOS_GetProgramFileSpec() argument
32900 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBHostOS_GetProgramFileSpec()
32906 lua_error(L); in _wrap_SBHostOS_GetProgramFileSpec()
32911 static int _wrap_SBHostOS_GetLLDBPythonPath(lua_State* L) { in _wrap_SBHostOS_GetLLDBPythonPath() argument
32920 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBHostOS_GetLLDBPythonPath()
32926 lua_error(L); in _wrap_SBHostOS_GetLLDBPythonPath()
32931 static int _wrap_SBHostOS_GetLLDBPath(lua_State* L) { in _wrap_SBHostOS_GetLLDBPath() argument
32938 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBHostOS::GetLLDBPath",1,"lldb::PathType"); in _wrap_SBHostOS_GetLLDBPath()
32939 arg1 = (lldb::PathType)lua_tointeger(L, 1); in _wrap_SBHostOS_GetLLDBPath()
32943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBHostOS_GetLLDBPath()
32949 lua_error(L); in _wrap_SBHostOS_GetLLDBPath()
32954 static int _wrap_SBHostOS_GetUserHomeDirectory(lua_State* L) { in _wrap_SBHostOS_GetUserHomeDirectory() argument
32963 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBHostOS_GetUserHomeDirectory()
32969 lua_error(L); in _wrap_SBHostOS_GetUserHomeDirectory()
32974 static int _wrap_SBHostOS_ThreadCreated(lua_State* L) { in _wrap_SBHostOS_ThreadCreated() argument
32980 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreated",1,"char const *"); in _wrap_SBHostOS_ThreadCreated()
32981 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBHostOS_ThreadCreated()
32988 lua_error(L); in _wrap_SBHostOS_ThreadCreated()
32993 static int _wrap_SBHostOS_ThreadCreate(lua_State* L) { in _wrap_SBHostOS_ThreadCreate() argument
33003 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",1,"char const *"); in _wrap_SBHostOS_ThreadCreate()
33004 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",2,"lldb::thread_func_t"); in _wrap_SBHostOS_ThreadCreate()
33005 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",3,"void *"); in _wrap_SBHostOS_ThreadCreate()
33006 if(!SWIG_isptrtype(L,4)) SWIG_fail_arg("lldb::SBHostOS::ThreadCreate",4,"lldb::SBError *"); in _wrap_SBHostOS_ThreadCreate()
33007 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBHostOS_ThreadCreate()
33009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_p_void__p_void,0))){ in _wrap_SBHostOS_ThreadCreate()
33013 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBHostOS_ThreadCreate"); in _wrap_SBHostOS_ThreadCreate()
33015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBHostOS_ThreadCreate()
33022 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_pthread_t,1); SWIG_arg++; in _wrap_SBHostOS_ThreadCreate()
33028 lua_error(L); in _wrap_SBHostOS_ThreadCreate()
33033 static int _wrap_SBHostOS_ThreadCancel(lua_State* L) { in _wrap_SBHostOS_ThreadCancel() argument
33042 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadCancel",1,"lldb::thread_t"); in _wrap_SBHostOS_ThreadCancel()
33043 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadCancel",2,"lldb::SBError *"); in _wrap_SBHostOS_ThreadCancel()
33045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_pthread_t,0))){ in _wrap_SBHostOS_ThreadCancel()
33051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBHostOS_ThreadCancel()
33056 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBHostOS_ThreadCancel()
33061 lua_error(L); in _wrap_SBHostOS_ThreadCancel()
33066 static int _wrap_SBHostOS_ThreadDetach(lua_State* L) { in _wrap_SBHostOS_ThreadDetach() argument
33075 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadDetach",1,"lldb::thread_t"); in _wrap_SBHostOS_ThreadDetach()
33076 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadDetach",2,"lldb::SBError *"); in _wrap_SBHostOS_ThreadDetach()
33078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_pthread_t,0))){ in _wrap_SBHostOS_ThreadDetach()
33084 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBHostOS_ThreadDetach()
33089 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBHostOS_ThreadDetach()
33094 lua_error(L); in _wrap_SBHostOS_ThreadDetach()
33099 static int _wrap_SBHostOS_ThreadJoin(lua_State* L) { in _wrap_SBHostOS_ThreadJoin() argument
33109 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBHostOS::ThreadJoin",1,"lldb::thread_t"); in _wrap_SBHostOS_ThreadJoin()
33110 … if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBHostOS::ThreadJoin",2,"lldb::thread_result_t *"); in _wrap_SBHostOS_ThreadJoin()
33111 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBHostOS::ThreadJoin",3,"lldb::SBError *"); in _wrap_SBHostOS_ThreadJoin()
33113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_pthread_t,0))){ in _wrap_SBHostOS_ThreadJoin()
33119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_p_void,0))){ in _wrap_SBHostOS_ThreadJoin()
33124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBHostOS_ThreadJoin()
33129 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBHostOS_ThreadJoin()
33134 lua_error(L); in _wrap_SBHostOS_ThreadJoin()
33139 static int _wrap_new_SBHostOS(lua_State* L) { in _wrap_new_SBHostOS() argument
33146 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBHostOS,1); SWIG_arg++; in _wrap_new_SBHostOS()
33151 lua_error(L); in _wrap_new_SBHostOS()
33160 static int _proxy__wrap_new_SBHostOS(lua_State *L) { in _proxy__wrap_new_SBHostOS() argument
33161 assert(lua_istable(L,1)); in _proxy__wrap_new_SBHostOS()
33162 lua_pushcfunction(L,_wrap_new_SBHostOS); in _proxy__wrap_new_SBHostOS()
33163 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBHostOS()
33164 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBHostOS()
33165 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBHostOS()
33212 static int _wrap_new_SBInstruction__SWIG_0(lua_State* L) { in _wrap_new_SBInstruction__SWIG_0() argument
33219 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstruction,1); SWIG_arg++; in _wrap_new_SBInstruction__SWIG_0()
33224 lua_error(L); in _wrap_new_SBInstruction__SWIG_0()
33229 static int _wrap_new_SBInstruction__SWIG_1(lua_State* L) { in _wrap_new_SBInstruction__SWIG_1() argument
33236 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBInstruction::SBInstruction",1,"lldb::SBInstruction… in _wrap_new_SBInstruction__SWIG_1()
33238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_new_SBInstruction__SWIG_1()
33243 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstruction,1); SWIG_arg++; in _wrap_new_SBInstruction__SWIG_1()
33248 lua_error(L); in _wrap_new_SBInstruction__SWIG_1()
33253 static int _wrap_new_SBInstruction(lua_State* L) { in _wrap_new_SBInstruction() argument
33259 argc = lua_gettop(L); in _wrap_new_SBInstruction()
33261 return _wrap_new_SBInstruction__SWIG_0(L); in _wrap_new_SBInstruction()
33267 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBInstruction()
33274 return _wrap_new_SBInstruction__SWIG_1(L); in _wrap_new_SBInstruction()
33278 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBInstruction'\n" in _wrap_new_SBInstruction()
33282 lua_error(L);return 0; in _wrap_new_SBInstruction()
33286 static int _wrap_SBInstruction_IsValid(lua_State* L) { in _wrap_SBInstruction_IsValid() argument
33293 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::IsValid",1,"lldb::SBInstruction *"); in _wrap_SBInstruction_IsValid()
33295 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_IsValid()
33300 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_IsValid()
33305 lua_error(L); in _wrap_SBInstruction_IsValid()
33310 static int _wrap_SBInstruction_GetAddress(lua_State* L) { in _wrap_SBInstruction_GetAddress() argument
33317 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetAddress",1,"lldb::SBInstruction *"… in _wrap_SBInstruction_GetAddress()
33319 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetAddress()
33326 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBInstruction_GetAddress()
33332 lua_error(L); in _wrap_SBInstruction_GetAddress()
33337 static int _wrap_SBInstruction_GetMnemonic(lua_State* L) { in _wrap_SBInstruction_GetMnemonic() argument
33346 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetMnemonic",1,"lldb::SBInstruction *… in _wrap_SBInstruction_GetMnemonic()
33347 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetMnemonic",2,"lldb::SBTarget"); in _wrap_SBInstruction_GetMnemonic()
33349 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetMnemonic()
33354 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBInstruction_GetMnemonic()
33360 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBInstruction_GetMnemonic()
33365 lua_error(L); in _wrap_SBInstruction_GetMnemonic()
33370 static int _wrap_SBInstruction_GetOperands(lua_State* L) { in _wrap_SBInstruction_GetOperands() argument
33379 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetOperands",1,"lldb::SBInstruction *… in _wrap_SBInstruction_GetOperands()
33380 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetOperands",2,"lldb::SBTarget"); in _wrap_SBInstruction_GetOperands()
33382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetOperands()
33387 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBInstruction_GetOperands()
33393 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBInstruction_GetOperands()
33398 lua_error(L); in _wrap_SBInstruction_GetOperands()
33403 static int _wrap_SBInstruction_GetComment(lua_State* L) { in _wrap_SBInstruction_GetComment() argument
33412 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetComment",1,"lldb::SBInstruction *"… in _wrap_SBInstruction_GetComment()
33413 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetComment",2,"lldb::SBTarget"); in _wrap_SBInstruction_GetComment()
33415 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetComment()
33420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBInstruction_GetComment()
33426 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBInstruction_GetComment()
33431 lua_error(L); in _wrap_SBInstruction_GetComment()
33436 static int _wrap_SBInstruction_GetControlFlowKind(lua_State* L) { in _wrap_SBInstruction_GetControlFlowKind() argument
33445 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetControlFlowKind",1,"lldb::SBInstru… in _wrap_SBInstruction_GetControlFlowKind()
33446 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetControlFlowKind",2,"lldb::SBTarget… in _wrap_SBInstruction_GetControlFlowKind()
33448 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetControlFlowKind()
33453 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBInstruction_GetControlFlowKind()
33459 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBInstruction_GetControlFlowKind()
33464 lua_error(L); in _wrap_SBInstruction_GetControlFlowKind()
33469 static int _wrap_SBInstruction_GetData(lua_State* L) { in _wrap_SBInstruction_GetData() argument
33478 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetData",1,"lldb::SBInstruction *"); in _wrap_SBInstruction_GetData()
33479 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetData",2,"lldb::SBTarget"); in _wrap_SBInstruction_GetData()
33481 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetData()
33486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBInstruction_GetData()
33494 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBInstruction_GetData()
33500 lua_error(L); in _wrap_SBInstruction_GetData()
33505 static int _wrap_SBInstruction_GetByteSize(lua_State* L) { in _wrap_SBInstruction_GetByteSize() argument
33512 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetByteSize",1,"lldb::SBInstruction *… in _wrap_SBInstruction_GetByteSize()
33514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetByteSize()
33519 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBInstruction_GetByteSize()
33524 lua_error(L); in _wrap_SBInstruction_GetByteSize()
33529 static int _wrap_SBInstruction_DoesBranch(lua_State* L) { in _wrap_SBInstruction_DoesBranch() argument
33536 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::DoesBranch",1,"lldb::SBInstruction *"… in _wrap_SBInstruction_DoesBranch()
33538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_DoesBranch()
33543 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_DoesBranch()
33548 lua_error(L); in _wrap_SBInstruction_DoesBranch()
33553 static int _wrap_SBInstruction_HasDelaySlot(lua_State* L) { in _wrap_SBInstruction_HasDelaySlot() argument
33560 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::HasDelaySlot",1,"lldb::SBInstruction … in _wrap_SBInstruction_HasDelaySlot()
33562 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_HasDelaySlot()
33567 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_HasDelaySlot()
33572 lua_error(L); in _wrap_SBInstruction_HasDelaySlot()
33577 static int _wrap_SBInstruction_CanSetBreakpoint(lua_State* L) { in _wrap_SBInstruction_CanSetBreakpoint() argument
33584 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::CanSetBreakpoint",1,"lldb::SBInstruct… in _wrap_SBInstruction_CanSetBreakpoint()
33586 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_CanSetBreakpoint()
33591 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_CanSetBreakpoint()
33596 lua_error(L); in _wrap_SBInstruction_CanSetBreakpoint()
33601 static int _wrap_SBInstruction_Print__SWIG_0(lua_State* L) { in _wrap_SBInstruction_Print__SWIG_0() argument
33609 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::Print",1,"lldb::SBInstruction *"); in _wrap_SBInstruction_Print__SWIG_0()
33610 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::Print",2,"lldb::SBFile"); in _wrap_SBInstruction_Print__SWIG_0()
33612 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_Print__SWIG_0()
33617 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBInstruction_Print__SWIG_0()
33628 lua_error(L); in _wrap_SBInstruction_Print__SWIG_0()
33633 static int _wrap_SBInstruction_Print__SWIG_1(lua_State* L) { in _wrap_SBInstruction_Print__SWIG_1() argument
33640 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::Print",1,"lldb::SBInstruction *"); in _wrap_SBInstruction_Print__SWIG_1()
33642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_Print__SWIG_1()
33647 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBInstruction_Print__SWIG_1()
33651 return luaL_error(L, "Invalid file"); in _wrap_SBInstruction_Print__SWIG_1()
33660 lua_error(L); in _wrap_SBInstruction_Print__SWIG_1()
33665 static int _wrap_SBInstruction_Print(lua_State* L) { in _wrap_SBInstruction_Print() argument
33671 argc = lua_gettop(L); in _wrap_SBInstruction_Print()
33676 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstruction_Print()
33685 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstruction_Print()
33692 return _wrap_SBInstruction_Print__SWIG_0(L); in _wrap_SBInstruction_Print()
33700 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstruction_Print()
33708 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBInstruction_Print()
33709 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBInstruction_Print()
33712 return _wrap_SBInstruction_Print__SWIG_1(L); in _wrap_SBInstruction_Print()
33717 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBInstruction_Print'\n" in _wrap_SBInstruction_Print()
33721 lua_error(L);return 0; in _wrap_SBInstruction_Print()
33725 static int _wrap_SBInstruction_GetDescription(lua_State* L) { in _wrap_SBInstruction_GetDescription() argument
33733 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::GetDescription",1,"lldb::SBInstructio… in _wrap_SBInstruction_GetDescription()
33734 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::GetDescription",2,"lldb::SBStream &"); in _wrap_SBInstruction_GetDescription()
33736 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_GetDescription()
33741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBInstruction_GetDescription()
33746 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_GetDescription()
33751 lua_error(L); in _wrap_SBInstruction_GetDescription()
33756 static int _wrap_SBInstruction_EmulateWithFrame(lua_State* L) { in _wrap_SBInstruction_EmulateWithFrame() argument
33765 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::EmulateWithFrame",1,"lldb::SBInstruct… in _wrap_SBInstruction_EmulateWithFrame()
33766 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::EmulateWithFrame",2,"lldb::SBFrame &"… in _wrap_SBInstruction_EmulateWithFrame()
33767 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBInstruction::EmulateWithFrame",3,"uint32_t"); in _wrap_SBInstruction_EmulateWithFrame()
33769 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_EmulateWithFrame()
33774 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBInstruction_EmulateWithFrame()
33778 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBInstruction_EmulateWithFrame()
33780 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_EmulateWithFrame()
33785 lua_error(L); in _wrap_SBInstruction_EmulateWithFrame()
33790 static int _wrap_SBInstruction_DumpEmulation(lua_State* L) { in _wrap_SBInstruction_DumpEmulation() argument
33798 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::DumpEmulation",1,"lldb::SBInstruction… in _wrap_SBInstruction_DumpEmulation()
33799 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBInstruction::DumpEmulation",2,"char const *"… in _wrap_SBInstruction_DumpEmulation()
33801 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_DumpEmulation()
33805 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBInstruction_DumpEmulation()
33807 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_DumpEmulation()
33812 lua_error(L); in _wrap_SBInstruction_DumpEmulation()
33817 static int _wrap_SBInstruction_TestEmulation(lua_State* L) { in _wrap_SBInstruction_TestEmulation() argument
33826 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::TestEmulation",1,"lldb::SBInstruction… in _wrap_SBInstruction_TestEmulation()
33827 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstruction::TestEmulation",2,"lldb::SBStream &"); in _wrap_SBInstruction_TestEmulation()
33828 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBInstruction::TestEmulation",3,"char const *"… in _wrap_SBInstruction_TestEmulation()
33830 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction_TestEmulation()
33835 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBInstruction_TestEmulation()
33839 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBInstruction_TestEmulation()
33841 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstruction_TestEmulation()
33846 lua_error(L); in _wrap_SBInstruction_TestEmulation()
33851 static int _wrap_SBInstruction___tostring(lua_State* L) { in _wrap_SBInstruction___tostring() argument
33858 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstruction::__repr__",1,"lldb::SBInstruction *"); in _wrap_SBInstruction___tostring()
33860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstruction___tostring()
33865 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBInstruction___tostring()
33870 lua_error(L); in _wrap_SBInstruction___tostring()
33879 static int _proxy__wrap_new_SBInstruction(lua_State *L) { in _proxy__wrap_new_SBInstruction() argument
33880 assert(lua_istable(L,1)); in _proxy__wrap_new_SBInstruction()
33881 lua_pushcfunction(L,_wrap_new_SBInstruction); in _proxy__wrap_new_SBInstruction()
33882 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBInstruction()
33883 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBInstruction()
33884 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBInstruction()
33940 static int _wrap_new_SBInstructionList__SWIG_0(lua_State* L) { in _wrap_new_SBInstructionList__SWIG_0() argument
33947 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_new_SBInstructionList__SWIG_0()
33952 lua_error(L); in _wrap_new_SBInstructionList__SWIG_0()
33957 static int _wrap_new_SBInstructionList__SWIG_1(lua_State* L) { in _wrap_new_SBInstructionList__SWIG_1() argument
33964 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBInstructionList::SBInstructionList",1,"lldb::SBIns… in _wrap_new_SBInstructionList__SWIG_1()
33966 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_new_SBInstructionList__SWIG_1()
33971 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_new_SBInstructionList__SWIG_1()
33976 lua_error(L); in _wrap_new_SBInstructionList__SWIG_1()
33981 static int _wrap_new_SBInstructionList(lua_State* L) { in _wrap_new_SBInstructionList() argument
33987 argc = lua_gettop(L); in _wrap_new_SBInstructionList()
33989 return _wrap_new_SBInstructionList__SWIG_0(L); in _wrap_new_SBInstructionList()
33995 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBInstructionList()
34002 return _wrap_new_SBInstructionList__SWIG_1(L); in _wrap_new_SBInstructionList()
34006 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBInstructionList'\n" in _wrap_new_SBInstructionList()
34010 lua_error(L);return 0; in _wrap_new_SBInstructionList()
34014 static int _wrap_SBInstructionList_IsValid(lua_State* L) { in _wrap_SBInstructionList_IsValid() argument
34021 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::IsValid",1,"lldb::SBInstructionLi… in _wrap_SBInstructionList_IsValid()
34023 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_IsValid()
34028 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstructionList_IsValid()
34033 lua_error(L); in _wrap_SBInstructionList_IsValid()
34038 static int _wrap_SBInstructionList_GetSize(lua_State* L) { in _wrap_SBInstructionList_GetSize() argument
34045 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetSize",1,"lldb::SBInstructionLi… in _wrap_SBInstructionList_GetSize()
34047 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_GetSize()
34052 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBInstructionList_GetSize()
34057 lua_error(L); in _wrap_SBInstructionList_GetSize()
34062 static int _wrap_SBInstructionList_GetInstructionAtIndex(lua_State* L) { in _wrap_SBInstructionList_GetInstructionAtIndex() argument
34070 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionAtIndex",1,"lldb::S… in _wrap_SBInstructionList_GetInstructionAtIndex()
34071 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionAtIndex",2,"uint32_t… in _wrap_SBInstructionList_GetInstructionAtIndex()
34073 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_GetInstructionAtIndex()
34077 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBInstructionList_GetInstructionAtIndex()
34081 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstruction,1); SWIG_arg++; in _wrap_SBInstructionList_GetInstructionAtIndex()
34087 lua_error(L); in _wrap_SBInstructionList_GetInstructionAtIndex()
34092 static int _wrap_SBInstructionList_GetInstructionsCount__SWIG_0(lua_State* L) { in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0() argument
34102 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",1,"lldb::SB… in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34103 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",2,"lldb::SB… in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34104 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",3,"lldb::SB… in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34105 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",4,"bool"); in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34107 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34117 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34121 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34123 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34128 lua_error(L); in _wrap_SBInstructionList_GetInstructionsCount__SWIG_0()
34133 static int _wrap_SBInstructionList_GetInstructionsCount__SWIG_1(lua_State* L) { in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1() argument
34142 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",1,"lldb::SB… in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34143 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",2,"lldb::SB… in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34144 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBInstructionList::GetInstructionsCount",3,"lldb::SB… in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34146 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34151 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34161 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34166 lua_error(L); in _wrap_SBInstructionList_GetInstructionsCount__SWIG_1()
34171 static int _wrap_SBInstructionList_GetInstructionsCount(lua_State* L) { in _wrap_SBInstructionList_GetInstructionsCount() argument
34177 argc = lua_gettop(L); in _wrap_SBInstructionList_GetInstructionsCount()
34182 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_GetInstructionsCount()
34191 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_GetInstructionsCount()
34200 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_GetInstructionsCount()
34207 return _wrap_SBInstructionList_GetInstructionsCount__SWIG_1(L); in _wrap_SBInstructionList_GetInstructionsCount()
34216 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_GetInstructionsCount()
34225 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_GetInstructionsCount()
34234 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_GetInstructionsCount()
34242 _v = lua_isboolean(L,argv[3]); in _wrap_SBInstructionList_GetInstructionsCount()
34245 return _wrap_SBInstructionList_GetInstructionsCount__SWIG_0(L); in _wrap_SBInstructionList_GetInstructionsCount()
34252 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBInstructionList_GetInstructio… in _wrap_SBInstructionList_GetInstructionsCount()
34256 lua_error(L);return 0; in _wrap_SBInstructionList_GetInstructionsCount()
34260 static int _wrap_SBInstructionList_Clear(lua_State* L) { in _wrap_SBInstructionList_Clear() argument
34266 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::Clear",1,"lldb::SBInstructionList… in _wrap_SBInstructionList_Clear()
34268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_Clear()
34278 lua_error(L); in _wrap_SBInstructionList_Clear()
34283 static int _wrap_SBInstructionList_AppendInstruction(lua_State* L) { in _wrap_SBInstructionList_AppendInstruction() argument
34291 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::AppendInstruction",1,"lldb::SBIns… in _wrap_SBInstructionList_AppendInstruction()
34292 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::AppendInstruction",2,"lldb::SBIns… in _wrap_SBInstructionList_AppendInstruction()
34294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_AppendInstruction()
34299 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBInstruction,0))){ in _wrap_SBInstructionList_AppendInstruction()
34310 lua_error(L); in _wrap_SBInstructionList_AppendInstruction()
34315 static int _wrap_SBInstructionList_Print__SWIG_0(lua_State* L) { in _wrap_SBInstructionList_Print__SWIG_0() argument
34323 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::Print",1,"lldb::SBInstructionList… in _wrap_SBInstructionList_Print__SWIG_0()
34324 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::Print",2,"lldb::SBFile"); in _wrap_SBInstructionList_Print__SWIG_0()
34326 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_Print__SWIG_0()
34331 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBInstructionList_Print__SWIG_0()
34342 lua_error(L); in _wrap_SBInstructionList_Print__SWIG_0()
34347 static int _wrap_SBInstructionList_Print__SWIG_1(lua_State* L) { in _wrap_SBInstructionList_Print__SWIG_1() argument
34354 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::Print",1,"lldb::SBInstructionList… in _wrap_SBInstructionList_Print__SWIG_1()
34356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_Print__SWIG_1()
34361 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBInstructionList_Print__SWIG_1()
34365 return luaL_error(L, "Invalid file"); in _wrap_SBInstructionList_Print__SWIG_1()
34374 lua_error(L); in _wrap_SBInstructionList_Print__SWIG_1()
34379 static int _wrap_SBInstructionList_Print(lua_State* L) { in _wrap_SBInstructionList_Print() argument
34385 argc = lua_gettop(L); in _wrap_SBInstructionList_Print()
34390 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_Print()
34399 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_Print()
34406 return _wrap_SBInstructionList_Print__SWIG_0(L); in _wrap_SBInstructionList_Print()
34414 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBInstructionList_Print()
34422 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBInstructionList_Print()
34423 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBInstructionList_Print()
34426 return _wrap_SBInstructionList_Print__SWIG_1(L); in _wrap_SBInstructionList_Print()
34431 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBInstructionList_Print'\n" in _wrap_SBInstructionList_Print()
34435 lua_error(L);return 0; in _wrap_SBInstructionList_Print()
34439 static int _wrap_SBInstructionList_GetDescription(lua_State* L) { in _wrap_SBInstructionList_GetDescription() argument
34447 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::GetDescription",1,"lldb::SBInstru… in _wrap_SBInstructionList_GetDescription()
34448 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBInstructionList::GetDescription",2,"lldb::SBStream… in _wrap_SBInstructionList_GetDescription()
34450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_GetDescription()
34455 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBInstructionList_GetDescription()
34460 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstructionList_GetDescription()
34465 lua_error(L); in _wrap_SBInstructionList_GetDescription()
34470 static int _wrap_SBInstructionList_DumpEmulationForAllInstructions(lua_State* L) { in _wrap_SBInstructionList_DumpEmulationForAllInstructions() argument
34478 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::DumpEmulationForAllInstructions",… in _wrap_SBInstructionList_DumpEmulationForAllInstructions()
34479 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBInstructionList::DumpEmulationForAllInstruct… in _wrap_SBInstructionList_DumpEmulationForAllInstructions()
34481 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList_DumpEmulationForAllInstructions()
34485 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBInstructionList_DumpEmulationForAllInstructions()
34487 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBInstructionList_DumpEmulationForAllInstructions()
34492 lua_error(L); in _wrap_SBInstructionList_DumpEmulationForAllInstructions()
34497 static int _wrap_SBInstructionList___tostring(lua_State* L) { in _wrap_SBInstructionList___tostring() argument
34504 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBInstructionList::__repr__",1,"lldb::SBInstructionL… in _wrap_SBInstructionList___tostring()
34506 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBInstructionList,0))){ in _wrap_SBInstructionList___tostring()
34511 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBInstructionList___tostring()
34516 lua_error(L); in _wrap_SBInstructionList___tostring()
34525 static int _proxy__wrap_new_SBInstructionList(lua_State *L) { in _proxy__wrap_new_SBInstructionList() argument
34526 assert(lua_istable(L,1)); in _proxy__wrap_new_SBInstructionList()
34527 lua_pushcfunction(L,_wrap_new_SBInstructionList); in _proxy__wrap_new_SBInstructionList()
34528 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBInstructionList()
34529 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBInstructionList()
34530 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBInstructionList()
34579 static int _wrap_SBLanguageRuntime_GetLanguageTypeFromString(lua_State* L) { in _wrap_SBLanguageRuntime_GetLanguageTypeFromString() argument
34586 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetLanguageTypeFromString",… in _wrap_SBLanguageRuntime_GetLanguageTypeFromString()
34587 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBLanguageRuntime_GetLanguageTypeFromString()
34589 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLanguageRuntime_GetLanguageTypeFromString()
34594 lua_error(L); in _wrap_SBLanguageRuntime_GetLanguageTypeFromString()
34599 static int _wrap_SBLanguageRuntime_GetNameForLanguageType(lua_State* L) { in _wrap_SBLanguageRuntime_GetNameForLanguageType() argument
34606 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetNameForLanguageType",1,"lldb::L… in _wrap_SBLanguageRuntime_GetNameForLanguageType()
34607 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_GetNameForLanguageType()
34609 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLanguageRuntime_GetNameForLanguageType()
34614 lua_error(L); in _wrap_SBLanguageRuntime_GetNameForLanguageType()
34619 static int _wrap_SBLanguageRuntime_LanguageIsCPlusPlus(lua_State* L) { in _wrap_SBLanguageRuntime_LanguageIsCPlusPlus() argument
34626 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::LanguageIsCPlusPlus",1,"lldb::Lang… in _wrap_SBLanguageRuntime_LanguageIsCPlusPlus()
34627 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_LanguageIsCPlusPlus()
34629 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLanguageRuntime_LanguageIsCPlusPlus()
34634 lua_error(L); in _wrap_SBLanguageRuntime_LanguageIsCPlusPlus()
34639 static int _wrap_SBLanguageRuntime_LanguageIsObjC(lua_State* L) { in _wrap_SBLanguageRuntime_LanguageIsObjC() argument
34646 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::LanguageIsObjC",1,"lldb::LanguageT… in _wrap_SBLanguageRuntime_LanguageIsObjC()
34647 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_LanguageIsObjC()
34649 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLanguageRuntime_LanguageIsObjC()
34654 lua_error(L); in _wrap_SBLanguageRuntime_LanguageIsObjC()
34659 static int _wrap_SBLanguageRuntime_LanguageIsCFamily(lua_State* L) { in _wrap_SBLanguageRuntime_LanguageIsCFamily() argument
34666 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::LanguageIsCFamily",1,"lldb::Langua… in _wrap_SBLanguageRuntime_LanguageIsCFamily()
34667 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_LanguageIsCFamily()
34669 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLanguageRuntime_LanguageIsCFamily()
34674 lua_error(L); in _wrap_SBLanguageRuntime_LanguageIsCFamily()
34679 static int _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow(lua_State* L) { in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow() argument
34686 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::SupportsExceptionBreakpointsOnThro… in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow()
34687 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow()
34689 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow()
34694 lua_error(L); in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnThrow()
34699 static int _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch(lua_State* L) { in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch() argument
34706 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::SupportsExceptionBreakpointsOnCatc… in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch()
34707 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch()
34709 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch()
34714 lua_error(L); in _wrap_SBLanguageRuntime_SupportsExceptionBreakpointsOnCatch()
34719 static int _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage(lua_State* L) { in _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage() argument
34726 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetThrowKeywordForLanguage",1,"lld… in _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage()
34727 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage()
34729 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage()
34734 lua_error(L); in _wrap_SBLanguageRuntime_GetThrowKeywordForLanguage()
34739 static int _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage(lua_State* L) { in _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage() argument
34746 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBLanguageRuntime::GetCatchKeywordForLanguage",1,"lld… in _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage()
34747 arg1 = (lldb::LanguageType)lua_tointeger(L, 1); in _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage()
34749 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage()
34754 lua_error(L); in _wrap_SBLanguageRuntime_GetCatchKeywordForLanguage()
34759 static int _wrap_new_SBLanguageRuntime(lua_State* L) { in _wrap_new_SBLanguageRuntime() argument
34766 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLanguageRuntime,1); SWIG_arg++; in _wrap_new_SBLanguageRuntime()
34771 lua_error(L); in _wrap_new_SBLanguageRuntime()
34780 static int _proxy__wrap_new_SBLanguageRuntime(lua_State *L) { in _proxy__wrap_new_SBLanguageRuntime() argument
34781 assert(lua_istable(L,1)); in _proxy__wrap_new_SBLanguageRuntime()
34782 lua_pushcfunction(L,_wrap_new_SBLanguageRuntime); in _proxy__wrap_new_SBLanguageRuntime()
34783 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBLanguageRuntime()
34784 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBLanguageRuntime()
34785 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBLanguageRuntime()
34832 static int _wrap_new_SBLaunchInfo(lua_State* L) { in _wrap_new_SBLaunchInfo() argument
34840 if (lua_istable(L, 1)) { in _wrap_new_SBLaunchInfo()
34841 size_t size = lua_rawlen(L, 1); in _wrap_new_SBLaunchInfo()
34845 lua_rawgeti(L, 1, i); in _wrap_new_SBLaunchInfo()
34846 if (!lua_isstring(L, -1)) { in _wrap_new_SBLaunchInfo()
34848 lua_pop(L, 1); in _wrap_new_SBLaunchInfo()
34849 return luaL_error(L, "List should only contain strings"); in _wrap_new_SBLaunchInfo()
34851 arg1[j++] = (char *)lua_tostring(L, -1); in _wrap_new_SBLaunchInfo()
34852 lua_pop(L, 1); in _wrap_new_SBLaunchInfo()
34855 } else if (lua_isnil(L, 1)) { in _wrap_new_SBLaunchInfo()
34859 return luaL_error(L, "A list of strings expected"); in _wrap_new_SBLaunchInfo()
34863 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLaunchInfo,1); SWIG_arg++; in _wrap_new_SBLaunchInfo()
34874 lua_error(L); in _wrap_new_SBLaunchInfo()
34879 static int _wrap_SBLaunchInfo_GetProcessID(lua_State* L) { in _wrap_SBLaunchInfo_GetProcessID() argument
34886 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetProcessID",1,"lldb::SBLaunchInfo *"… in _wrap_SBLaunchInfo_GetProcessID()
34888 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetProcessID()
34893 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetProcessID()
34898 lua_error(L); in _wrap_SBLaunchInfo_GetProcessID()
34903 static int _wrap_SBLaunchInfo_GetUserID(lua_State* L) { in _wrap_SBLaunchInfo_GetUserID() argument
34910 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetUserID",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_GetUserID()
34912 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetUserID()
34917 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetUserID()
34922 lua_error(L); in _wrap_SBLaunchInfo_GetUserID()
34927 static int _wrap_SBLaunchInfo_GetGroupID(lua_State* L) { in _wrap_SBLaunchInfo_GetGroupID() argument
34934 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetGroupID",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_GetGroupID()
34936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetGroupID()
34941 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetGroupID()
34946 lua_error(L); in _wrap_SBLaunchInfo_GetGroupID()
34951 static int _wrap_SBLaunchInfo_UserIDIsValid(lua_State* L) { in _wrap_SBLaunchInfo_UserIDIsValid() argument
34958 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::UserIDIsValid",1,"lldb::SBLaunchInfo *… in _wrap_SBLaunchInfo_UserIDIsValid()
34960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_UserIDIsValid()
34965 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_UserIDIsValid()
34970 lua_error(L); in _wrap_SBLaunchInfo_UserIDIsValid()
34975 static int _wrap_SBLaunchInfo_GroupIDIsValid(lua_State* L) { in _wrap_SBLaunchInfo_GroupIDIsValid() argument
34982 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GroupIDIsValid",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_GroupIDIsValid()
34984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GroupIDIsValid()
34989 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_GroupIDIsValid()
34994 lua_error(L); in _wrap_SBLaunchInfo_GroupIDIsValid()
34999 static int _wrap_SBLaunchInfo_SetUserID(lua_State* L) { in _wrap_SBLaunchInfo_SetUserID() argument
35006 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetUserID",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_SetUserID()
35007 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetUserID",2,"uint32_t"); in _wrap_SBLaunchInfo_SetUserID()
35009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetUserID()
35013 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_SetUserID()
35020 lua_error(L); in _wrap_SBLaunchInfo_SetUserID()
35025 static int _wrap_SBLaunchInfo_SetGroupID(lua_State* L) { in _wrap_SBLaunchInfo_SetGroupID() argument
35032 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetGroupID",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_SetGroupID()
35033 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetGroupID",2,"uint32_t"); in _wrap_SBLaunchInfo_SetGroupID()
35035 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetGroupID()
35039 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_SetGroupID()
35046 lua_error(L); in _wrap_SBLaunchInfo_SetGroupID()
35051 static int _wrap_SBLaunchInfo_GetExecutableFile(lua_State* L) { in _wrap_SBLaunchInfo_GetExecutableFile() argument
35058 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetExecutableFile",1,"lldb::SBLaunchIn… in _wrap_SBLaunchInfo_GetExecutableFile()
35060 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetExecutableFile()
35067 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBLaunchInfo_GetExecutableFile()
35073 lua_error(L); in _wrap_SBLaunchInfo_GetExecutableFile()
35078 static int _wrap_SBLaunchInfo_SetExecutableFile(lua_State* L) { in _wrap_SBLaunchInfo_SetExecutableFile() argument
35087 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetExecutableFile",1,"lldb::SBLaunchIn… in _wrap_SBLaunchInfo_SetExecutableFile()
35088 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetExecutableFile",2,"lldb::SBFileSpec… in _wrap_SBLaunchInfo_SetExecutableFile()
35089 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetExecutableFile",3,"bool"); in _wrap_SBLaunchInfo_SetExecutableFile()
35091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetExecutableFile()
35096 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBLaunchInfo_SetExecutableFile()
35101 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBLaunchInfo_SetExecutableFile()
35108 lua_error(L); in _wrap_SBLaunchInfo_SetExecutableFile()
35113 static int _wrap_SBLaunchInfo_GetListener(lua_State* L) { in _wrap_SBLaunchInfo_GetListener() argument
35120 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetListener",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_GetListener()
35122 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetListener()
35129 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_SBLaunchInfo_GetListener()
35135 lua_error(L); in _wrap_SBLaunchInfo_GetListener()
35140 static int _wrap_SBLaunchInfo_SetListener(lua_State* L) { in _wrap_SBLaunchInfo_SetListener() argument
35147 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetListener",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_SetListener()
35148 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetListener",2,"lldb::SBListener &"); in _wrap_SBLaunchInfo_SetListener()
35150 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetListener()
35155 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBLaunchInfo_SetListener()
35165 lua_error(L); in _wrap_SBLaunchInfo_SetListener()
35170 static int _wrap_SBLaunchInfo_GetShadowListener(lua_State* L) { in _wrap_SBLaunchInfo_GetShadowListener() argument
35177 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetShadowListener",1,"lldb::SBLaunchIn… in _wrap_SBLaunchInfo_GetShadowListener()
35179 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetShadowListener()
35186 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_SBLaunchInfo_GetShadowListener()
35192 lua_error(L); in _wrap_SBLaunchInfo_GetShadowListener()
35197 static int _wrap_SBLaunchInfo_SetShadowListener(lua_State* L) { in _wrap_SBLaunchInfo_SetShadowListener() argument
35204 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShadowListener",1,"lldb::SBLaunchIn… in _wrap_SBLaunchInfo_SetShadowListener()
35205 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShadowListener",2,"lldb::SBListener… in _wrap_SBLaunchInfo_SetShadowListener()
35207 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetShadowListener()
35212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBLaunchInfo_SetShadowListener()
35222 lua_error(L); in _wrap_SBLaunchInfo_SetShadowListener()
35227 static int _wrap_SBLaunchInfo_GetNumArguments(lua_State* L) { in _wrap_SBLaunchInfo_GetNumArguments() argument
35234 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetNumArguments",1,"lldb::SBLaunchInfo… in _wrap_SBLaunchInfo_GetNumArguments()
35236 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetNumArguments()
35241 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetNumArguments()
35246 lua_error(L); in _wrap_SBLaunchInfo_GetNumArguments()
35251 static int _wrap_SBLaunchInfo_GetArgumentAtIndex(lua_State* L) { in _wrap_SBLaunchInfo_GetArgumentAtIndex() argument
35259 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetArgumentAtIndex",1,"lldb::SBLaunchI… in _wrap_SBLaunchInfo_GetArgumentAtIndex()
35260 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::GetArgumentAtIndex",2,"uint32_t"); in _wrap_SBLaunchInfo_GetArgumentAtIndex()
35262 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetArgumentAtIndex()
35266 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_GetArgumentAtIndex()
35268 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetArgumentAtIndex()
35273 lua_error(L); in _wrap_SBLaunchInfo_GetArgumentAtIndex()
35278 static int _wrap_SBLaunchInfo_SetArguments(lua_State* L) { in _wrap_SBLaunchInfo_SetArguments() argument
35286 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetArguments",1,"lldb::SBLaunchInfo *"… in _wrap_SBLaunchInfo_SetArguments()
35287 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetArguments",3,"bool"); in _wrap_SBLaunchInfo_SetArguments()
35289 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetArguments()
35294 if (lua_istable(L, 2)) { in _wrap_SBLaunchInfo_SetArguments()
35295 size_t size = lua_rawlen(L, 2); in _wrap_SBLaunchInfo_SetArguments()
35299 lua_rawgeti(L, 2, i); in _wrap_SBLaunchInfo_SetArguments()
35300 if (!lua_isstring(L, -1)) { in _wrap_SBLaunchInfo_SetArguments()
35302 lua_pop(L, 1); in _wrap_SBLaunchInfo_SetArguments()
35303 return luaL_error(L, "List should only contain strings"); in _wrap_SBLaunchInfo_SetArguments()
35305 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBLaunchInfo_SetArguments()
35306 lua_pop(L, 1); in _wrap_SBLaunchInfo_SetArguments()
35309 } else if (lua_isnil(L, 2)) { in _wrap_SBLaunchInfo_SetArguments()
35313 return luaL_error(L, "A list of strings expected"); in _wrap_SBLaunchInfo_SetArguments()
35316 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBLaunchInfo_SetArguments()
35329 lua_error(L); in _wrap_SBLaunchInfo_SetArguments()
35334 static int _wrap_SBLaunchInfo_GetNumEnvironmentEntries(lua_State* L) { in _wrap_SBLaunchInfo_GetNumEnvironmentEntries() argument
35341 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetNumEnvironmentEntries",1,"lldb::SBL… in _wrap_SBLaunchInfo_GetNumEnvironmentEntries()
35343 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetNumEnvironmentEntries()
35348 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetNumEnvironmentEntries()
35353 lua_error(L); in _wrap_SBLaunchInfo_GetNumEnvironmentEntries()
35358 static int _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex(lua_State* L) { in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex() argument
35366 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetEnvironmentEntryAtIndex",1,"lldb::S… in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex()
35367 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::GetEnvironmentEntryAtIndex",2,"uint32_t… in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex()
35369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex()
35373 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex()
35375 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex()
35380 lua_error(L); in _wrap_SBLaunchInfo_GetEnvironmentEntryAtIndex()
35385 static int _wrap_SBLaunchInfo_SetEnvironmentEntries(lua_State* L) { in _wrap_SBLaunchInfo_SetEnvironmentEntries() argument
35393 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironmentEntries",1,"lldb::SBLaun… in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35394 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironmentEntries",3,"bool"); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35396 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35401 if (lua_istable(L, 2)) { in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35402 size_t size = lua_rawlen(L, 2); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35406 lua_rawgeti(L, 2, i); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35407 if (!lua_isstring(L, -1)) { in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35409 lua_pop(L, 1); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35410 return luaL_error(L, "List should only contain strings"); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35412 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35413 lua_pop(L, 1); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35416 } else if (lua_isnil(L, 2)) { in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35420 return luaL_error(L, "A list of strings expected"); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35423 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35436 lua_error(L); in _wrap_SBLaunchInfo_SetEnvironmentEntries()
35441 static int _wrap_SBLaunchInfo_SetEnvironment(lua_State* L) { in _wrap_SBLaunchInfo_SetEnvironment() argument
35449 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironment",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_SetEnvironment()
35450 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironment",2,"lldb::SBEnvironment… in _wrap_SBLaunchInfo_SetEnvironment()
35451 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::SetEnvironment",3,"bool"); in _wrap_SBLaunchInfo_SetEnvironment()
35453 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetEnvironment()
35458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEnvironment,0))){ in _wrap_SBLaunchInfo_SetEnvironment()
35462 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBLaunchInfo_SetEnvironment()
35469 lua_error(L); in _wrap_SBLaunchInfo_SetEnvironment()
35474 static int _wrap_SBLaunchInfo_GetEnvironment(lua_State* L) { in _wrap_SBLaunchInfo_GetEnvironment() argument
35481 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetEnvironment",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_GetEnvironment()
35483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetEnvironment()
35490 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++; in _wrap_SBLaunchInfo_GetEnvironment()
35496 lua_error(L); in _wrap_SBLaunchInfo_GetEnvironment()
35501 static int _wrap_SBLaunchInfo_Clear(lua_State* L) { in _wrap_SBLaunchInfo_Clear() argument
35507 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::Clear",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_Clear()
35509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_Clear()
35519 lua_error(L); in _wrap_SBLaunchInfo_Clear()
35524 static int _wrap_SBLaunchInfo_GetWorkingDirectory(lua_State* L) { in _wrap_SBLaunchInfo_GetWorkingDirectory() argument
35531 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetWorkingDirectory",1,"lldb::SBLaunch… in _wrap_SBLaunchInfo_GetWorkingDirectory()
35533 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetWorkingDirectory()
35538 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetWorkingDirectory()
35543 lua_error(L); in _wrap_SBLaunchInfo_GetWorkingDirectory()
35548 static int _wrap_SBLaunchInfo_SetWorkingDirectory(lua_State* L) { in _wrap_SBLaunchInfo_SetWorkingDirectory() argument
35555 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetWorkingDirectory",1,"lldb::SBLaunch… in _wrap_SBLaunchInfo_SetWorkingDirectory()
35556 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetWorkingDirectory",2,"char con… in _wrap_SBLaunchInfo_SetWorkingDirectory()
35558 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetWorkingDirectory()
35562 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBLaunchInfo_SetWorkingDirectory()
35569 lua_error(L); in _wrap_SBLaunchInfo_SetWorkingDirectory()
35574 static int _wrap_SBLaunchInfo_GetLaunchFlags(lua_State* L) { in _wrap_SBLaunchInfo_GetLaunchFlags() argument
35581 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetLaunchFlags",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_GetLaunchFlags()
35583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetLaunchFlags()
35588 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetLaunchFlags()
35593 lua_error(L); in _wrap_SBLaunchInfo_GetLaunchFlags()
35598 static int _wrap_SBLaunchInfo_SetLaunchFlags(lua_State* L) { in _wrap_SBLaunchInfo_SetLaunchFlags() argument
35605 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchFlags",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_SetLaunchFlags()
35606 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchFlags",2,"uint32_t"); in _wrap_SBLaunchInfo_SetLaunchFlags()
35608 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetLaunchFlags()
35612 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_SetLaunchFlags()
35619 lua_error(L); in _wrap_SBLaunchInfo_SetLaunchFlags()
35624 static int _wrap_SBLaunchInfo_GetProcessPluginName(lua_State* L) { in _wrap_SBLaunchInfo_GetProcessPluginName() argument
35631 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetProcessPluginName",1,"lldb::SBLaunc… in _wrap_SBLaunchInfo_GetProcessPluginName()
35633 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetProcessPluginName()
35638 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetProcessPluginName()
35643 lua_error(L); in _wrap_SBLaunchInfo_GetProcessPluginName()
35648 static int _wrap_SBLaunchInfo_SetProcessPluginName(lua_State* L) { in _wrap_SBLaunchInfo_SetProcessPluginName() argument
35655 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetProcessPluginName",1,"lldb::SBLaunc… in _wrap_SBLaunchInfo_SetProcessPluginName()
35656 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetProcessPluginName",2,"char co… in _wrap_SBLaunchInfo_SetProcessPluginName()
35658 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetProcessPluginName()
35662 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBLaunchInfo_SetProcessPluginName()
35669 lua_error(L); in _wrap_SBLaunchInfo_SetProcessPluginName()
35674 static int _wrap_SBLaunchInfo_GetShell(lua_State* L) { in _wrap_SBLaunchInfo_GetShell() argument
35681 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetShell",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_GetShell()
35683 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetShell()
35688 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetShell()
35693 lua_error(L); in _wrap_SBLaunchInfo_GetShell()
35698 static int _wrap_SBLaunchInfo_SetShell(lua_State* L) { in _wrap_SBLaunchInfo_SetShell() argument
35705 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShell",1,"lldb::SBLaunchInfo *"); in _wrap_SBLaunchInfo_SetShell()
35706 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShell",2,"char const *"); in _wrap_SBLaunchInfo_SetShell()
35708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetShell()
35712 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBLaunchInfo_SetShell()
35719 lua_error(L); in _wrap_SBLaunchInfo_SetShell()
35724 static int _wrap_SBLaunchInfo_GetShellExpandArguments(lua_State* L) { in _wrap_SBLaunchInfo_GetShellExpandArguments() argument
35731 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetShellExpandArguments",1,"lldb::SBLa… in _wrap_SBLaunchInfo_GetShellExpandArguments()
35733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetShellExpandArguments()
35738 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_GetShellExpandArguments()
35743 lua_error(L); in _wrap_SBLaunchInfo_GetShellExpandArguments()
35748 static int _wrap_SBLaunchInfo_SetShellExpandArguments(lua_State* L) { in _wrap_SBLaunchInfo_SetShellExpandArguments() argument
35755 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShellExpandArguments",1,"lldb::SBLa… in _wrap_SBLaunchInfo_SetShellExpandArguments()
35756 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetShellExpandArguments",2,"bool"); in _wrap_SBLaunchInfo_SetShellExpandArguments()
35758 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetShellExpandArguments()
35762 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBLaunchInfo_SetShellExpandArguments()
35769 lua_error(L); in _wrap_SBLaunchInfo_SetShellExpandArguments()
35774 static int _wrap_SBLaunchInfo_GetResumeCount(lua_State* L) { in _wrap_SBLaunchInfo_GetResumeCount() argument
35781 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetResumeCount",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_GetResumeCount()
35783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetResumeCount()
35788 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLaunchInfo_GetResumeCount()
35793 lua_error(L); in _wrap_SBLaunchInfo_GetResumeCount()
35798 static int _wrap_SBLaunchInfo_SetResumeCount(lua_State* L) { in _wrap_SBLaunchInfo_SetResumeCount() argument
35805 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetResumeCount",1,"lldb::SBLaunchInfo … in _wrap_SBLaunchInfo_SetResumeCount()
35806 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetResumeCount",2,"uint32_t"); in _wrap_SBLaunchInfo_SetResumeCount()
35808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetResumeCount()
35812 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_SetResumeCount()
35819 lua_error(L); in _wrap_SBLaunchInfo_SetResumeCount()
35824 static int _wrap_SBLaunchInfo_AddCloseFileAction(lua_State* L) { in _wrap_SBLaunchInfo_AddCloseFileAction() argument
35832 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddCloseFileAction",1,"lldb::SBLaunchI… in _wrap_SBLaunchInfo_AddCloseFileAction()
35833 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddCloseFileAction",2,"int"); in _wrap_SBLaunchInfo_AddCloseFileAction()
35835 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_AddCloseFileAction()
35839 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_AddCloseFileAction()
35841 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_AddCloseFileAction()
35846 lua_error(L); in _wrap_SBLaunchInfo_AddCloseFileAction()
35851 static int _wrap_SBLaunchInfo_AddDuplicateFileAction(lua_State* L) { in _wrap_SBLaunchInfo_AddDuplicateFileAction() argument
35860 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddDuplicateFileAction",1,"lldb::SBLau… in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35861 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddDuplicateFileAction",2,"int"); in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35862 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::AddDuplicateFileAction",3,"int"); in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35864 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35868 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35869 arg3 = (int)lua_tointeger(L, 3); in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35871 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35876 lua_error(L); in _wrap_SBLaunchInfo_AddDuplicateFileAction()
35881 static int _wrap_SBLaunchInfo_AddOpenFileAction(lua_State* L) { in _wrap_SBLaunchInfo_AddOpenFileAction() argument
35892 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",1,"lldb::SBLaunchIn… in _wrap_SBLaunchInfo_AddOpenFileAction()
35893 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",2,"int"); in _wrap_SBLaunchInfo_AddOpenFileAction()
35894 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",3,"char const… in _wrap_SBLaunchInfo_AddOpenFileAction()
35895 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",4,"bool"); in _wrap_SBLaunchInfo_AddOpenFileAction()
35896 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBLaunchInfo::AddOpenFileAction",5,"bool"); in _wrap_SBLaunchInfo_AddOpenFileAction()
35898 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_AddOpenFileAction()
35902 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_AddOpenFileAction()
35903 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBLaunchInfo_AddOpenFileAction()
35904 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBLaunchInfo_AddOpenFileAction()
35905 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBLaunchInfo_AddOpenFileAction()
35907 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_AddOpenFileAction()
35912 lua_error(L); in _wrap_SBLaunchInfo_AddOpenFileAction()
35917 static int _wrap_SBLaunchInfo_AddSuppressFileAction(lua_State* L) { in _wrap_SBLaunchInfo_AddSuppressFileAction() argument
35927 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",1,"lldb::SBLaun… in _wrap_SBLaunchInfo_AddSuppressFileAction()
35928 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",2,"int"); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35929 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",3,"bool"); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35930 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBLaunchInfo::AddSuppressFileAction",4,"bool"); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_AddSuppressFileAction()
35936 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35937 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35938 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35940 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_AddSuppressFileAction()
35945 lua_error(L); in _wrap_SBLaunchInfo_AddSuppressFileAction()
35950 static int _wrap_SBLaunchInfo_SetLaunchEventData(lua_State* L) { in _wrap_SBLaunchInfo_SetLaunchEventData() argument
35957 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchEventData",1,"lldb::SBLaunchI… in _wrap_SBLaunchInfo_SetLaunchEventData()
35958 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetLaunchEventData",2,"char cons… in _wrap_SBLaunchInfo_SetLaunchEventData()
35960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetLaunchEventData()
35964 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBLaunchInfo_SetLaunchEventData()
35971 lua_error(L); in _wrap_SBLaunchInfo_SetLaunchEventData()
35976 static int _wrap_SBLaunchInfo_GetLaunchEventData(lua_State* L) { in _wrap_SBLaunchInfo_GetLaunchEventData() argument
35983 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetLaunchEventData",1,"lldb::SBLaunchI… in _wrap_SBLaunchInfo_GetLaunchEventData()
35985 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetLaunchEventData()
35990 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetLaunchEventData()
35995 lua_error(L); in _wrap_SBLaunchInfo_GetLaunchEventData()
36000 static int _wrap_SBLaunchInfo_GetDetachOnError(lua_State* L) { in _wrap_SBLaunchInfo_GetDetachOnError() argument
36007 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetDetachOnError",1,"lldb::SBLaunchInf… in _wrap_SBLaunchInfo_GetDetachOnError()
36009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetDetachOnError()
36014 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLaunchInfo_GetDetachOnError()
36019 lua_error(L); in _wrap_SBLaunchInfo_GetDetachOnError()
36024 static int _wrap_SBLaunchInfo_SetDetachOnError(lua_State* L) { in _wrap_SBLaunchInfo_SetDetachOnError() argument
36031 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetDetachOnError",1,"lldb::SBLaunchInf… in _wrap_SBLaunchInfo_SetDetachOnError()
36032 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetDetachOnError",2,"bool"); in _wrap_SBLaunchInfo_SetDetachOnError()
36034 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetDetachOnError()
36038 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBLaunchInfo_SetDetachOnError()
36045 lua_error(L); in _wrap_SBLaunchInfo_SetDetachOnError()
36050 static int _wrap_SBLaunchInfo_GetScriptedProcessClassName(lua_State* L) { in _wrap_SBLaunchInfo_GetScriptedProcessClassName() argument
36057 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetScriptedProcessClassName",1,"lldb::… in _wrap_SBLaunchInfo_GetScriptedProcessClassName()
36059 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetScriptedProcessClassName()
36064 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBLaunchInfo_GetScriptedProcessClassName()
36069 lua_error(L); in _wrap_SBLaunchInfo_GetScriptedProcessClassName()
36074 static int _wrap_SBLaunchInfo_SetScriptedProcessClassName(lua_State* L) { in _wrap_SBLaunchInfo_SetScriptedProcessClassName() argument
36081 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessClassName",1,"lldb::… in _wrap_SBLaunchInfo_SetScriptedProcessClassName()
36082 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessClassName",2,"… in _wrap_SBLaunchInfo_SetScriptedProcessClassName()
36084 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetScriptedProcessClassName()
36088 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBLaunchInfo_SetScriptedProcessClassName()
36095 lua_error(L); in _wrap_SBLaunchInfo_SetScriptedProcessClassName()
36100 static int _wrap_SBLaunchInfo_GetScriptedProcessDictionary(lua_State* L) { in _wrap_SBLaunchInfo_GetScriptedProcessDictionary() argument
36107 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::GetScriptedProcessDictionary",1,"lldb:… in _wrap_SBLaunchInfo_GetScriptedProcessDictionary()
36109 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_GetScriptedProcessDictionary()
36116 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBLaunchInfo_GetScriptedProcessDictionary()
36122 lua_error(L); in _wrap_SBLaunchInfo_GetScriptedProcessDictionary()
36127 static int _wrap_SBLaunchInfo_SetScriptedProcessDictionary(lua_State* L) { in _wrap_SBLaunchInfo_SetScriptedProcessDictionary() argument
36135 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessDictionary",1,"lldb:… in _wrap_SBLaunchInfo_SetScriptedProcessDictionary()
36136 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLaunchInfo::SetScriptedProcessDictionary",2,"lldb:… in _wrap_SBLaunchInfo_SetScriptedProcessDictionary()
36138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBLaunchInfo_SetScriptedProcessDictionary()
36143 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBLaunchInfo_SetScriptedProcessDictionary()
36154 lua_error(L); in _wrap_SBLaunchInfo_SetScriptedProcessDictionary()
36163 static int _proxy__wrap_new_SBLaunchInfo(lua_State *L) { in _proxy__wrap_new_SBLaunchInfo() argument
36164 assert(lua_istable(L,1)); in _proxy__wrap_new_SBLaunchInfo()
36165 lua_pushcfunction(L,_wrap_new_SBLaunchInfo); in _proxy__wrap_new_SBLaunchInfo()
36166 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBLaunchInfo()
36167 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBLaunchInfo()
36168 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBLaunchInfo()
36252 static int _wrap_new_SBLineEntry__SWIG_0(lua_State* L) { in _wrap_new_SBLineEntry__SWIG_0() argument
36259 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++; in _wrap_new_SBLineEntry__SWIG_0()
36264 lua_error(L); in _wrap_new_SBLineEntry__SWIG_0()
36269 static int _wrap_new_SBLineEntry__SWIG_1(lua_State* L) { in _wrap_new_SBLineEntry__SWIG_1() argument
36276 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SBLineEntry",1,"lldb::SBLineEntry const… in _wrap_new_SBLineEntry__SWIG_1()
36278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_new_SBLineEntry__SWIG_1()
36283 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++; in _wrap_new_SBLineEntry__SWIG_1()
36288 lua_error(L); in _wrap_new_SBLineEntry__SWIG_1()
36293 static int _wrap_new_SBLineEntry(lua_State* L) { in _wrap_new_SBLineEntry() argument
36299 argc = lua_gettop(L); in _wrap_new_SBLineEntry()
36301 return _wrap_new_SBLineEntry__SWIG_0(L); in _wrap_new_SBLineEntry()
36307 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBLineEntry()
36314 return _wrap_new_SBLineEntry__SWIG_1(L); in _wrap_new_SBLineEntry()
36318 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBLineEntry'\n" in _wrap_new_SBLineEntry()
36322 lua_error(L);return 0; in _wrap_new_SBLineEntry()
36326 static int _wrap_SBLineEntry_GetStartAddress(lua_State* L) { in _wrap_SBLineEntry_GetStartAddress() argument
36333 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetStartAddress",1,"lldb::SBLineEntry c… in _wrap_SBLineEntry_GetStartAddress()
36335 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetStartAddress()
36342 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBLineEntry_GetStartAddress()
36348 lua_error(L); in _wrap_SBLineEntry_GetStartAddress()
36353 static int _wrap_SBLineEntry_GetEndAddress(lua_State* L) { in _wrap_SBLineEntry_GetEndAddress() argument
36360 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetEndAddress",1,"lldb::SBLineEntry con… in _wrap_SBLineEntry_GetEndAddress()
36362 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetEndAddress()
36369 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBLineEntry_GetEndAddress()
36375 lua_error(L); in _wrap_SBLineEntry_GetEndAddress()
36380 static int _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd(lua_State* L) { in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd() argument
36388 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetSameLineContiguousAddressRangeEnd",1… in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd()
36389 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBLineEntry::GetSameLineContiguousAddressRangeEnd",2,… in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd()
36391 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd()
36395 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd()
36399 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd()
36405 lua_error(L); in _wrap_SBLineEntry_GetSameLineContiguousAddressRangeEnd()
36410 static int _wrap_SBLineEntry_IsValid(lua_State* L) { in _wrap_SBLineEntry_IsValid() argument
36417 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::IsValid",1,"lldb::SBLineEntry const *"); in _wrap_SBLineEntry_IsValid()
36419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_IsValid()
36424 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLineEntry_IsValid()
36429 lua_error(L); in _wrap_SBLineEntry_IsValid()
36434 static int _wrap_SBLineEntry_GetFileSpec(lua_State* L) { in _wrap_SBLineEntry_GetFileSpec() argument
36441 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetFileSpec",1,"lldb::SBLineEntry const… in _wrap_SBLineEntry_GetFileSpec()
36443 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetFileSpec()
36450 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBLineEntry_GetFileSpec()
36456 lua_error(L); in _wrap_SBLineEntry_GetFileSpec()
36461 static int _wrap_SBLineEntry_GetLine(lua_State* L) { in _wrap_SBLineEntry_GetLine() argument
36468 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetLine",1,"lldb::SBLineEntry const *"); in _wrap_SBLineEntry_GetLine()
36470 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetLine()
36475 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLineEntry_GetLine()
36480 lua_error(L); in _wrap_SBLineEntry_GetLine()
36485 static int _wrap_SBLineEntry_GetColumn(lua_State* L) { in _wrap_SBLineEntry_GetColumn() argument
36492 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetColumn",1,"lldb::SBLineEntry const *… in _wrap_SBLineEntry_GetColumn()
36494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetColumn()
36499 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBLineEntry_GetColumn()
36504 lua_error(L); in _wrap_SBLineEntry_GetColumn()
36509 static int _wrap_SBLineEntry_SetFileSpec(lua_State* L) { in _wrap_SBLineEntry_SetFileSpec() argument
36517 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SetFileSpec",1,"lldb::SBLineEntry *"); in _wrap_SBLineEntry_SetFileSpec()
36518 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLineEntry::SetFileSpec",2,"lldb::SBFileSpec"); in _wrap_SBLineEntry_SetFileSpec()
36520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_SetFileSpec()
36525 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBLineEntry_SetFileSpec()
36536 lua_error(L); in _wrap_SBLineEntry_SetFileSpec()
36541 static int _wrap_SBLineEntry_SetLine(lua_State* L) { in _wrap_SBLineEntry_SetLine() argument
36548 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SetLine",1,"lldb::SBLineEntry *"); in _wrap_SBLineEntry_SetLine()
36549 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLineEntry::SetLine",2,"uint32_t"); in _wrap_SBLineEntry_SetLine()
36551 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_SetLine()
36555 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLineEntry_SetLine()
36562 lua_error(L); in _wrap_SBLineEntry_SetLine()
36567 static int _wrap_SBLineEntry_SetColumn(lua_State* L) { in _wrap_SBLineEntry_SetColumn() argument
36574 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::SetColumn",1,"lldb::SBLineEntry *"); in _wrap_SBLineEntry_SetColumn()
36575 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBLineEntry::SetColumn",2,"uint32_t"); in _wrap_SBLineEntry_SetColumn()
36577 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_SetColumn()
36581 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBLineEntry_SetColumn()
36588 lua_error(L); in _wrap_SBLineEntry_SetColumn()
36593 static int _wrap_SBLineEntry___eq(lua_State* L) { in _wrap_SBLineEntry___eq() argument
36601 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::operator ==",1,"lldb::SBLineEntry const… in _wrap_SBLineEntry___eq()
36602 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLineEntry::operator ==",2,"lldb::SBLineEntry const… in _wrap_SBLineEntry___eq()
36604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry___eq()
36609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry___eq()
36614 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLineEntry___eq()
36619 lua_error(L); in _wrap_SBLineEntry___eq()
36624 static int _wrap_SBLineEntry_GetDescription(lua_State* L) { in _wrap_SBLineEntry_GetDescription() argument
36632 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::GetDescription",1,"lldb::SBLineEntry *"… in _wrap_SBLineEntry_GetDescription()
36633 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBLineEntry::GetDescription",2,"lldb::SBStream &"); in _wrap_SBLineEntry_GetDescription()
36635 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry_GetDescription()
36640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBLineEntry_GetDescription()
36645 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBLineEntry_GetDescription()
36650 lua_error(L); in _wrap_SBLineEntry_GetDescription()
36655 static int _wrap_SBLineEntry___tostring(lua_State* L) { in _wrap_SBLineEntry___tostring() argument
36662 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBLineEntry::__repr__",1,"lldb::SBLineEntry *"); in _wrap_SBLineEntry___tostring()
36664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBLineEntry___tostring()
36669 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBLineEntry___tostring()
36674 lua_error(L); in _wrap_SBLineEntry___tostring()
36683 static int _proxy__wrap_new_SBLineEntry(lua_State *L) { in _proxy__wrap_new_SBLineEntry() argument
36684 assert(lua_istable(L,1)); in _proxy__wrap_new_SBLineEntry()
36685 lua_pushcfunction(L,_wrap_new_SBLineEntry); in _proxy__wrap_new_SBLineEntry()
36686 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBLineEntry()
36687 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBLineEntry()
36688 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBLineEntry()
36741 static int _wrap_new_SBListener__SWIG_0(lua_State* L) { in _wrap_new_SBListener__SWIG_0() argument
36748 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_new_SBListener__SWIG_0()
36753 lua_error(L); in _wrap_new_SBListener__SWIG_0()
36758 static int _wrap_new_SBListener__SWIG_1(lua_State* L) { in _wrap_new_SBListener__SWIG_1() argument
36765 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBListener::SBListener",1,"char const *"); in _wrap_new_SBListener__SWIG_1()
36766 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBListener__SWIG_1()
36768 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_new_SBListener__SWIG_1()
36773 lua_error(L); in _wrap_new_SBListener__SWIG_1()
36778 static int _wrap_new_SBListener__SWIG_2(lua_State* L) { in _wrap_new_SBListener__SWIG_2() argument
36785 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBListener::SBListener",1,"lldb::SBListener const &"… in _wrap_new_SBListener__SWIG_2()
36787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_new_SBListener__SWIG_2()
36792 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBListener,1); SWIG_arg++; in _wrap_new_SBListener__SWIG_2()
36797 lua_error(L); in _wrap_new_SBListener__SWIG_2()
36802 static int _wrap_new_SBListener(lua_State* L) { in _wrap_new_SBListener() argument
36808 argc = lua_gettop(L); in _wrap_new_SBListener()
36810 return _wrap_new_SBListener__SWIG_0(L); in _wrap_new_SBListener()
36816 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBListener()
36823 return _wrap_new_SBListener__SWIG_2(L); in _wrap_new_SBListener()
36829 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBListener()
36832 return _wrap_new_SBListener__SWIG_1(L); in _wrap_new_SBListener()
36836 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBListener'\n" in _wrap_new_SBListener()
36841 lua_error(L);return 0; in _wrap_new_SBListener()
36845 static int _wrap_SBListener_AddEvent(lua_State* L) { in _wrap_SBListener_AddEvent() argument
36852 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::AddEvent",1,"lldb::SBListener *"); in _wrap_SBListener_AddEvent()
36853 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::AddEvent",2,"lldb::SBEvent const &"); in _wrap_SBListener_AddEvent()
36855 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_AddEvent()
36860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_AddEvent()
36870 lua_error(L); in _wrap_SBListener_AddEvent()
36875 static int _wrap_SBListener_Clear(lua_State* L) { in _wrap_SBListener_Clear() argument
36881 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::Clear",1,"lldb::SBListener *"); in _wrap_SBListener_Clear()
36883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_Clear()
36893 lua_error(L); in _wrap_SBListener_Clear()
36898 static int _wrap_SBListener_IsValid(lua_State* L) { in _wrap_SBListener_IsValid() argument
36905 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::IsValid",1,"lldb::SBListener const *"); in _wrap_SBListener_IsValid()
36907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_IsValid()
36912 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_IsValid()
36917 lua_error(L); in _wrap_SBListener_IsValid()
36922 static int _wrap_SBListener_StartListeningForEventClass(lua_State* L) { in _wrap_SBListener_StartListeningForEventClass() argument
36932 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",1,"lldb::SB… in _wrap_SBListener_StartListeningForEventClass()
36933 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",2,"lldb::SB… in _wrap_SBListener_StartListeningForEventClass()
36934 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",3,"ch… in _wrap_SBListener_StartListeningForEventClass()
36935 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBListener::StartListeningForEventClass",4,"uint32_t"… in _wrap_SBListener_StartListeningForEventClass()
36937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_StartListeningForEventClass()
36942 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBListener_StartListeningForEventClass()
36946 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBListener_StartListeningForEventClass()
36947 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBListener_StartListeningForEventClass()
36949 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBListener_StartListeningForEventClass()
36954 lua_error(L); in _wrap_SBListener_StartListeningForEventClass()
36959 static int _wrap_SBListener_StopListeningForEventClass(lua_State* L) { in _wrap_SBListener_StopListeningForEventClass() argument
36969 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",1,"lldb::SBL… in _wrap_SBListener_StopListeningForEventClass()
36970 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",2,"lldb::SBD… in _wrap_SBListener_StopListeningForEventClass()
36971 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",3,"cha… in _wrap_SBListener_StopListeningForEventClass()
36972 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBListener::StopListeningForEventClass",4,"uint32_t"); in _wrap_SBListener_StopListeningForEventClass()
36974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_StopListeningForEventClass()
36979 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBListener_StopListeningForEventClass()
36983 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBListener_StopListeningForEventClass()
36984 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBListener_StopListeningForEventClass()
36986 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_StopListeningForEventClass()
36991 lua_error(L); in _wrap_SBListener_StopListeningForEventClass()
36996 static int _wrap_SBListener_StartListeningForEvents(lua_State* L) { in _wrap_SBListener_StartListeningForEvents() argument
37005 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StartListeningForEvents",1,"lldb::SBList… in _wrap_SBListener_StartListeningForEvents()
37006 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StartListeningForEvents",2,"lldb::SBBroa… in _wrap_SBListener_StartListeningForEvents()
37007 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::StartListeningForEvents",3,"uint32_t"); in _wrap_SBListener_StartListeningForEvents()
37009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_StartListeningForEvents()
37014 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_StartListeningForEvents()
37018 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBListener_StartListeningForEvents()
37020 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBListener_StartListeningForEvents()
37025 lua_error(L); in _wrap_SBListener_StartListeningForEvents()
37030 static int _wrap_SBListener_StopListeningForEvents(lua_State* L) { in _wrap_SBListener_StopListeningForEvents() argument
37039 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::StopListeningForEvents",1,"lldb::SBListe… in _wrap_SBListener_StopListeningForEvents()
37040 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::StopListeningForEvents",2,"lldb::SBBroad… in _wrap_SBListener_StopListeningForEvents()
37041 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::StopListeningForEvents",3,"uint32_t"); in _wrap_SBListener_StopListeningForEvents()
37043 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_StopListeningForEvents()
37048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_StopListeningForEvents()
37052 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBListener_StopListeningForEvents()
37054 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_StopListeningForEvents()
37059 lua_error(L); in _wrap_SBListener_StopListeningForEvents()
37064 static int _wrap_SBListener_WaitForEvent(lua_State* L) { in _wrap_SBListener_WaitForEvent() argument
37073 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::WaitForEvent",1,"lldb::SBListener *"); in _wrap_SBListener_WaitForEvent()
37074 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBListener::WaitForEvent",2,"uint32_t"); in _wrap_SBListener_WaitForEvent()
37075 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::WaitForEvent",3,"lldb::SBEvent &"); in _wrap_SBListener_WaitForEvent()
37077 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_WaitForEvent()
37081 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBListener_WaitForEvent()
37083 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_WaitForEvent()
37088 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_WaitForEvent()
37093 lua_error(L); in _wrap_SBListener_WaitForEvent()
37098 static int _wrap_SBListener_WaitForEventForBroadcaster(lua_State* L) { in _wrap_SBListener_WaitForEventForBroadcaster() argument
37108 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",1,"lldb::SBL… in _wrap_SBListener_WaitForEventForBroadcaster()
37109 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",2,"uint32_t"); in _wrap_SBListener_WaitForEventForBroadcaster()
37110 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",3,"lldb::SBB… in _wrap_SBListener_WaitForEventForBroadcaster()
37111 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcaster",4,"lldb::SBE… in _wrap_SBListener_WaitForEventForBroadcaster()
37113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_WaitForEventForBroadcaster()
37117 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBListener_WaitForEventForBroadcaster()
37119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_WaitForEventForBroadcaster()
37124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_WaitForEventForBroadcaster()
37129 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_WaitForEventForBroadcaster()
37134 lua_error(L); in _wrap_SBListener_WaitForEventForBroadcaster()
37139 static int _wrap_SBListener_WaitForEventForBroadcasterWithType(lua_State* L) { in _wrap_SBListener_WaitForEventForBroadcasterWithType() argument
37150 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",1,"l… in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37151 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",2,"ui… in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37152 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",3,"l… in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37153 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",4,"ui… in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37154 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBListener::WaitForEventForBroadcasterWithType",5,"l… in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37160 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37166 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37173 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37178 lua_error(L); in _wrap_SBListener_WaitForEventForBroadcasterWithType()
37183 static int _wrap_SBListener_PeekAtNextEvent(lua_State* L) { in _wrap_SBListener_PeekAtNextEvent() argument
37191 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEvent",1,"lldb::SBListener *"); in _wrap_SBListener_PeekAtNextEvent()
37192 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEvent",2,"lldb::SBEvent &"); in _wrap_SBListener_PeekAtNextEvent()
37194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_PeekAtNextEvent()
37199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_PeekAtNextEvent()
37204 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_PeekAtNextEvent()
37209 lua_error(L); in _wrap_SBListener_PeekAtNextEvent()
37214 static int _wrap_SBListener_PeekAtNextEventForBroadcaster(lua_State* L) { in _wrap_SBListener_PeekAtNextEventForBroadcaster() argument
37223 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcaster",1,"lldb::… in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37224 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcaster",2,"lldb::… in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37225 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcaster",3,"lldb::… in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37232 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37237 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37242 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37247 lua_error(L); in _wrap_SBListener_PeekAtNextEventForBroadcaster()
37252 static int _wrap_SBListener_PeekAtNextEventForBroadcasterWithType(lua_State* L) { in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType() argument
37262 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",1… in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37263 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",2… in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37264 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",3,… in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37265 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBListener::PeekAtNextEventForBroadcasterWithType",4… in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37267 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37272 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37276 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37283 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37288 lua_error(L); in _wrap_SBListener_PeekAtNextEventForBroadcasterWithType()
37293 static int _wrap_SBListener_GetNextEvent(lua_State* L) { in _wrap_SBListener_GetNextEvent() argument
37301 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::GetNextEvent",1,"lldb::SBListener *"); in _wrap_SBListener_GetNextEvent()
37302 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::GetNextEvent",2,"lldb::SBEvent &"); in _wrap_SBListener_GetNextEvent()
37304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_GetNextEvent()
37309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_GetNextEvent()
37314 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_GetNextEvent()
37319 lua_error(L); in _wrap_SBListener_GetNextEvent()
37324 static int _wrap_SBListener_GetNextEventForBroadcaster(lua_State* L) { in _wrap_SBListener_GetNextEventForBroadcaster() argument
37333 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcaster",1,"lldb::SBL… in _wrap_SBListener_GetNextEventForBroadcaster()
37334 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcaster",2,"lldb::SBB… in _wrap_SBListener_GetNextEventForBroadcaster()
37335 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcaster",3,"lldb::SBE… in _wrap_SBListener_GetNextEventForBroadcaster()
37337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_GetNextEventForBroadcaster()
37342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_GetNextEventForBroadcaster()
37347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_GetNextEventForBroadcaster()
37352 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_GetNextEventForBroadcaster()
37357 lua_error(L); in _wrap_SBListener_GetNextEventForBroadcaster()
37362 static int _wrap_SBListener_GetNextEventForBroadcasterWithType(lua_State* L) { in _wrap_SBListener_GetNextEventForBroadcasterWithType() argument
37372 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",1,"l… in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37373 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",2,"l… in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37374 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",3,"ui… in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37375 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBListener::GetNextEventForBroadcasterWithType",4,"l… in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37377 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBBroadcaster,0))){ in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37386 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37388 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37393 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37398 lua_error(L); in _wrap_SBListener_GetNextEventForBroadcasterWithType()
37403 static int _wrap_SBListener_HandleBroadcastEvent(lua_State* L) { in _wrap_SBListener_HandleBroadcastEvent() argument
37411 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBListener::HandleBroadcastEvent",1,"lldb::SBListene… in _wrap_SBListener_HandleBroadcastEvent()
37412 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBListener::HandleBroadcastEvent",2,"lldb::SBEvent c… in _wrap_SBListener_HandleBroadcastEvent()
37414 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBListener_HandleBroadcastEvent()
37419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBListener_HandleBroadcastEvent()
37424 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBListener_HandleBroadcastEvent()
37429 lua_error(L); in _wrap_SBListener_HandleBroadcastEvent()
37438 static int _proxy__wrap_new_SBListener(lua_State *L) { in _proxy__wrap_new_SBListener() argument
37439 assert(lua_istable(L,1)); in _proxy__wrap_new_SBListener()
37440 lua_pushcfunction(L,_wrap_new_SBListener); in _proxy__wrap_new_SBListener()
37441 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBListener()
37442 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBListener()
37443 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBListener()
37498 static int _wrap_new_SBMemoryRegionInfo__SWIG_0(lua_State* L) { in _wrap_new_SBMemoryRegionInfo__SWIG_0() argument
37505 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++; in _wrap_new_SBMemoryRegionInfo__SWIG_0()
37510 lua_error(L); in _wrap_new_SBMemoryRegionInfo__SWIG_0()
37515 static int _wrap_new_SBMemoryRegionInfo__SWIG_1(lua_State* L) { in _wrap_new_SBMemoryRegionInfo__SWIG_1() argument
37522 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",1,"lldb::SBM… in _wrap_new_SBMemoryRegionInfo__SWIG_1()
37524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_new_SBMemoryRegionInfo__SWIG_1()
37529 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++; in _wrap_new_SBMemoryRegionInfo__SWIG_1()
37534 lua_error(L); in _wrap_new_SBMemoryRegionInfo__SWIG_1()
37539 static int _wrap_new_SBMemoryRegionInfo__SWIG_2(lua_State* L) { in _wrap_new_SBMemoryRegionInfo__SWIG_2() argument
37551 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",1,"cha… in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37552 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",2,"lldb::addr… in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37553 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",3,"lldb::addr… in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37554 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",4,"uint32_t"); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37555 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",5,"bool"); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37556 if(!lua_isboolean(L,6)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",6,"bool"); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37557 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37558 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37559 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37560 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37561 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37562 arg6 = (lua_toboolean(L, 6)!=0); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37564 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++; in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37569 lua_error(L); in _wrap_new_SBMemoryRegionInfo__SWIG_2()
37574 static int _wrap_new_SBMemoryRegionInfo__SWIG_3(lua_State* L) { in _wrap_new_SBMemoryRegionInfo__SWIG_3() argument
37585 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",1,"cha… in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37586 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",2,"lldb::addr… in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37587 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",3,"lldb::addr… in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37588 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",4,"uint32_t"); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37589 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::SBMemoryRegionInfo",5,"bool"); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37590 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37591 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37592 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37593 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37594 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37596 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfo,1); SWIG_arg++; in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37601 lua_error(L); in _wrap_new_SBMemoryRegionInfo__SWIG_3()
37606 static int _wrap_new_SBMemoryRegionInfo(lua_State* L) { in _wrap_new_SBMemoryRegionInfo() argument
37612 argc = lua_gettop(L); in _wrap_new_SBMemoryRegionInfo()
37614 return _wrap_new_SBMemoryRegionInfo__SWIG_0(L); in _wrap_new_SBMemoryRegionInfo()
37620 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBMemoryRegionInfo()
37627 return _wrap_new_SBMemoryRegionInfo__SWIG_1(L); in _wrap_new_SBMemoryRegionInfo()
37633 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBMemoryRegionInfo()
37637 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBMemoryRegionInfo()
37641 _v = lua_isnumber(L,argv[2]); in _wrap_new_SBMemoryRegionInfo()
37645 _v = lua_isnumber(L,argv[3]); in _wrap_new_SBMemoryRegionInfo()
37649 _v = lua_isboolean(L,argv[4]); in _wrap_new_SBMemoryRegionInfo()
37652 return _wrap_new_SBMemoryRegionInfo__SWIG_3(L); in _wrap_new_SBMemoryRegionInfo()
37662 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBMemoryRegionInfo()
37666 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBMemoryRegionInfo()
37670 _v = lua_isnumber(L,argv[2]); in _wrap_new_SBMemoryRegionInfo()
37674 _v = lua_isnumber(L,argv[3]); in _wrap_new_SBMemoryRegionInfo()
37678 _v = lua_isboolean(L,argv[4]); in _wrap_new_SBMemoryRegionInfo()
37682 _v = lua_isboolean(L,argv[5]); in _wrap_new_SBMemoryRegionInfo()
37685 return _wrap_new_SBMemoryRegionInfo__SWIG_2(L); in _wrap_new_SBMemoryRegionInfo()
37694 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBMemoryRegionInfo'\n" in _wrap_new_SBMemoryRegionInfo()
37700 lua_error(L);return 0; in _wrap_new_SBMemoryRegionInfo()
37704 static int _wrap_SBMemoryRegionInfo_Clear(lua_State* L) { in _wrap_SBMemoryRegionInfo_Clear() argument
37710 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::Clear",1,"lldb::SBMemoryRegionIn… in _wrap_SBMemoryRegionInfo_Clear()
37712 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_Clear()
37722 lua_error(L); in _wrap_SBMemoryRegionInfo_Clear()
37727 static int _wrap_SBMemoryRegionInfo_GetRegionBase(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetRegionBase() argument
37734 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetRegionBase",1,"lldb::SBMemory… in _wrap_SBMemoryRegionInfo_GetRegionBase()
37736 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetRegionBase()
37741 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetRegionBase()
37746 lua_error(L); in _wrap_SBMemoryRegionInfo_GetRegionBase()
37751 static int _wrap_SBMemoryRegionInfo_GetRegionEnd(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetRegionEnd() argument
37758 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetRegionEnd",1,"lldb::SBMemoryR… in _wrap_SBMemoryRegionInfo_GetRegionEnd()
37760 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetRegionEnd()
37765 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetRegionEnd()
37770 lua_error(L); in _wrap_SBMemoryRegionInfo_GetRegionEnd()
37775 static int _wrap_SBMemoryRegionInfo_IsReadable(lua_State* L) { in _wrap_SBMemoryRegionInfo_IsReadable() argument
37782 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsReadable",1,"lldb::SBMemoryReg… in _wrap_SBMemoryRegionInfo_IsReadable()
37784 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_IsReadable()
37789 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo_IsReadable()
37794 lua_error(L); in _wrap_SBMemoryRegionInfo_IsReadable()
37799 static int _wrap_SBMemoryRegionInfo_IsWritable(lua_State* L) { in _wrap_SBMemoryRegionInfo_IsWritable() argument
37806 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsWritable",1,"lldb::SBMemoryReg… in _wrap_SBMemoryRegionInfo_IsWritable()
37808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_IsWritable()
37813 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo_IsWritable()
37818 lua_error(L); in _wrap_SBMemoryRegionInfo_IsWritable()
37823 static int _wrap_SBMemoryRegionInfo_IsExecutable(lua_State* L) { in _wrap_SBMemoryRegionInfo_IsExecutable() argument
37830 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsExecutable",1,"lldb::SBMemoryR… in _wrap_SBMemoryRegionInfo_IsExecutable()
37832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_IsExecutable()
37837 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo_IsExecutable()
37842 lua_error(L); in _wrap_SBMemoryRegionInfo_IsExecutable()
37847 static int _wrap_SBMemoryRegionInfo_IsMapped(lua_State* L) { in _wrap_SBMemoryRegionInfo_IsMapped() argument
37854 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::IsMapped",1,"lldb::SBMemoryRegio… in _wrap_SBMemoryRegionInfo_IsMapped()
37856 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_IsMapped()
37861 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo_IsMapped()
37866 lua_error(L); in _wrap_SBMemoryRegionInfo_IsMapped()
37871 static int _wrap_SBMemoryRegionInfo_GetName(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetName() argument
37878 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetName",1,"lldb::SBMemoryRegion… in _wrap_SBMemoryRegionInfo_GetName()
37880 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetName()
37885 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetName()
37890 lua_error(L); in _wrap_SBMemoryRegionInfo_GetName()
37895 static int _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList(lua_State* L) { in _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList() argument
37902 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::HasDirtyMemoryPageList",1,"lldb:… in _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList()
37904 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList()
37909 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList()
37914 lua_error(L); in _wrap_SBMemoryRegionInfo_HasDirtyMemoryPageList()
37919 static int _wrap_SBMemoryRegionInfo_GetNumDirtyPages(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetNumDirtyPages() argument
37926 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetNumDirtyPages",1,"lldb::SBMem… in _wrap_SBMemoryRegionInfo_GetNumDirtyPages()
37928 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetNumDirtyPages()
37933 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetNumDirtyPages()
37938 lua_error(L); in _wrap_SBMemoryRegionInfo_GetNumDirtyPages()
37943 static int _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex() argument
37951 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDirtyPageAddressAtIndex",1,"l… in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex()
37952 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDirtyPageAddressAtIndex",2,"ui… in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex()
37954 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex()
37958 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex()
37960 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex()
37965 lua_error(L); in _wrap_SBMemoryRegionInfo_GetDirtyPageAddressAtIndex()
37970 static int _wrap_SBMemoryRegionInfo_GetPageSize(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetPageSize() argument
37977 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetPageSize",1,"lldb::SBMemoryRe… in _wrap_SBMemoryRegionInfo_GetPageSize()
37979 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetPageSize()
37984 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetPageSize()
37989 lua_error(L); in _wrap_SBMemoryRegionInfo_GetPageSize()
37994 static int _wrap_SBMemoryRegionInfo___eq(lua_State* L) { in _wrap_SBMemoryRegionInfo___eq() argument
38002 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::operator ==",1,"lldb::SBMemoryRe… in _wrap_SBMemoryRegionInfo___eq()
38003 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::operator ==",2,"lldb::SBMemoryRe… in _wrap_SBMemoryRegionInfo___eq()
38005 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo___eq()
38010 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo___eq()
38015 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo___eq()
38020 lua_error(L); in _wrap_SBMemoryRegionInfo___eq()
38025 static int _wrap_SBMemoryRegionInfo_GetDescription(lua_State* L) { in _wrap_SBMemoryRegionInfo_GetDescription() argument
38033 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDescription",1,"lldb::SBMemor… in _wrap_SBMemoryRegionInfo_GetDescription()
38034 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::GetDescription",2,"lldb::SBStrea… in _wrap_SBMemoryRegionInfo_GetDescription()
38036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo_GetDescription()
38041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBMemoryRegionInfo_GetDescription()
38046 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfo_GetDescription()
38051 lua_error(L); in _wrap_SBMemoryRegionInfo_GetDescription()
38056 static int _wrap_SBMemoryRegionInfo___tostring(lua_State* L) { in _wrap_SBMemoryRegionInfo___tostring() argument
38063 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfo::__repr__",1,"lldb::SBMemoryRegio… in _wrap_SBMemoryRegionInfo___tostring()
38065 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfo___tostring()
38070 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBMemoryRegionInfo___tostring()
38075 lua_error(L); in _wrap_SBMemoryRegionInfo___tostring()
38084 static int _proxy__wrap_new_SBMemoryRegionInfo(lua_State *L) { in _proxy__wrap_new_SBMemoryRegionInfo() argument
38085 assert(lua_istable(L,1)); in _proxy__wrap_new_SBMemoryRegionInfo()
38086 lua_pushcfunction(L,_wrap_new_SBMemoryRegionInfo); in _proxy__wrap_new_SBMemoryRegionInfo()
38087 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBMemoryRegionInfo()
38088 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBMemoryRegionInfo()
38089 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBMemoryRegionInfo()
38144 static int _wrap_new_SBMemoryRegionInfoList__SWIG_0(lua_State* L) { in _wrap_new_SBMemoryRegionInfoList__SWIG_0() argument
38151 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,1); SWIG_arg++; in _wrap_new_SBMemoryRegionInfoList__SWIG_0()
38156 lua_error(L); in _wrap_new_SBMemoryRegionInfoList__SWIG_0()
38161 static int _wrap_new_SBMemoryRegionInfoList__SWIG_1(lua_State* L) { in _wrap_new_SBMemoryRegionInfoList__SWIG_1() argument
38168 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::SBMemoryRegionInfoList",1,"l… in _wrap_new_SBMemoryRegionInfoList__SWIG_1()
38170 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_new_SBMemoryRegionInfoList__SWIG_1()
38175 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,1); SWIG_arg++; in _wrap_new_SBMemoryRegionInfoList__SWIG_1()
38180 lua_error(L); in _wrap_new_SBMemoryRegionInfoList__SWIG_1()
38185 static int _wrap_new_SBMemoryRegionInfoList(lua_State* L) { in _wrap_new_SBMemoryRegionInfoList() argument
38191 argc = lua_gettop(L); in _wrap_new_SBMemoryRegionInfoList()
38193 return _wrap_new_SBMemoryRegionInfoList__SWIG_0(L); in _wrap_new_SBMemoryRegionInfoList()
38199 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBMemoryRegionInfoList()
38206 return _wrap_new_SBMemoryRegionInfoList__SWIG_1(L); in _wrap_new_SBMemoryRegionInfoList()
38210 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBMemoryRegionInfoList'\n" in _wrap_new_SBMemoryRegionInfoList()
38214 lua_error(L);return 0; in _wrap_new_SBMemoryRegionInfoList()
38218 static int _wrap_SBMemoryRegionInfoList_GetSize(lua_State* L) { in _wrap_SBMemoryRegionInfoList_GetSize() argument
38225 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetSize",1,"lldb::SBMemoryRe… in _wrap_SBMemoryRegionInfoList_GetSize()
38227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_GetSize()
38232 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBMemoryRegionInfoList_GetSize()
38237 lua_error(L); in _wrap_SBMemoryRegionInfoList_GetSize()
38242 static int _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress(lua_State* L) { in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress() argument
38251 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionContainingAdd… in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38252 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionContainingAddr… in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38253 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionContainingAdd… in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38255 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38259 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38261 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38266 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38271 lua_error(L); in _wrap_SBMemoryRegionInfoList_GetMemoryRegionContainingAddress()
38276 static int _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex(lua_State* L) { in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex() argument
38285 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionAtIndex",1,"l… in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38286 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionAtIndex",2,"ui… in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38287 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::GetMemoryRegionAtIndex",3,"l… in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38289 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38293 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38295 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38300 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38305 lua_error(L); in _wrap_SBMemoryRegionInfoList_GetMemoryRegionAtIndex()
38310 static int _wrap_SBMemoryRegionInfoList_Append__SWIG_0(lua_State* L) { in _wrap_SBMemoryRegionInfoList_Append__SWIG_0() argument
38317 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",1,"lldb::SBMemoryReg… in _wrap_SBMemoryRegionInfoList_Append__SWIG_0()
38318 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",2,"lldb::SBMemoryReg… in _wrap_SBMemoryRegionInfoList_Append__SWIG_0()
38320 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_Append__SWIG_0()
38325 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBMemoryRegionInfoList_Append__SWIG_0()
38335 lua_error(L); in _wrap_SBMemoryRegionInfoList_Append__SWIG_0()
38340 static int _wrap_SBMemoryRegionInfoList_Append__SWIG_1(lua_State* L) { in _wrap_SBMemoryRegionInfoList_Append__SWIG_1() argument
38347 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",1,"lldb::SBMemoryReg… in _wrap_SBMemoryRegionInfoList_Append__SWIG_1()
38348 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Append",2,"lldb::SBMemoryReg… in _wrap_SBMemoryRegionInfoList_Append__SWIG_1()
38350 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_Append__SWIG_1()
38355 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_Append__SWIG_1()
38365 lua_error(L); in _wrap_SBMemoryRegionInfoList_Append__SWIG_1()
38370 static int _wrap_SBMemoryRegionInfoList_Append(lua_State* L) { in _wrap_SBMemoryRegionInfoList_Append() argument
38376 argc = lua_gettop(L); in _wrap_SBMemoryRegionInfoList_Append()
38381 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBMemoryRegionInfoList_Append()
38390 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBMemoryRegionInfoList_Append()
38397 return _wrap_SBMemoryRegionInfoList_Append__SWIG_0(L); in _wrap_SBMemoryRegionInfoList_Append()
38405 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBMemoryRegionInfoList_Append()
38414 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBMemoryRegionInfoList_Append()
38421 return _wrap_SBMemoryRegionInfoList_Append__SWIG_1(L); in _wrap_SBMemoryRegionInfoList_Append()
38426 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBMemoryRegionInfoList_Append'\… in _wrap_SBMemoryRegionInfoList_Append()
38430 lua_error(L);return 0; in _wrap_SBMemoryRegionInfoList_Append()
38434 static int _wrap_SBMemoryRegionInfoList_Clear(lua_State* L) { in _wrap_SBMemoryRegionInfoList_Clear() argument
38440 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBMemoryRegionInfoList::Clear",1,"lldb::SBMemoryRegi… in _wrap_SBMemoryRegionInfoList_Clear()
38442 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,0))){ in _wrap_SBMemoryRegionInfoList_Clear()
38452 lua_error(L); in _wrap_SBMemoryRegionInfoList_Clear()
38461 static int _proxy__wrap_new_SBMemoryRegionInfoList(lua_State *L) { in _proxy__wrap_new_SBMemoryRegionInfoList() argument
38462 assert(lua_istable(L,1)); in _proxy__wrap_new_SBMemoryRegionInfoList()
38463 lua_pushcfunction(L,_wrap_new_SBMemoryRegionInfoList); in _proxy__wrap_new_SBMemoryRegionInfoList()
38464 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBMemoryRegionInfoList()
38465 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBMemoryRegionInfoList()
38466 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBMemoryRegionInfoList()
38509 static int _wrap_new_SBModule__SWIG_0(lua_State* L) { in _wrap_new_SBModule__SWIG_0() argument
38516 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_new_SBModule__SWIG_0()
38521 lua_error(L); in _wrap_new_SBModule__SWIG_0()
38526 static int _wrap_new_SBModule__SWIG_1(lua_State* L) { in _wrap_new_SBModule__SWIG_1() argument
38533 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModule::SBModule",1,"lldb::SBModule const &"); in _wrap_new_SBModule__SWIG_1()
38535 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_new_SBModule__SWIG_1()
38540 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_new_SBModule__SWIG_1()
38545 lua_error(L); in _wrap_new_SBModule__SWIG_1()
38550 static int _wrap_new_SBModule__SWIG_2(lua_State* L) { in _wrap_new_SBModule__SWIG_2() argument
38557 … if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModule::SBModule",1,"lldb::SBModuleSpec const &"); in _wrap_new_SBModule__SWIG_2()
38559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_new_SBModule__SWIG_2()
38564 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_new_SBModule__SWIG_2()
38569 lua_error(L); in _wrap_new_SBModule__SWIG_2()
38574 static int _wrap_new_SBModule__SWIG_3(lua_State* L) { in _wrap_new_SBModule__SWIG_3() argument
38582 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModule::SBModule",1,"lldb::SBProcess &"); in _wrap_new_SBModule__SWIG_3()
38583 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::SBModule",2,"lldb::addr_t"); in _wrap_new_SBModule__SWIG_3()
38585 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_new_SBModule__SWIG_3()
38589 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_new_SBModule__SWIG_3()
38591 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_new_SBModule__SWIG_3()
38596 lua_error(L); in _wrap_new_SBModule__SWIG_3()
38601 static int _wrap_new_SBModule(lua_State* L) { in _wrap_new_SBModule() argument
38607 argc = lua_gettop(L); in _wrap_new_SBModule()
38609 return _wrap_new_SBModule__SWIG_0(L); in _wrap_new_SBModule()
38615 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBModule()
38622 return _wrap_new_SBModule__SWIG_1(L); in _wrap_new_SBModule()
38629 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBModule()
38636 return _wrap_new_SBModule__SWIG_2(L); in _wrap_new_SBModule()
38643 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBModule()
38651 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBModule()
38654 return _wrap_new_SBModule__SWIG_3(L); in _wrap_new_SBModule()
38659 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBModule'\n" in _wrap_new_SBModule()
38665 lua_error(L);return 0; in _wrap_new_SBModule()
38669 static int _wrap_SBModule_IsValid(lua_State* L) { in _wrap_SBModule_IsValid() argument
38676 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::IsValid",1,"lldb::SBModule const *"); in _wrap_SBModule_IsValid()
38678 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_IsValid()
38683 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModule_IsValid()
38688 lua_error(L); in _wrap_SBModule_IsValid()
38693 static int _wrap_SBModule_Clear(lua_State* L) { in _wrap_SBModule_Clear() argument
38699 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::Clear",1,"lldb::SBModule *"); in _wrap_SBModule_Clear()
38701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_Clear()
38711 lua_error(L); in _wrap_SBModule_Clear()
38716 static int _wrap_SBModule_IsFileBacked(lua_State* L) { in _wrap_SBModule_IsFileBacked() argument
38723 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::IsFileBacked",1,"lldb::SBModule const *"); in _wrap_SBModule_IsFileBacked()
38725 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_IsFileBacked()
38730 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModule_IsFileBacked()
38735 lua_error(L); in _wrap_SBModule_IsFileBacked()
38740 static int _wrap_SBModule_GetFileSpec(lua_State* L) { in _wrap_SBModule_GetFileSpec() argument
38747 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetFileSpec",1,"lldb::SBModule const *"); in _wrap_SBModule_GetFileSpec()
38749 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetFileSpec()
38756 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModule_GetFileSpec()
38762 lua_error(L); in _wrap_SBModule_GetFileSpec()
38767 static int _wrap_SBModule_GetPlatformFileSpec(lua_State* L) { in _wrap_SBModule_GetPlatformFileSpec() argument
38774 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetPlatformFileSpec",1,"lldb::SBModule con… in _wrap_SBModule_GetPlatformFileSpec()
38776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetPlatformFileSpec()
38783 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModule_GetPlatformFileSpec()
38789 lua_error(L); in _wrap_SBModule_GetPlatformFileSpec()
38794 static int _wrap_SBModule_SetPlatformFileSpec(lua_State* L) { in _wrap_SBModule_SetPlatformFileSpec() argument
38802 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::SetPlatformFileSpec",1,"lldb::SBModule *"); in _wrap_SBModule_SetPlatformFileSpec()
38803 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::SetPlatformFileSpec",2,"lldb::SBFileSpec c… in _wrap_SBModule_SetPlatformFileSpec()
38805 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_SetPlatformFileSpec()
38810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBModule_SetPlatformFileSpec()
38815 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModule_SetPlatformFileSpec()
38820 lua_error(L); in _wrap_SBModule_SetPlatformFileSpec()
38825 static int _wrap_SBModule_GetRemoteInstallFileSpec(lua_State* L) { in _wrap_SBModule_GetRemoteInstallFileSpec() argument
38832 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetRemoteInstallFileSpec",1,"lldb::SBModul… in _wrap_SBModule_GetRemoteInstallFileSpec()
38834 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetRemoteInstallFileSpec()
38841 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModule_GetRemoteInstallFileSpec()
38847 lua_error(L); in _wrap_SBModule_GetRemoteInstallFileSpec()
38852 static int _wrap_SBModule_SetRemoteInstallFileSpec(lua_State* L) { in _wrap_SBModule_SetRemoteInstallFileSpec() argument
38860 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::SetRemoteInstallFileSpec",1,"lldb::SBModul… in _wrap_SBModule_SetRemoteInstallFileSpec()
38861 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::SetRemoteInstallFileSpec",2,"lldb::SBFileS… in _wrap_SBModule_SetRemoteInstallFileSpec()
38863 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_SetRemoteInstallFileSpec()
38868 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBModule_SetRemoteInstallFileSpec()
38873 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModule_SetRemoteInstallFileSpec()
38878 lua_error(L); in _wrap_SBModule_SetRemoteInstallFileSpec()
38883 static int _wrap_SBModule_GetByteOrder(lua_State* L) { in _wrap_SBModule_GetByteOrder() argument
38890 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetByteOrder",1,"lldb::SBModule *"); in _wrap_SBModule_GetByteOrder()
38892 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetByteOrder()
38897 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetByteOrder()
38902 lua_error(L); in _wrap_SBModule_GetByteOrder()
38907 static int _wrap_SBModule_GetAddressByteSize(lua_State* L) { in _wrap_SBModule_GetAddressByteSize() argument
38914 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetAddressByteSize",1,"lldb::SBModule *"); in _wrap_SBModule_GetAddressByteSize()
38916 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetAddressByteSize()
38921 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetAddressByteSize()
38926 lua_error(L); in _wrap_SBModule_GetAddressByteSize()
38931 static int _wrap_SBModule_GetTriple(lua_State* L) { in _wrap_SBModule_GetTriple() argument
38938 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTriple",1,"lldb::SBModule *"); in _wrap_SBModule_GetTriple()
38940 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetTriple()
38945 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBModule_GetTriple()
38950 lua_error(L); in _wrap_SBModule_GetTriple()
38955 static int _wrap_SBModule_GetUUIDBytes(lua_State* L) { in _wrap_SBModule_GetUUIDBytes() argument
38962 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetUUIDBytes",1,"lldb::SBModule const *"); in _wrap_SBModule_GetUUIDBytes()
38964 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetUUIDBytes()
38969 SWIG_NewPointerObj(L,result,SWIGTYPE_p_unsigned_char,0); SWIG_arg++; in _wrap_SBModule_GetUUIDBytes()
38974 lua_error(L); in _wrap_SBModule_GetUUIDBytes()
38979 static int _wrap_SBModule_GetUUIDString(lua_State* L) { in _wrap_SBModule_GetUUIDString() argument
38986 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetUUIDString",1,"lldb::SBModule const *"); in _wrap_SBModule_GetUUIDString()
38988 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetUUIDString()
38993 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBModule_GetUUIDString()
38998 lua_error(L); in _wrap_SBModule_GetUUIDString()
39003 static int _wrap_SBModule___eq(lua_State* L) { in _wrap_SBModule___eq() argument
39011 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::operator ==",1,"lldb::SBModule const *"); in _wrap_SBModule___eq()
39012 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::operator ==",2,"lldb::SBModule const &"); in _wrap_SBModule___eq()
39014 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule___eq()
39019 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule___eq()
39024 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModule___eq()
39029 lua_error(L); in _wrap_SBModule___eq()
39034 static int _wrap_SBModule_FindSection(lua_State* L) { in _wrap_SBModule_FindSection() argument
39042 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSection",1,"lldb::SBModule *"); in _wrap_SBModule_FindSection()
39043 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSection",2,"char const *"); in _wrap_SBModule_FindSection()
39045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindSection()
39049 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindSection()
39053 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_SBModule_FindSection()
39059 lua_error(L); in _wrap_SBModule_FindSection()
39064 static int _wrap_SBModule_ResolveFileAddress(lua_State* L) { in _wrap_SBModule_ResolveFileAddress() argument
39072 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::ResolveFileAddress",1,"lldb::SBModule *"); in _wrap_SBModule_ResolveFileAddress()
39073 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::ResolveFileAddress",2,"lldb::addr_t"); in _wrap_SBModule_ResolveFileAddress()
39075 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_ResolveFileAddress()
39079 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBModule_ResolveFileAddress()
39083 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBModule_ResolveFileAddress()
39089 lua_error(L); in _wrap_SBModule_ResolveFileAddress()
39094 static int _wrap_SBModule_ResolveSymbolContextForAddress(lua_State* L) { in _wrap_SBModule_ResolveSymbolContextForAddress() argument
39103 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::ResolveSymbolContextForAddress",1,"lldb::S… in _wrap_SBModule_ResolveSymbolContextForAddress()
39104 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::ResolveSymbolContextForAddress",2,"lldb::S… in _wrap_SBModule_ResolveSymbolContextForAddress()
39105 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::ResolveSymbolContextForAddress",3,"uint32_t… in _wrap_SBModule_ResolveSymbolContextForAddress()
39107 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_ResolveSymbolContextForAddress()
39112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBModule_ResolveSymbolContextForAddress()
39116 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBModule_ResolveSymbolContextForAddress()
39120 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_SBModule_ResolveSymbolContextForAddress()
39126 lua_error(L); in _wrap_SBModule_ResolveSymbolContextForAddress()
39131 static int _wrap_SBModule_GetDescription(lua_State* L) { in _wrap_SBModule_GetDescription() argument
39139 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetDescription",1,"lldb::SBModule *"); in _wrap_SBModule_GetDescription()
39140 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::GetDescription",2,"lldb::SBStream &"); in _wrap_SBModule_GetDescription()
39142 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetDescription()
39147 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBModule_GetDescription()
39152 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModule_GetDescription()
39157 lua_error(L); in _wrap_SBModule_GetDescription()
39162 static int _wrap_SBModule_GetNumCompileUnits(lua_State* L) { in _wrap_SBModule_GetNumCompileUnits() argument
39169 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetNumCompileUnits",1,"lldb::SBModule *"); in _wrap_SBModule_GetNumCompileUnits()
39171 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetNumCompileUnits()
39176 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetNumCompileUnits()
39181 lua_error(L); in _wrap_SBModule_GetNumCompileUnits()
39186 static int _wrap_SBModule_GetCompileUnitAtIndex(lua_State* L) { in _wrap_SBModule_GetCompileUnitAtIndex() argument
39194 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetCompileUnitAtIndex",1,"lldb::SBModule *… in _wrap_SBModule_GetCompileUnitAtIndex()
39195 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetCompileUnitAtIndex",2,"uint32_t"); in _wrap_SBModule_GetCompileUnitAtIndex()
39197 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetCompileUnitAtIndex()
39201 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBModule_GetCompileUnitAtIndex()
39205 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++; in _wrap_SBModule_GetCompileUnitAtIndex()
39211 lua_error(L); in _wrap_SBModule_GetCompileUnitAtIndex()
39216 static int _wrap_SBModule_FindCompileUnits(lua_State* L) { in _wrap_SBModule_FindCompileUnits() argument
39224 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindCompileUnits",1,"lldb::SBModule *"); in _wrap_SBModule_FindCompileUnits()
39225 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::FindCompileUnits",2,"lldb::SBFileSpec cons… in _wrap_SBModule_FindCompileUnits()
39227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindCompileUnits()
39232 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBModule_FindCompileUnits()
39239 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBModule_FindCompileUnits()
39245 lua_error(L); in _wrap_SBModule_FindCompileUnits()
39250 static int _wrap_SBModule_GetNumSymbols(lua_State* L) { in _wrap_SBModule_GetNumSymbols() argument
39257 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetNumSymbols",1,"lldb::SBModule *"); in _wrap_SBModule_GetNumSymbols()
39259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetNumSymbols()
39264 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetNumSymbols()
39269 lua_error(L); in _wrap_SBModule_GetNumSymbols()
39274 static int _wrap_SBModule_GetSymbolAtIndex(lua_State* L) { in _wrap_SBModule_GetSymbolAtIndex() argument
39282 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetSymbolAtIndex",1,"lldb::SBModule *"); in _wrap_SBModule_GetSymbolAtIndex()
39283 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetSymbolAtIndex",2,"size_t"); in _wrap_SBModule_GetSymbolAtIndex()
39285 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetSymbolAtIndex()
39289 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBModule_GetSymbolAtIndex()
39293 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_SBModule_GetSymbolAtIndex()
39299 lua_error(L); in _wrap_SBModule_GetSymbolAtIndex()
39304 static int _wrap_SBModule_FindSymbol__SWIG_0(lua_State* L) { in _wrap_SBModule_FindSymbol__SWIG_0() argument
39313 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbol",1,"lldb::SBModule *"); in _wrap_SBModule_FindSymbol__SWIG_0()
39314 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbol",2,"char const *"); in _wrap_SBModule_FindSymbol__SWIG_0()
39315 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::FindSymbol",3,"lldb::SymbolType"); in _wrap_SBModule_FindSymbol__SWIG_0()
39317 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindSymbol__SWIG_0()
39321 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindSymbol__SWIG_0()
39322 arg3 = (lldb::SymbolType)lua_tointeger(L, 3); in _wrap_SBModule_FindSymbol__SWIG_0()
39326 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_SBModule_FindSymbol__SWIG_0()
39332 lua_error(L); in _wrap_SBModule_FindSymbol__SWIG_0()
39337 static int _wrap_SBModule_FindSymbol__SWIG_1(lua_State* L) { in _wrap_SBModule_FindSymbol__SWIG_1() argument
39345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbol",1,"lldb::SBModule *"); in _wrap_SBModule_FindSymbol__SWIG_1()
39346 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbol",2,"char const *"); in _wrap_SBModule_FindSymbol__SWIG_1()
39348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindSymbol__SWIG_1()
39352 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindSymbol__SWIG_1()
39356 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_SBModule_FindSymbol__SWIG_1()
39362 lua_error(L); in _wrap_SBModule_FindSymbol__SWIG_1()
39367 static int _wrap_SBModule_FindSymbol(lua_State* L) { in _wrap_SBModule_FindSymbol() argument
39373 argc = lua_gettop(L); in _wrap_SBModule_FindSymbol()
39378 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_FindSymbol()
39386 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBModule_FindSymbol()
39389 return _wrap_SBModule_FindSymbol__SWIG_1(L); in _wrap_SBModule_FindSymbol()
39397 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_FindSymbol()
39405 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBModule_FindSymbol()
39409 _v = lua_isnumber(L,argv[2]); in _wrap_SBModule_FindSymbol()
39412 return _wrap_SBModule_FindSymbol__SWIG_0(L); in _wrap_SBModule_FindSymbol()
39418 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_FindSymbol'\n" in _wrap_SBModule_FindSymbol()
39422 lua_error(L);return 0; in _wrap_SBModule_FindSymbol()
39426 static int _wrap_SBModule_FindSymbols__SWIG_0(lua_State* L) { in _wrap_SBModule_FindSymbols__SWIG_0() argument
39435 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbols",1,"lldb::SBModule *"); in _wrap_SBModule_FindSymbols__SWIG_0()
39436 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbols",2,"char const *"); in _wrap_SBModule_FindSymbols__SWIG_0()
39437 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::FindSymbols",3,"lldb::SymbolType"); in _wrap_SBModule_FindSymbols__SWIG_0()
39439 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindSymbols__SWIG_0()
39443 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindSymbols__SWIG_0()
39444 arg3 = (lldb::SymbolType)lua_tointeger(L, 3); in _wrap_SBModule_FindSymbols__SWIG_0()
39448 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBModule_FindSymbols__SWIG_0()
39454 lua_error(L); in _wrap_SBModule_FindSymbols__SWIG_0()
39459 static int _wrap_SBModule_FindSymbols__SWIG_1(lua_State* L) { in _wrap_SBModule_FindSymbols__SWIG_1() argument
39467 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindSymbols",1,"lldb::SBModule *"); in _wrap_SBModule_FindSymbols__SWIG_1()
39468 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindSymbols",2,"char const *"); in _wrap_SBModule_FindSymbols__SWIG_1()
39470 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindSymbols__SWIG_1()
39474 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindSymbols__SWIG_1()
39478 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBModule_FindSymbols__SWIG_1()
39484 lua_error(L); in _wrap_SBModule_FindSymbols__SWIG_1()
39489 static int _wrap_SBModule_FindSymbols(lua_State* L) { in _wrap_SBModule_FindSymbols() argument
39495 argc = lua_gettop(L); in _wrap_SBModule_FindSymbols()
39500 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_FindSymbols()
39508 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBModule_FindSymbols()
39511 return _wrap_SBModule_FindSymbols__SWIG_1(L); in _wrap_SBModule_FindSymbols()
39519 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_FindSymbols()
39527 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBModule_FindSymbols()
39531 _v = lua_isnumber(L,argv[2]); in _wrap_SBModule_FindSymbols()
39534 return _wrap_SBModule_FindSymbols__SWIG_0(L); in _wrap_SBModule_FindSymbols()
39540 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_FindSymbols'\n" in _wrap_SBModule_FindSymbols()
39544 lua_error(L);return 0; in _wrap_SBModule_FindSymbols()
39548 static int _wrap_SBModule_GetNumSections(lua_State* L) { in _wrap_SBModule_GetNumSections() argument
39555 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetNumSections",1,"lldb::SBModule *"); in _wrap_SBModule_GetNumSections()
39557 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetNumSections()
39562 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetNumSections()
39567 lua_error(L); in _wrap_SBModule_GetNumSections()
39572 static int _wrap_SBModule_GetSectionAtIndex(lua_State* L) { in _wrap_SBModule_GetSectionAtIndex() argument
39580 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetSectionAtIndex",1,"lldb::SBModule *"); in _wrap_SBModule_GetSectionAtIndex()
39581 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetSectionAtIndex",2,"size_t"); in _wrap_SBModule_GetSectionAtIndex()
39583 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetSectionAtIndex()
39587 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBModule_GetSectionAtIndex()
39591 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_SBModule_GetSectionAtIndex()
39597 lua_error(L); in _wrap_SBModule_GetSectionAtIndex()
39602 static int _wrap_SBModule_FindFunctions__SWIG_0(lua_State* L) { in _wrap_SBModule_FindFunctions__SWIG_0() argument
39611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFunctions",1,"lldb::SBModule *"); in _wrap_SBModule_FindFunctions__SWIG_0()
39612 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindFunctions",2,"char const *"); in _wrap_SBModule_FindFunctions__SWIG_0()
39613 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModule::FindFunctions",3,"uint32_t"); in _wrap_SBModule_FindFunctions__SWIG_0()
39615 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindFunctions__SWIG_0()
39619 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindFunctions__SWIG_0()
39620 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBModule_FindFunctions__SWIG_0()
39624 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBModule_FindFunctions__SWIG_0()
39630 lua_error(L); in _wrap_SBModule_FindFunctions__SWIG_0()
39635 static int _wrap_SBModule_FindFunctions__SWIG_1(lua_State* L) { in _wrap_SBModule_FindFunctions__SWIG_1() argument
39643 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFunctions",1,"lldb::SBModule *"); in _wrap_SBModule_FindFunctions__SWIG_1()
39644 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindFunctions",2,"char const *"); in _wrap_SBModule_FindFunctions__SWIG_1()
39646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindFunctions__SWIG_1()
39650 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindFunctions__SWIG_1()
39654 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBModule_FindFunctions__SWIG_1()
39660 lua_error(L); in _wrap_SBModule_FindFunctions__SWIG_1()
39665 static int _wrap_SBModule_FindFunctions(lua_State* L) { in _wrap_SBModule_FindFunctions() argument
39671 argc = lua_gettop(L); in _wrap_SBModule_FindFunctions()
39676 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_FindFunctions()
39684 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBModule_FindFunctions()
39687 return _wrap_SBModule_FindFunctions__SWIG_1(L); in _wrap_SBModule_FindFunctions()
39695 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_FindFunctions()
39703 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBModule_FindFunctions()
39707 _v = lua_isnumber(L,argv[2]); in _wrap_SBModule_FindFunctions()
39710 return _wrap_SBModule_FindFunctions__SWIG_0(L); in _wrap_SBModule_FindFunctions()
39716 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_FindFunctions'\n" in _wrap_SBModule_FindFunctions()
39720 lua_error(L);return 0; in _wrap_SBModule_FindFunctions()
39724 static int _wrap_SBModule_FindGlobalVariables(lua_State* L) { in _wrap_SBModule_FindGlobalVariables() argument
39734 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",1,"lldb::SBModule *"); in _wrap_SBModule_FindGlobalVariables()
39735 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",2,"lldb::SBTarget &"); in _wrap_SBModule_FindGlobalVariables()
39736 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",3,"char const *… in _wrap_SBModule_FindGlobalVariables()
39737 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBModule::FindGlobalVariables",4,"uint32_t"); in _wrap_SBModule_FindGlobalVariables()
39739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindGlobalVariables()
39744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBModule_FindGlobalVariables()
39748 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBModule_FindGlobalVariables()
39749 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBModule_FindGlobalVariables()
39753 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBModule_FindGlobalVariables()
39759 lua_error(L); in _wrap_SBModule_FindGlobalVariables()
39764 static int _wrap_SBModule_FindFirstGlobalVariable(lua_State* L) { in _wrap_SBModule_FindFirstGlobalVariable() argument
39773 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFirstGlobalVariable",1,"lldb::SBModule… in _wrap_SBModule_FindFirstGlobalVariable()
39774 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModule::FindFirstGlobalVariable",2,"lldb::SBTarget… in _wrap_SBModule_FindFirstGlobalVariable()
39775 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBModule::FindFirstGlobalVariable",3,"char con… in _wrap_SBModule_FindFirstGlobalVariable()
39777 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindFirstGlobalVariable()
39782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBModule_FindFirstGlobalVariable()
39786 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBModule_FindFirstGlobalVariable()
39790 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBModule_FindFirstGlobalVariable()
39796 lua_error(L); in _wrap_SBModule_FindFirstGlobalVariable()
39801 static int _wrap_SBModule_FindFirstType(lua_State* L) { in _wrap_SBModule_FindFirstType() argument
39809 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindFirstType",1,"lldb::SBModule *"); in _wrap_SBModule_FindFirstType()
39810 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindFirstType",2,"char const *"); in _wrap_SBModule_FindFirstType()
39812 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindFirstType()
39816 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindFirstType()
39820 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBModule_FindFirstType()
39826 lua_error(L); in _wrap_SBModule_FindFirstType()
39831 static int _wrap_SBModule_FindTypes(lua_State* L) { in _wrap_SBModule_FindTypes() argument
39839 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::FindTypes",1,"lldb::SBModule *"); in _wrap_SBModule_FindTypes()
39840 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModule::FindTypes",2,"char const *"); in _wrap_SBModule_FindTypes()
39842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_FindTypes()
39846 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModule_FindTypes()
39850 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBModule_FindTypes()
39856 lua_error(L); in _wrap_SBModule_FindTypes()
39861 static int _wrap_SBModule_GetTypeByID(lua_State* L) { in _wrap_SBModule_GetTypeByID() argument
39869 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTypeByID",1,"lldb::SBModule *"); in _wrap_SBModule_GetTypeByID()
39870 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetTypeByID",2,"lldb::user_id_t"); in _wrap_SBModule_GetTypeByID()
39872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetTypeByID()
39876 arg2 = (lldb::user_id_t)lua_tointeger(L, 2); in _wrap_SBModule_GetTypeByID()
39880 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBModule_GetTypeByID()
39886 lua_error(L); in _wrap_SBModule_GetTypeByID()
39891 static int _wrap_SBModule_GetBasicType(lua_State* L) { in _wrap_SBModule_GetBasicType() argument
39899 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetBasicType",1,"lldb::SBModule *"); in _wrap_SBModule_GetBasicType()
39900 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetBasicType",2,"lldb::BasicType"); in _wrap_SBModule_GetBasicType()
39902 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetBasicType()
39906 arg2 = (lldb::BasicType)lua_tointeger(L, 2); in _wrap_SBModule_GetBasicType()
39910 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBModule_GetBasicType()
39916 lua_error(L); in _wrap_SBModule_GetBasicType()
39921 static int _wrap_SBModule_GetTypes__SWIG_0(lua_State* L) { in _wrap_SBModule_GetTypes__SWIG_0() argument
39929 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTypes",1,"lldb::SBModule *"); in _wrap_SBModule_GetTypes__SWIG_0()
39930 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModule::GetTypes",2,"uint32_t"); in _wrap_SBModule_GetTypes__SWIG_0()
39932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetTypes__SWIG_0()
39936 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBModule_GetTypes__SWIG_0()
39940 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBModule_GetTypes__SWIG_0()
39946 lua_error(L); in _wrap_SBModule_GetTypes__SWIG_0()
39951 static int _wrap_SBModule_GetTypes__SWIG_1(lua_State* L) { in _wrap_SBModule_GetTypes__SWIG_1() argument
39958 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetTypes",1,"lldb::SBModule *"); in _wrap_SBModule_GetTypes__SWIG_1()
39960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetTypes__SWIG_1()
39967 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBModule_GetTypes__SWIG_1()
39973 lua_error(L); in _wrap_SBModule_GetTypes__SWIG_1()
39978 static int _wrap_SBModule_GetTypes(lua_State* L) { in _wrap_SBModule_GetTypes() argument
39984 argc = lua_gettop(L); in _wrap_SBModule_GetTypes()
39989 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_GetTypes()
39996 return _wrap_SBModule_GetTypes__SWIG_1(L); in _wrap_SBModule_GetTypes()
40003 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModule_GetTypes()
40011 _v = lua_isnumber(L,argv[1]); in _wrap_SBModule_GetTypes()
40014 return _wrap_SBModule_GetTypes__SWIG_0(L); in _wrap_SBModule_GetTypes()
40019 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModule_GetTypes'\n" in _wrap_SBModule_GetTypes()
40023 lua_error(L);return 0; in _wrap_SBModule_GetTypes()
40027 static int _wrap_SBModule_GetVersion(lua_State* L) { in _wrap_SBModule_GetVersion() argument
40036 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetVersion",1,"lldb::SBModule *"); in _wrap_SBModule_GetVersion()
40038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetVersion()
40047 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetVersion()
40052 lua_newtable(L); in _wrap_SBModule_GetVersion()
40055 lua_pushinteger(L, arg2[i - 1]); in _wrap_SBModule_GetVersion()
40056 lua_seti(L, -2, i); in _wrap_SBModule_GetVersion()
40065 lua_error(L); in _wrap_SBModule_GetVersion()
40070 static int _wrap_SBModule_GetSymbolFileSpec(lua_State* L) { in _wrap_SBModule_GetSymbolFileSpec() argument
40077 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetSymbolFileSpec",1,"lldb::SBModule const… in _wrap_SBModule_GetSymbolFileSpec()
40079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetSymbolFileSpec()
40086 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModule_GetSymbolFileSpec()
40092 lua_error(L); in _wrap_SBModule_GetSymbolFileSpec()
40097 static int _wrap_SBModule_GetObjectFileHeaderAddress(lua_State* L) { in _wrap_SBModule_GetObjectFileHeaderAddress() argument
40104 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetObjectFileHeaderAddress",1,"lldb::SBMod… in _wrap_SBModule_GetObjectFileHeaderAddress()
40106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetObjectFileHeaderAddress()
40113 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBModule_GetObjectFileHeaderAddress()
40119 lua_error(L); in _wrap_SBModule_GetObjectFileHeaderAddress()
40124 static int _wrap_SBModule_GetObjectFileEntryPointAddress(lua_State* L) { in _wrap_SBModule_GetObjectFileEntryPointAddress() argument
40131 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::GetObjectFileEntryPointAddress",1,"lldb::S… in _wrap_SBModule_GetObjectFileEntryPointAddress()
40133 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule_GetObjectFileEntryPointAddress()
40140 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBModule_GetObjectFileEntryPointAddress()
40146 lua_error(L); in _wrap_SBModule_GetObjectFileEntryPointAddress()
40151 static int _wrap_SBModule_GetNumberAllocatedModules(lua_State* L) { in _wrap_SBModule_GetNumberAllocatedModules() argument
40158 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModule_GetNumberAllocatedModules()
40163 lua_error(L); in _wrap_SBModule_GetNumberAllocatedModules()
40168 static int _wrap_SBModule_GarbageCollectAllocatedModules(lua_State* L) { in _wrap_SBModule_GarbageCollectAllocatedModules() argument
40179 lua_error(L); in _wrap_SBModule_GarbageCollectAllocatedModules()
40184 static int _wrap_SBModule___tostring(lua_State* L) { in _wrap_SBModule___tostring() argument
40191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModule::__repr__",1,"lldb::SBModule *"); in _wrap_SBModule___tostring()
40193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBModule___tostring()
40198 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBModule___tostring()
40203 lua_error(L); in _wrap_SBModule___tostring()
40212 static int _proxy__wrap_new_SBModule(lua_State *L) { in _proxy__wrap_new_SBModule() argument
40213 assert(lua_istable(L,1)); in _proxy__wrap_new_SBModule()
40214 lua_pushcfunction(L,_wrap_new_SBModule); in _proxy__wrap_new_SBModule()
40215 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBModule()
40216 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBModule()
40217 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBModule()
40299 static int _wrap_new_SBModuleSpec__SWIG_0(lua_State* L) { in _wrap_new_SBModuleSpec__SWIG_0() argument
40306 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++; in _wrap_new_SBModuleSpec__SWIG_0()
40311 lua_error(L); in _wrap_new_SBModuleSpec__SWIG_0()
40316 static int _wrap_new_SBModuleSpec__SWIG_1(lua_State* L) { in _wrap_new_SBModuleSpec__SWIG_1() argument
40323 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SBModuleSpec",1,"lldb::SBModuleSpec co… in _wrap_new_SBModuleSpec__SWIG_1()
40325 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_new_SBModuleSpec__SWIG_1()
40330 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++; in _wrap_new_SBModuleSpec__SWIG_1()
40335 lua_error(L); in _wrap_new_SBModuleSpec__SWIG_1()
40340 static int _wrap_new_SBModuleSpec(lua_State* L) { in _wrap_new_SBModuleSpec() argument
40346 argc = lua_gettop(L); in _wrap_new_SBModuleSpec()
40348 return _wrap_new_SBModuleSpec__SWIG_0(L); in _wrap_new_SBModuleSpec()
40354 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBModuleSpec()
40361 return _wrap_new_SBModuleSpec__SWIG_1(L); in _wrap_new_SBModuleSpec()
40365 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBModuleSpec'\n" in _wrap_new_SBModuleSpec()
40369 lua_error(L);return 0; in _wrap_new_SBModuleSpec()
40373 static int _wrap_SBModuleSpec_IsValid(lua_State* L) { in _wrap_SBModuleSpec_IsValid() argument
40380 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::IsValid",1,"lldb::SBModuleSpec const *… in _wrap_SBModuleSpec_IsValid()
40382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_IsValid()
40387 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModuleSpec_IsValid()
40392 lua_error(L); in _wrap_SBModuleSpec_IsValid()
40397 static int _wrap_SBModuleSpec_Clear(lua_State* L) { in _wrap_SBModuleSpec_Clear() argument
40403 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::Clear",1,"lldb::SBModuleSpec *"); in _wrap_SBModuleSpec_Clear()
40405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_Clear()
40415 lua_error(L); in _wrap_SBModuleSpec_Clear()
40420 static int _wrap_SBModuleSpec_GetFileSpec(lua_State* L) { in _wrap_SBModuleSpec_GetFileSpec() argument
40427 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetFileSpec",1,"lldb::SBModuleSpec *"); in _wrap_SBModuleSpec_GetFileSpec()
40429 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetFileSpec()
40436 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModuleSpec_GetFileSpec()
40442 lua_error(L); in _wrap_SBModuleSpec_GetFileSpec()
40447 static int _wrap_SBModuleSpec_SetFileSpec(lua_State* L) { in _wrap_SBModuleSpec_SetFileSpec() argument
40454 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetFileSpec",1,"lldb::SBModuleSpec *"); in _wrap_SBModuleSpec_SetFileSpec()
40455 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetFileSpec",2,"lldb::SBFileSpec const… in _wrap_SBModuleSpec_SetFileSpec()
40457 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetFileSpec()
40462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBModuleSpec_SetFileSpec()
40472 lua_error(L); in _wrap_SBModuleSpec_SetFileSpec()
40477 static int _wrap_SBModuleSpec_GetPlatformFileSpec(lua_State* L) { in _wrap_SBModuleSpec_GetPlatformFileSpec() argument
40484 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetPlatformFileSpec",1,"lldb::SBModule… in _wrap_SBModuleSpec_GetPlatformFileSpec()
40486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetPlatformFileSpec()
40493 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModuleSpec_GetPlatformFileSpec()
40499 lua_error(L); in _wrap_SBModuleSpec_GetPlatformFileSpec()
40504 static int _wrap_SBModuleSpec_SetPlatformFileSpec(lua_State* L) { in _wrap_SBModuleSpec_SetPlatformFileSpec() argument
40511 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetPlatformFileSpec",1,"lldb::SBModule… in _wrap_SBModuleSpec_SetPlatformFileSpec()
40512 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetPlatformFileSpec",2,"lldb::SBFileSp… in _wrap_SBModuleSpec_SetPlatformFileSpec()
40514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetPlatformFileSpec()
40519 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBModuleSpec_SetPlatformFileSpec()
40529 lua_error(L); in _wrap_SBModuleSpec_SetPlatformFileSpec()
40534 static int _wrap_SBModuleSpec_GetSymbolFileSpec(lua_State* L) { in _wrap_SBModuleSpec_GetSymbolFileSpec() argument
40541 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetSymbolFileSpec",1,"lldb::SBModuleSp… in _wrap_SBModuleSpec_GetSymbolFileSpec()
40543 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetSymbolFileSpec()
40550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBModuleSpec_GetSymbolFileSpec()
40556 lua_error(L); in _wrap_SBModuleSpec_GetSymbolFileSpec()
40561 static int _wrap_SBModuleSpec_SetSymbolFileSpec(lua_State* L) { in _wrap_SBModuleSpec_SetSymbolFileSpec() argument
40568 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetSymbolFileSpec",1,"lldb::SBModuleSp… in _wrap_SBModuleSpec_SetSymbolFileSpec()
40569 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetSymbolFileSpec",2,"lldb::SBFileSpec… in _wrap_SBModuleSpec_SetSymbolFileSpec()
40571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetSymbolFileSpec()
40576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBModuleSpec_SetSymbolFileSpec()
40586 lua_error(L); in _wrap_SBModuleSpec_SetSymbolFileSpec()
40591 static int _wrap_SBModuleSpec_GetObjectName(lua_State* L) { in _wrap_SBModuleSpec_GetObjectName() argument
40598 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetObjectName",1,"lldb::SBModuleSpec *… in _wrap_SBModuleSpec_GetObjectName()
40600 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetObjectName()
40605 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBModuleSpec_GetObjectName()
40610 lua_error(L); in _wrap_SBModuleSpec_GetObjectName()
40615 static int _wrap_SBModuleSpec_SetObjectName(lua_State* L) { in _wrap_SBModuleSpec_SetObjectName() argument
40622 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectName",1,"lldb::SBModuleSpec *… in _wrap_SBModuleSpec_SetObjectName()
40623 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectName",2,"char const *"); in _wrap_SBModuleSpec_SetObjectName()
40625 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetObjectName()
40629 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModuleSpec_SetObjectName()
40636 lua_error(L); in _wrap_SBModuleSpec_SetObjectName()
40641 static int _wrap_SBModuleSpec_GetTriple(lua_State* L) { in _wrap_SBModuleSpec_GetTriple() argument
40648 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetTriple",1,"lldb::SBModuleSpec *"); in _wrap_SBModuleSpec_GetTriple()
40650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetTriple()
40655 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBModuleSpec_GetTriple()
40660 lua_error(L); in _wrap_SBModuleSpec_GetTriple()
40665 static int _wrap_SBModuleSpec_SetTriple(lua_State* L) { in _wrap_SBModuleSpec_SetTriple() argument
40672 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetTriple",1,"lldb::SBModuleSpec *"); in _wrap_SBModuleSpec_SetTriple()
40673 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetTriple",2,"char const *"); in _wrap_SBModuleSpec_SetTriple()
40675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetTriple()
40679 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBModuleSpec_SetTriple()
40686 lua_error(L); in _wrap_SBModuleSpec_SetTriple()
40691 static int _wrap_SBModuleSpec_GetUUIDBytes(lua_State* L) { in _wrap_SBModuleSpec_GetUUIDBytes() argument
40698 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetUUIDBytes",1,"lldb::SBModuleSpec *"… in _wrap_SBModuleSpec_GetUUIDBytes()
40700 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetUUIDBytes()
40705 SWIG_NewPointerObj(L,result,SWIGTYPE_p_unsigned_char,0); SWIG_arg++; in _wrap_SBModuleSpec_GetUUIDBytes()
40710 lua_error(L); in _wrap_SBModuleSpec_GetUUIDBytes()
40715 static int _wrap_SBModuleSpec_GetUUIDLength(lua_State* L) { in _wrap_SBModuleSpec_GetUUIDLength() argument
40722 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetUUIDLength",1,"lldb::SBModuleSpec *… in _wrap_SBModuleSpec_GetUUIDLength()
40724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetUUIDLength()
40729 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModuleSpec_GetUUIDLength()
40734 lua_error(L); in _wrap_SBModuleSpec_GetUUIDLength()
40739 static int _wrap_SBModuleSpec_SetUUIDBytes(lua_State* L) { in _wrap_SBModuleSpec_SetUUIDBytes() argument
40748 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetUUIDBytes",1,"lldb::SBModuleSpec *"… in _wrap_SBModuleSpec_SetUUIDBytes()
40749 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetUUIDBytes",2,"uint8_t const *"); in _wrap_SBModuleSpec_SetUUIDBytes()
40750 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBModuleSpec::SetUUIDBytes",3,"size_t"); in _wrap_SBModuleSpec_SetUUIDBytes()
40752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetUUIDBytes()
40757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_unsigned_char,0))){ in _wrap_SBModuleSpec_SetUUIDBytes()
40761 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBModuleSpec_SetUUIDBytes()
40763 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModuleSpec_SetUUIDBytes()
40768 lua_error(L); in _wrap_SBModuleSpec_SetUUIDBytes()
40773 static int _wrap_SBModuleSpec_GetObjectOffset(lua_State* L) { in _wrap_SBModuleSpec_GetObjectOffset() argument
40780 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetObjectOffset",1,"lldb::SBModuleSpec… in _wrap_SBModuleSpec_GetObjectOffset()
40782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetObjectOffset()
40787 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModuleSpec_GetObjectOffset()
40792 lua_error(L); in _wrap_SBModuleSpec_GetObjectOffset()
40797 static int _wrap_SBModuleSpec_SetObjectOffset(lua_State* L) { in _wrap_SBModuleSpec_SetObjectOffset() argument
40804 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectOffset",1,"lldb::SBModuleSpec… in _wrap_SBModuleSpec_SetObjectOffset()
40805 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectOffset",2,"uint64_t"); in _wrap_SBModuleSpec_SetObjectOffset()
40807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetObjectOffset()
40811 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBModuleSpec_SetObjectOffset()
40818 lua_error(L); in _wrap_SBModuleSpec_SetObjectOffset()
40823 static int _wrap_SBModuleSpec_GetObjectSize(lua_State* L) { in _wrap_SBModuleSpec_GetObjectSize() argument
40830 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetObjectSize",1,"lldb::SBModuleSpec *… in _wrap_SBModuleSpec_GetObjectSize()
40832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetObjectSize()
40837 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModuleSpec_GetObjectSize()
40842 lua_error(L); in _wrap_SBModuleSpec_GetObjectSize()
40847 static int _wrap_SBModuleSpec_SetObjectSize(lua_State* L) { in _wrap_SBModuleSpec_SetObjectSize() argument
40854 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectSize",1,"lldb::SBModuleSpec *… in _wrap_SBModuleSpec_SetObjectSize()
40855 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::SetObjectSize",2,"uint64_t"); in _wrap_SBModuleSpec_SetObjectSize()
40857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_SetObjectSize()
40861 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBModuleSpec_SetObjectSize()
40868 lua_error(L); in _wrap_SBModuleSpec_SetObjectSize()
40873 static int _wrap_SBModuleSpec_GetDescription(lua_State* L) { in _wrap_SBModuleSpec_GetDescription() argument
40881 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::GetDescription",1,"lldb::SBModuleSpec … in _wrap_SBModuleSpec_GetDescription()
40882 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpec::GetDescription",2,"lldb::SBStream &"); in _wrap_SBModuleSpec_GetDescription()
40884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec_GetDescription()
40889 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBModuleSpec_GetDescription()
40894 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModuleSpec_GetDescription()
40899 lua_error(L); in _wrap_SBModuleSpec_GetDescription()
40904 static int _wrap_SBModuleSpec___tostring(lua_State* L) { in _wrap_SBModuleSpec___tostring() argument
40911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpec::__repr__",1,"lldb::SBModuleSpec *"); in _wrap_SBModuleSpec___tostring()
40913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpec___tostring()
40918 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBModuleSpec___tostring()
40923 lua_error(L); in _wrap_SBModuleSpec___tostring()
40932 static int _proxy__wrap_new_SBModuleSpec(lua_State *L) { in _proxy__wrap_new_SBModuleSpec() argument
40933 assert(lua_istable(L,1)); in _proxy__wrap_new_SBModuleSpec()
40934 lua_pushcfunction(L,_wrap_new_SBModuleSpec); in _proxy__wrap_new_SBModuleSpec()
40935 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBModuleSpec()
40936 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBModuleSpec()
40937 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBModuleSpec()
40997 static int _wrap_new_SBModuleSpecList__SWIG_0(lua_State* L) { in _wrap_new_SBModuleSpecList__SWIG_0() argument
41004 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++; in _wrap_new_SBModuleSpecList__SWIG_0()
41009 lua_error(L); in _wrap_new_SBModuleSpecList__SWIG_0()
41014 static int _wrap_new_SBModuleSpecList__SWIG_1(lua_State* L) { in _wrap_new_SBModuleSpecList__SWIG_1() argument
41021 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::SBModuleSpecList",1,"lldb::SBModul… in _wrap_new_SBModuleSpecList__SWIG_1()
41023 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_new_SBModuleSpecList__SWIG_1()
41028 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++; in _wrap_new_SBModuleSpecList__SWIG_1()
41033 lua_error(L); in _wrap_new_SBModuleSpecList__SWIG_1()
41038 static int _wrap_new_SBModuleSpecList(lua_State* L) { in _wrap_new_SBModuleSpecList() argument
41044 argc = lua_gettop(L); in _wrap_new_SBModuleSpecList()
41046 return _wrap_new_SBModuleSpecList__SWIG_0(L); in _wrap_new_SBModuleSpecList()
41052 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBModuleSpecList()
41059 return _wrap_new_SBModuleSpecList__SWIG_1(L); in _wrap_new_SBModuleSpecList()
41063 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBModuleSpecList'\n" in _wrap_new_SBModuleSpecList()
41067 lua_error(L);return 0; in _wrap_new_SBModuleSpecList()
41071 static int _wrap_SBModuleSpecList_GetModuleSpecifications(lua_State* L) { in _wrap_SBModuleSpecList_GetModuleSpecifications() argument
41078 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetModuleSpecifications",1,"… in _wrap_SBModuleSpecList_GetModuleSpecifications()
41079 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBModuleSpecList_GetModuleSpecifications()
41083 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++; in _wrap_SBModuleSpecList_GetModuleSpecifications()
41089 lua_error(L); in _wrap_SBModuleSpecList_GetModuleSpecifications()
41094 static int _wrap_SBModuleSpecList_Append__SWIG_0(lua_State* L) { in _wrap_SBModuleSpecList_Append__SWIG_0() argument
41101 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",1,"lldb::SBModuleSpecList … in _wrap_SBModuleSpecList_Append__SWIG_0()
41102 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",2,"lldb::SBModuleSpec cons… in _wrap_SBModuleSpecList_Append__SWIG_0()
41104 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_Append__SWIG_0()
41109 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpecList_Append__SWIG_0()
41119 lua_error(L); in _wrap_SBModuleSpecList_Append__SWIG_0()
41124 static int _wrap_SBModuleSpecList_Append__SWIG_1(lua_State* L) { in _wrap_SBModuleSpecList_Append__SWIG_1() argument
41131 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",1,"lldb::SBModuleSpecList … in _wrap_SBModuleSpecList_Append__SWIG_1()
41132 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::Append",2,"lldb::SBModuleSpecList … in _wrap_SBModuleSpecList_Append__SWIG_1()
41134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_Append__SWIG_1()
41139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_Append__SWIG_1()
41149 lua_error(L); in _wrap_SBModuleSpecList_Append__SWIG_1()
41154 static int _wrap_SBModuleSpecList_Append(lua_State* L) { in _wrap_SBModuleSpecList_Append() argument
41160 argc = lua_gettop(L); in _wrap_SBModuleSpecList_Append()
41165 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModuleSpecList_Append()
41174 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModuleSpecList_Append()
41181 return _wrap_SBModuleSpecList_Append__SWIG_0(L); in _wrap_SBModuleSpecList_Append()
41189 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModuleSpecList_Append()
41198 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBModuleSpecList_Append()
41205 return _wrap_SBModuleSpecList_Append__SWIG_1(L); in _wrap_SBModuleSpecList_Append()
41210 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBModuleSpecList_Append'\n" in _wrap_SBModuleSpecList_Append()
41214 lua_error(L);return 0; in _wrap_SBModuleSpecList_Append()
41218 static int _wrap_SBModuleSpecList_FindFirstMatchingSpec(lua_State* L) { in _wrap_SBModuleSpecList_FindFirstMatchingSpec() argument
41226 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::FindFirstMatchingSpec",1,"lldb::SB… in _wrap_SBModuleSpecList_FindFirstMatchingSpec()
41227 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::FindFirstMatchingSpec",2,"lldb::SB… in _wrap_SBModuleSpecList_FindFirstMatchingSpec()
41229 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_FindFirstMatchingSpec()
41234 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpecList_FindFirstMatchingSpec()
41241 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++; in _wrap_SBModuleSpecList_FindFirstMatchingSpec()
41247 lua_error(L); in _wrap_SBModuleSpecList_FindFirstMatchingSpec()
41252 static int _wrap_SBModuleSpecList_FindMatchingSpecs(lua_State* L) { in _wrap_SBModuleSpecList_FindMatchingSpecs() argument
41260 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::FindMatchingSpecs",1,"lldb::SBModu… in _wrap_SBModuleSpecList_FindMatchingSpecs()
41261 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::FindMatchingSpecs",2,"lldb::SBModu… in _wrap_SBModuleSpecList_FindMatchingSpecs()
41263 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_FindMatchingSpecs()
41268 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBModuleSpecList_FindMatchingSpecs()
41275 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpecList,1); SWIG_arg++; in _wrap_SBModuleSpecList_FindMatchingSpecs()
41281 lua_error(L); in _wrap_SBModuleSpecList_FindMatchingSpecs()
41286 static int _wrap_SBModuleSpecList_GetSize(lua_State* L) { in _wrap_SBModuleSpecList_GetSize() argument
41293 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetSize",1,"lldb::SBModuleSpecList… in _wrap_SBModuleSpecList_GetSize()
41295 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_GetSize()
41300 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBModuleSpecList_GetSize()
41305 lua_error(L); in _wrap_SBModuleSpecList_GetSize()
41310 static int _wrap_SBModuleSpecList_GetSpecAtIndex(lua_State* L) { in _wrap_SBModuleSpecList_GetSpecAtIndex() argument
41318 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetSpecAtIndex",1,"lldb::SBModuleS… in _wrap_SBModuleSpecList_GetSpecAtIndex()
41319 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::GetSpecAtIndex",2,"size_t"); in _wrap_SBModuleSpecList_GetSpecAtIndex()
41321 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_GetSpecAtIndex()
41325 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBModuleSpecList_GetSpecAtIndex()
41329 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModuleSpec,1); SWIG_arg++; in _wrap_SBModuleSpecList_GetSpecAtIndex()
41335 lua_error(L); in _wrap_SBModuleSpecList_GetSpecAtIndex()
41340 static int _wrap_SBModuleSpecList_GetDescription(lua_State* L) { in _wrap_SBModuleSpecList_GetDescription() argument
41348 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::GetDescription",1,"lldb::SBModuleS… in _wrap_SBModuleSpecList_GetDescription()
41349 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBModuleSpecList::GetDescription",2,"lldb::SBStream … in _wrap_SBModuleSpecList_GetDescription()
41351 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList_GetDescription()
41356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBModuleSpecList_GetDescription()
41361 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBModuleSpecList_GetDescription()
41366 lua_error(L); in _wrap_SBModuleSpecList_GetDescription()
41371 static int _wrap_SBModuleSpecList___tostring(lua_State* L) { in _wrap_SBModuleSpecList___tostring() argument
41378 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBModuleSpecList::__repr__",1,"lldb::SBModuleSpecLis… in _wrap_SBModuleSpecList___tostring()
41380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBModuleSpecList,0))){ in _wrap_SBModuleSpecList___tostring()
41385 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBModuleSpecList___tostring()
41390 lua_error(L); in _wrap_SBModuleSpecList___tostring()
41399 static int _proxy__wrap_new_SBModuleSpecList(lua_State *L) { in _proxy__wrap_new_SBModuleSpecList() argument
41400 assert(lua_istable(L,1)); in _proxy__wrap_new_SBModuleSpecList()
41401 lua_pushcfunction(L,_wrap_new_SBModuleSpecList); in _proxy__wrap_new_SBModuleSpecList()
41402 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBModuleSpecList()
41403 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBModuleSpecList()
41404 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBModuleSpecList()
41451 static int _wrap_new_SBPlatformConnectOptions__SWIG_0(lua_State* L) { in _wrap_new_SBPlatformConnectOptions__SWIG_0() argument
41458 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SBPlatformConnectOpt… in _wrap_new_SBPlatformConnectOptions__SWIG_0()
41459 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBPlatformConnectOptions__SWIG_0()
41461 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformConnectOptions,1); SWIG_arg++; in _wrap_new_SBPlatformConnectOptions__SWIG_0()
41466 lua_error(L); in _wrap_new_SBPlatformConnectOptions__SWIG_0()
41471 static int _wrap_new_SBPlatformConnectOptions__SWIG_1(lua_State* L) { in _wrap_new_SBPlatformConnectOptions__SWIG_1() argument
41478 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SBPlatformConnectOptions",… in _wrap_new_SBPlatformConnectOptions__SWIG_1()
41480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_new_SBPlatformConnectOptions__SWIG_1()
41485 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformConnectOptions,1); SWIG_arg++; in _wrap_new_SBPlatformConnectOptions__SWIG_1()
41490 lua_error(L); in _wrap_new_SBPlatformConnectOptions__SWIG_1()
41495 static int _wrap_new_SBPlatformConnectOptions(lua_State* L) { in _wrap_new_SBPlatformConnectOptions() argument
41501 argc = lua_gettop(L); in _wrap_new_SBPlatformConnectOptions()
41506 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBPlatformConnectOptions()
41513 return _wrap_new_SBPlatformConnectOptions__SWIG_1(L); in _wrap_new_SBPlatformConnectOptions()
41519 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBPlatformConnectOptions()
41522 return _wrap_new_SBPlatformConnectOptions__SWIG_0(L); in _wrap_new_SBPlatformConnectOptions()
41526 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBPlatformConnectOptions'\n" in _wrap_new_SBPlatformConnectOptions()
41530 lua_error(L);return 0; in _wrap_new_SBPlatformConnectOptions()
41534 static int _wrap_SBPlatformConnectOptions_GetURL(lua_State* L) { in _wrap_SBPlatformConnectOptions_GetURL() argument
41541 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::GetURL",1,"lldb::SBPlatfor… in _wrap_SBPlatformConnectOptions_GetURL()
41543 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_GetURL()
41548 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatformConnectOptions_GetURL()
41553 lua_error(L); in _wrap_SBPlatformConnectOptions_GetURL()
41558 static int _wrap_SBPlatformConnectOptions_SetURL(lua_State* L) { in _wrap_SBPlatformConnectOptions_SetURL() argument
41565 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetURL",1,"lldb::SBPlatfor… in _wrap_SBPlatformConnectOptions_SetURL()
41566 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetURL",2,"char cons… in _wrap_SBPlatformConnectOptions_SetURL()
41568 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_SetURL()
41572 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatformConnectOptions_SetURL()
41579 lua_error(L); in _wrap_SBPlatformConnectOptions_SetURL()
41584 static int _wrap_SBPlatformConnectOptions_GetRsyncEnabled(lua_State* L) { in _wrap_SBPlatformConnectOptions_GetRsyncEnabled() argument
41591 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::GetRsyncEnabled",1,"lldb::… in _wrap_SBPlatformConnectOptions_GetRsyncEnabled()
41593 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_GetRsyncEnabled()
41598 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBPlatformConnectOptions_GetRsyncEnabled()
41603 lua_error(L); in _wrap_SBPlatformConnectOptions_GetRsyncEnabled()
41608 static int _wrap_SBPlatformConnectOptions_EnableRsync(lua_State* L) { in _wrap_SBPlatformConnectOptions_EnableRsync() argument
41617 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",1,"lldb::SBPl… in _wrap_SBPlatformConnectOptions_EnableRsync()
41618 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",2,"char… in _wrap_SBPlatformConnectOptions_EnableRsync()
41619 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",3,"char… in _wrap_SBPlatformConnectOptions_EnableRsync()
41620 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::EnableRsync",4,"bool"); in _wrap_SBPlatformConnectOptions_EnableRsync()
41622 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_EnableRsync()
41626 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatformConnectOptions_EnableRsync()
41627 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBPlatformConnectOptions_EnableRsync()
41628 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBPlatformConnectOptions_EnableRsync()
41635 lua_error(L); in _wrap_SBPlatformConnectOptions_EnableRsync()
41640 static int _wrap_SBPlatformConnectOptions_DisableRsync(lua_State* L) { in _wrap_SBPlatformConnectOptions_DisableRsync() argument
41646 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::DisableRsync",1,"lldb::SBP… in _wrap_SBPlatformConnectOptions_DisableRsync()
41648 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_DisableRsync()
41658 lua_error(L); in _wrap_SBPlatformConnectOptions_DisableRsync()
41663 static int _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory(lua_State* L) { in _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory() argument
41670 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::GetLocalCacheDirectory",1,… in _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory()
41672 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory()
41677 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory()
41682 lua_error(L); in _wrap_SBPlatformConnectOptions_GetLocalCacheDirectory()
41687 static int _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory(lua_State* L) { in _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory() argument
41694 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetLocalCacheDirectory",1,… in _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory()
41695 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformConnectOptions::SetLocalCacheDirecto… in _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory()
41697 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory()
41701 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory()
41708 lua_error(L); in _wrap_SBPlatformConnectOptions_SetLocalCacheDirectory()
41717 static int _proxy__wrap_new_SBPlatformConnectOptions(lua_State *L) { in _proxy__wrap_new_SBPlatformConnectOptions() argument
41718 assert(lua_istable(L,1)); in _proxy__wrap_new_SBPlatformConnectOptions()
41719 lua_pushcfunction(L,_wrap_new_SBPlatformConnectOptions); in _proxy__wrap_new_SBPlatformConnectOptions()
41720 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBPlatformConnectOptions()
41721 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBPlatformConnectOptions()
41722 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBPlatformConnectOptions()
41767 static int _wrap_new_SBPlatformShellCommand__SWIG_0(lua_State* L) { in _wrap_new_SBPlatformShellCommand__SWIG_0() argument
41775 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand… in _wrap_new_SBPlatformShellCommand__SWIG_0()
41776 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand… in _wrap_new_SBPlatformShellCommand__SWIG_0()
41777 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBPlatformShellCommand__SWIG_0()
41778 arg2 = (char *)lua_tostring(L, 2); in _wrap_new_SBPlatformShellCommand__SWIG_0()
41780 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformShellCommand,1); SWIG_arg++; in _wrap_new_SBPlatformShellCommand__SWIG_0()
41785 lua_error(L); in _wrap_new_SBPlatformShellCommand__SWIG_0()
41790 static int _wrap_new_SBPlatformShellCommand__SWIG_1(lua_State* L) { in _wrap_new_SBPlatformShellCommand__SWIG_1() argument
41797 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand… in _wrap_new_SBPlatformShellCommand__SWIG_1()
41798 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBPlatformShellCommand__SWIG_1()
41800 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformShellCommand,1); SWIG_arg++; in _wrap_new_SBPlatformShellCommand__SWIG_1()
41805 lua_error(L); in _wrap_new_SBPlatformShellCommand__SWIG_1()
41810 static int _wrap_new_SBPlatformShellCommand__SWIG_2(lua_State* L) { in _wrap_new_SBPlatformShellCommand__SWIG_2() argument
41817 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SBPlatformShellCommand",1,"l… in _wrap_new_SBPlatformShellCommand__SWIG_2()
41819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_new_SBPlatformShellCommand__SWIG_2()
41824 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatformShellCommand,1); SWIG_arg++; in _wrap_new_SBPlatformShellCommand__SWIG_2()
41829 lua_error(L); in _wrap_new_SBPlatformShellCommand__SWIG_2()
41834 static int _wrap_new_SBPlatformShellCommand(lua_State* L) { in _wrap_new_SBPlatformShellCommand() argument
41840 argc = lua_gettop(L); in _wrap_new_SBPlatformShellCommand()
41845 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBPlatformShellCommand()
41852 return _wrap_new_SBPlatformShellCommand__SWIG_2(L); in _wrap_new_SBPlatformShellCommand()
41858 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBPlatformShellCommand()
41861 return _wrap_new_SBPlatformShellCommand__SWIG_1(L); in _wrap_new_SBPlatformShellCommand()
41867 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBPlatformShellCommand()
41871 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBPlatformShellCommand()
41874 return _wrap_new_SBPlatformShellCommand__SWIG_0(L); in _wrap_new_SBPlatformShellCommand()
41879 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBPlatformShellCommand'\n" in _wrap_new_SBPlatformShellCommand()
41884 lua_error(L);return 0; in _wrap_new_SBPlatformShellCommand()
41888 static int _wrap_SBPlatformShellCommand_Clear(lua_State* L) { in _wrap_SBPlatformShellCommand_Clear() argument
41894 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::Clear",1,"lldb::SBPlatformSh… in _wrap_SBPlatformShellCommand_Clear()
41896 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_Clear()
41906 lua_error(L); in _wrap_SBPlatformShellCommand_Clear()
41911 static int _wrap_SBPlatformShellCommand_GetShell(lua_State* L) { in _wrap_SBPlatformShellCommand_GetShell() argument
41918 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetShell",1,"lldb::SBPlatfor… in _wrap_SBPlatformShellCommand_GetShell()
41920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetShell()
41925 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetShell()
41930 lua_error(L); in _wrap_SBPlatformShellCommand_GetShell()
41935 static int _wrap_SBPlatformShellCommand_SetShell(lua_State* L) { in _wrap_SBPlatformShellCommand_SetShell() argument
41942 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetShell",1,"lldb::SBPlatfor… in _wrap_SBPlatformShellCommand_SetShell()
41943 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetShell",2,"char cons… in _wrap_SBPlatformShellCommand_SetShell()
41945 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_SetShell()
41949 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatformShellCommand_SetShell()
41956 lua_error(L); in _wrap_SBPlatformShellCommand_SetShell()
41961 static int _wrap_SBPlatformShellCommand_GetCommand(lua_State* L) { in _wrap_SBPlatformShellCommand_GetCommand() argument
41968 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetCommand",1,"lldb::SBPlatf… in _wrap_SBPlatformShellCommand_GetCommand()
41970 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetCommand()
41975 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetCommand()
41980 lua_error(L); in _wrap_SBPlatformShellCommand_GetCommand()
41985 static int _wrap_SBPlatformShellCommand_SetCommand(lua_State* L) { in _wrap_SBPlatformShellCommand_SetCommand() argument
41992 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetCommand",1,"lldb::SBPlatf… in _wrap_SBPlatformShellCommand_SetCommand()
41993 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetCommand",2,"char co… in _wrap_SBPlatformShellCommand_SetCommand()
41995 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_SetCommand()
41999 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatformShellCommand_SetCommand()
42006 lua_error(L); in _wrap_SBPlatformShellCommand_SetCommand()
42011 static int _wrap_SBPlatformShellCommand_GetWorkingDirectory(lua_State* L) { in _wrap_SBPlatformShellCommand_GetWorkingDirectory() argument
42018 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetWorkingDirectory",1,"lldb… in _wrap_SBPlatformShellCommand_GetWorkingDirectory()
42020 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetWorkingDirectory()
42025 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetWorkingDirectory()
42030 lua_error(L); in _wrap_SBPlatformShellCommand_GetWorkingDirectory()
42035 static int _wrap_SBPlatformShellCommand_SetWorkingDirectory(lua_State* L) { in _wrap_SBPlatformShellCommand_SetWorkingDirectory() argument
42042 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetWorkingDirectory",1,"lldb… in _wrap_SBPlatformShellCommand_SetWorkingDirectory()
42043 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetWorkingDirectory",2… in _wrap_SBPlatformShellCommand_SetWorkingDirectory()
42045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_SetWorkingDirectory()
42049 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatformShellCommand_SetWorkingDirectory()
42056 lua_error(L); in _wrap_SBPlatformShellCommand_SetWorkingDirectory()
42061 static int _wrap_SBPlatformShellCommand_GetTimeoutSeconds(lua_State* L) { in _wrap_SBPlatformShellCommand_GetTimeoutSeconds() argument
42068 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetTimeoutSeconds",1,"lldb::… in _wrap_SBPlatformShellCommand_GetTimeoutSeconds()
42070 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetTimeoutSeconds()
42075 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetTimeoutSeconds()
42080 lua_error(L); in _wrap_SBPlatformShellCommand_GetTimeoutSeconds()
42085 static int _wrap_SBPlatformShellCommand_SetTimeoutSeconds(lua_State* L) { in _wrap_SBPlatformShellCommand_SetTimeoutSeconds() argument
42092 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetTimeoutSeconds",1,"lldb::… in _wrap_SBPlatformShellCommand_SetTimeoutSeconds()
42093 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBPlatformShellCommand::SetTimeoutSeconds",2,"uint32_… in _wrap_SBPlatformShellCommand_SetTimeoutSeconds()
42095 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_SetTimeoutSeconds()
42099 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBPlatformShellCommand_SetTimeoutSeconds()
42106 lua_error(L); in _wrap_SBPlatformShellCommand_SetTimeoutSeconds()
42111 static int _wrap_SBPlatformShellCommand_GetSignal(lua_State* L) { in _wrap_SBPlatformShellCommand_GetSignal() argument
42118 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetSignal",1,"lldb::SBPlatfo… in _wrap_SBPlatformShellCommand_GetSignal()
42120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetSignal()
42125 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetSignal()
42130 lua_error(L); in _wrap_SBPlatformShellCommand_GetSignal()
42135 static int _wrap_SBPlatformShellCommand_GetStatus(lua_State* L) { in _wrap_SBPlatformShellCommand_GetStatus() argument
42142 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetStatus",1,"lldb::SBPlatfo… in _wrap_SBPlatformShellCommand_GetStatus()
42144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetStatus()
42149 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetStatus()
42154 lua_error(L); in _wrap_SBPlatformShellCommand_GetStatus()
42159 static int _wrap_SBPlatformShellCommand_GetOutput(lua_State* L) { in _wrap_SBPlatformShellCommand_GetOutput() argument
42166 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatformShellCommand::GetOutput",1,"lldb::SBPlatfo… in _wrap_SBPlatformShellCommand_GetOutput()
42168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatformShellCommand_GetOutput()
42173 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatformShellCommand_GetOutput()
42178 lua_error(L); in _wrap_SBPlatformShellCommand_GetOutput()
42187 static int _proxy__wrap_new_SBPlatformShellCommand(lua_State *L) { in _proxy__wrap_new_SBPlatformShellCommand() argument
42188 assert(lua_istable(L,1)); in _proxy__wrap_new_SBPlatformShellCommand()
42189 lua_pushcfunction(L,_wrap_new_SBPlatformShellCommand); in _proxy__wrap_new_SBPlatformShellCommand()
42190 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBPlatformShellCommand()
42191 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBPlatformShellCommand()
42192 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBPlatformShellCommand()
42242 static int _wrap_new_SBPlatform__SWIG_0(lua_State* L) { in _wrap_new_SBPlatform__SWIG_0() argument
42249 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_new_SBPlatform__SWIG_0()
42254 lua_error(L); in _wrap_new_SBPlatform__SWIG_0()
42259 static int _wrap_new_SBPlatform__SWIG_1(lua_State* L) { in _wrap_new_SBPlatform__SWIG_1() argument
42266 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBPlatform::SBPlatform",1,"char const *"); in _wrap_new_SBPlatform__SWIG_1()
42267 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBPlatform__SWIG_1()
42269 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_new_SBPlatform__SWIG_1()
42274 lua_error(L); in _wrap_new_SBPlatform__SWIG_1()
42279 static int _wrap_new_SBPlatform__SWIG_2(lua_State* L) { in _wrap_new_SBPlatform__SWIG_2() argument
42286 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBPlatform::SBPlatform",1,"lldb::SBPlatform const &"… in _wrap_new_SBPlatform__SWIG_2()
42288 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_new_SBPlatform__SWIG_2()
42293 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_new_SBPlatform__SWIG_2()
42298 lua_error(L); in _wrap_new_SBPlatform__SWIG_2()
42303 static int _wrap_new_SBPlatform(lua_State* L) { in _wrap_new_SBPlatform() argument
42309 argc = lua_gettop(L); in _wrap_new_SBPlatform()
42311 return _wrap_new_SBPlatform__SWIG_0(L); in _wrap_new_SBPlatform()
42317 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBPlatform()
42324 return _wrap_new_SBPlatform__SWIG_2(L); in _wrap_new_SBPlatform()
42330 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBPlatform()
42333 return _wrap_new_SBPlatform__SWIG_1(L); in _wrap_new_SBPlatform()
42337 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBPlatform'\n" in _wrap_new_SBPlatform()
42342 lua_error(L);return 0; in _wrap_new_SBPlatform()
42346 static int _wrap_SBPlatform_GetHostPlatform(lua_State* L) { in _wrap_SBPlatform_GetHostPlatform() argument
42355 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_SBPlatform_GetHostPlatform()
42361 lua_error(L); in _wrap_SBPlatform_GetHostPlatform()
42366 static int _wrap_SBPlatform_IsValid(lua_State* L) { in _wrap_SBPlatform_IsValid() argument
42373 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::IsValid",1,"lldb::SBPlatform const *"); in _wrap_SBPlatform_IsValid()
42375 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_IsValid()
42380 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBPlatform_IsValid()
42385 lua_error(L); in _wrap_SBPlatform_IsValid()
42390 static int _wrap_SBPlatform_Clear(lua_State* L) { in _wrap_SBPlatform_Clear() argument
42396 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Clear",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Clear()
42398 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Clear()
42408 lua_error(L); in _wrap_SBPlatform_Clear()
42413 static int _wrap_SBPlatform_GetWorkingDirectory(lua_State* L) { in _wrap_SBPlatform_GetWorkingDirectory() argument
42420 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetWorkingDirectory",1,"lldb::SBPlatform… in _wrap_SBPlatform_GetWorkingDirectory()
42422 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetWorkingDirectory()
42427 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatform_GetWorkingDirectory()
42432 lua_error(L); in _wrap_SBPlatform_GetWorkingDirectory()
42437 static int _wrap_SBPlatform_SetWorkingDirectory(lua_State* L) { in _wrap_SBPlatform_SetWorkingDirectory() argument
42445 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetWorkingDirectory",1,"lldb::SBPlatform… in _wrap_SBPlatform_SetWorkingDirectory()
42446 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetWorkingDirectory",2,"char const… in _wrap_SBPlatform_SetWorkingDirectory()
42448 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_SetWorkingDirectory()
42452 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatform_SetWorkingDirectory()
42454 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBPlatform_SetWorkingDirectory()
42459 lua_error(L); in _wrap_SBPlatform_SetWorkingDirectory()
42464 static int _wrap_SBPlatform_GetName(lua_State* L) { in _wrap_SBPlatform_GetName() argument
42471 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetName",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_GetName()
42473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetName()
42478 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatform_GetName()
42483 lua_error(L); in _wrap_SBPlatform_GetName()
42488 static int _wrap_SBPlatform_ConnectRemote(lua_State* L) { in _wrap_SBPlatform_ConnectRemote() argument
42496 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::ConnectRemote",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_ConnectRemote()
42497 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::ConnectRemote",2,"lldb::SBPlatformConnec… in _wrap_SBPlatform_ConnectRemote()
42499 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_ConnectRemote()
42504 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBPlatformConnectOptions,0))){ in _wrap_SBPlatform_ConnectRemote()
42511 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_ConnectRemote()
42517 lua_error(L); in _wrap_SBPlatform_ConnectRemote()
42522 static int _wrap_SBPlatform_DisconnectRemote(lua_State* L) { in _wrap_SBPlatform_DisconnectRemote() argument
42528 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::DisconnectRemote",1,"lldb::SBPlatform *"… in _wrap_SBPlatform_DisconnectRemote()
42530 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_DisconnectRemote()
42540 lua_error(L); in _wrap_SBPlatform_DisconnectRemote()
42545 static int _wrap_SBPlatform_IsConnected(lua_State* L) { in _wrap_SBPlatform_IsConnected() argument
42552 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::IsConnected",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_IsConnected()
42554 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_IsConnected()
42559 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBPlatform_IsConnected()
42564 lua_error(L); in _wrap_SBPlatform_IsConnected()
42569 static int _wrap_SBPlatform_GetTriple(lua_State* L) { in _wrap_SBPlatform_GetTriple() argument
42576 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetTriple",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_GetTriple()
42578 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetTriple()
42583 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatform_GetTriple()
42588 lua_error(L); in _wrap_SBPlatform_GetTriple()
42593 static int _wrap_SBPlatform_GetHostname(lua_State* L) { in _wrap_SBPlatform_GetHostname() argument
42600 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetHostname",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_GetHostname()
42602 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetHostname()
42607 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatform_GetHostname()
42612 lua_error(L); in _wrap_SBPlatform_GetHostname()
42617 static int _wrap_SBPlatform_GetOSBuild(lua_State* L) { in _wrap_SBPlatform_GetOSBuild() argument
42624 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSBuild",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_GetOSBuild()
42626 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetOSBuild()
42631 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatform_GetOSBuild()
42636 lua_error(L); in _wrap_SBPlatform_GetOSBuild()
42641 static int _wrap_SBPlatform_GetOSDescription(lua_State* L) { in _wrap_SBPlatform_GetOSDescription() argument
42648 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSDescription",1,"lldb::SBPlatform *"… in _wrap_SBPlatform_GetOSDescription()
42650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetOSDescription()
42655 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBPlatform_GetOSDescription()
42660 lua_error(L); in _wrap_SBPlatform_GetOSDescription()
42665 static int _wrap_SBPlatform_GetOSMajorVersion(lua_State* L) { in _wrap_SBPlatform_GetOSMajorVersion() argument
42672 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSMajorVersion",1,"lldb::SBPlatform *… in _wrap_SBPlatform_GetOSMajorVersion()
42674 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetOSMajorVersion()
42679 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatform_GetOSMajorVersion()
42684 lua_error(L); in _wrap_SBPlatform_GetOSMajorVersion()
42689 static int _wrap_SBPlatform_GetOSMinorVersion(lua_State* L) { in _wrap_SBPlatform_GetOSMinorVersion() argument
42696 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSMinorVersion",1,"lldb::SBPlatform *… in _wrap_SBPlatform_GetOSMinorVersion()
42698 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetOSMinorVersion()
42703 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatform_GetOSMinorVersion()
42708 lua_error(L); in _wrap_SBPlatform_GetOSMinorVersion()
42713 static int _wrap_SBPlatform_GetOSUpdateVersion(lua_State* L) { in _wrap_SBPlatform_GetOSUpdateVersion() argument
42720 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetOSUpdateVersion",1,"lldb::SBPlatform … in _wrap_SBPlatform_GetOSUpdateVersion()
42722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetOSUpdateVersion()
42727 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatform_GetOSUpdateVersion()
42732 lua_error(L); in _wrap_SBPlatform_GetOSUpdateVersion()
42737 static int _wrap_SBPlatform_SetSDKRoot(lua_State* L) { in _wrap_SBPlatform_SetSDKRoot() argument
42744 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetSDKRoot",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_SetSDKRoot()
42745 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetSDKRoot",2,"char const *"); in _wrap_SBPlatform_SetSDKRoot()
42747 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_SetSDKRoot()
42751 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatform_SetSDKRoot()
42758 lua_error(L); in _wrap_SBPlatform_SetSDKRoot()
42763 static int _wrap_SBPlatform_Put(lua_State* L) { in _wrap_SBPlatform_Put() argument
42772 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Put",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Put()
42773 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Put",2,"lldb::SBFileSpec &"); in _wrap_SBPlatform_Put()
42774 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Put",3,"lldb::SBFileSpec &"); in _wrap_SBPlatform_Put()
42776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Put()
42781 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBPlatform_Put()
42786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBPlatform_Put()
42793 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_Put()
42799 lua_error(L); in _wrap_SBPlatform_Put()
42804 static int _wrap_SBPlatform_Get(lua_State* L) { in _wrap_SBPlatform_Get() argument
42813 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Get",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Get()
42814 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Get",2,"lldb::SBFileSpec &"); in _wrap_SBPlatform_Get()
42815 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Get",3,"lldb::SBFileSpec &"); in _wrap_SBPlatform_Get()
42817 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Get()
42822 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBPlatform_Get()
42827 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBPlatform_Get()
42834 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_Get()
42840 lua_error(L); in _wrap_SBPlatform_Get()
42845 static int _wrap_SBPlatform_Install(lua_State* L) { in _wrap_SBPlatform_Install() argument
42854 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Install",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Install()
42855 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Install",2,"lldb::SBFileSpec &"); in _wrap_SBPlatform_Install()
42856 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Install",3,"lldb::SBFileSpec &"); in _wrap_SBPlatform_Install()
42858 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Install()
42863 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBPlatform_Install()
42868 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBPlatform_Install()
42875 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_Install()
42881 lua_error(L); in _wrap_SBPlatform_Install()
42886 static int _wrap_SBPlatform_Run(lua_State* L) { in _wrap_SBPlatform_Run() argument
42894 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Run",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Run()
42895 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Run",2,"lldb::SBPlatformShellCommand &"); in _wrap_SBPlatform_Run()
42897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Run()
42902 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBPlatformShellCommand,0))){ in _wrap_SBPlatform_Run()
42909 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_Run()
42915 lua_error(L); in _wrap_SBPlatform_Run()
42920 static int _wrap_SBPlatform_Launch(lua_State* L) { in _wrap_SBPlatform_Launch() argument
42928 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Launch",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Launch()
42929 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Launch",2,"lldb::SBLaunchInfo &"); in _wrap_SBPlatform_Launch()
42931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Launch()
42936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBPlatform_Launch()
42943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_Launch()
42949 lua_error(L); in _wrap_SBPlatform_Launch()
42954 static int _wrap_SBPlatform_Attach(lua_State* L) { in _wrap_SBPlatform_Attach() argument
42965 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Attach",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Attach()
42966 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::Attach",2,"lldb::SBAttachInfo &"); in _wrap_SBPlatform_Attach()
42967 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBPlatform::Attach",3,"lldb::SBDebugger const &"); in _wrap_SBPlatform_Attach()
42968 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBPlatform::Attach",4,"lldb::SBTarget &"); in _wrap_SBPlatform_Attach()
42969 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBPlatform::Attach",5,"lldb::SBError &"); in _wrap_SBPlatform_Attach()
42971 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Attach()
42976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBPlatform_Attach()
42981 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBPlatform_Attach()
42986 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBPlatform_Attach()
42991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBPlatform_Attach()
42998 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBPlatform_Attach()
43004 lua_error(L); in _wrap_SBPlatform_Attach()
43009 static int _wrap_SBPlatform_GetAllProcesses(lua_State* L) { in _wrap_SBPlatform_GetAllProcesses() argument
43017 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetAllProcesses",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_GetAllProcesses()
43018 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBPlatform::GetAllProcesses",2,"lldb::SBError &"); in _wrap_SBPlatform_GetAllProcesses()
43020 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetAllProcesses()
43025 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBPlatform_GetAllProcesses()
43032 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcessInfoList,1); SWIG_arg++; in _wrap_SBPlatform_GetAllProcesses()
43038 lua_error(L); in _wrap_SBPlatform_GetAllProcesses()
43043 static int _wrap_SBPlatform_Kill(lua_State* L) { in _wrap_SBPlatform_Kill() argument
43051 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::Kill",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_Kill()
43052 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBPlatform::Kill",2,"lldb::pid_t const"); in _wrap_SBPlatform_Kill()
43054 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_Kill()
43058 arg2 = (lldb::pid_t const)lua_tointeger(L, 2); in _wrap_SBPlatform_Kill()
43062 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_Kill()
43068 lua_error(L); in _wrap_SBPlatform_Kill()
43073 static int _wrap_SBPlatform_MakeDirectory__SWIG_0(lua_State* L) { in _wrap_SBPlatform_MakeDirectory__SWIG_0() argument
43082 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43083 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",2,"char const *"); in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43084 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",3,"uint32_t"); in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43086 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43090 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43091 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43095 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43101 lua_error(L); in _wrap_SBPlatform_MakeDirectory__SWIG_0()
43106 static int _wrap_SBPlatform_MakeDirectory__SWIG_1(lua_State* L) { in _wrap_SBPlatform_MakeDirectory__SWIG_1() argument
43114 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_MakeDirectory__SWIG_1()
43115 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::MakeDirectory",2,"char const *"); in _wrap_SBPlatform_MakeDirectory__SWIG_1()
43117 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_MakeDirectory__SWIG_1()
43121 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatform_MakeDirectory__SWIG_1()
43125 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_MakeDirectory__SWIG_1()
43131 lua_error(L); in _wrap_SBPlatform_MakeDirectory__SWIG_1()
43136 static int _wrap_SBPlatform_MakeDirectory(lua_State* L) { in _wrap_SBPlatform_MakeDirectory() argument
43142 argc = lua_gettop(L); in _wrap_SBPlatform_MakeDirectory()
43147 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBPlatform_MakeDirectory()
43155 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBPlatform_MakeDirectory()
43158 return _wrap_SBPlatform_MakeDirectory__SWIG_1(L); in _wrap_SBPlatform_MakeDirectory()
43166 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBPlatform_MakeDirectory()
43174 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBPlatform_MakeDirectory()
43178 _v = lua_isnumber(L,argv[2]); in _wrap_SBPlatform_MakeDirectory()
43181 return _wrap_SBPlatform_MakeDirectory__SWIG_0(L); in _wrap_SBPlatform_MakeDirectory()
43187 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBPlatform_MakeDirectory'\n" in _wrap_SBPlatform_MakeDirectory()
43191 lua_error(L);return 0; in _wrap_SBPlatform_MakeDirectory()
43195 static int _wrap_SBPlatform_GetFilePermissions(lua_State* L) { in _wrap_SBPlatform_GetFilePermissions() argument
43203 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetFilePermissions",1,"lldb::SBPlatform … in _wrap_SBPlatform_GetFilePermissions()
43204 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::GetFilePermissions",2,"char const … in _wrap_SBPlatform_GetFilePermissions()
43206 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetFilePermissions()
43210 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatform_GetFilePermissions()
43212 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBPlatform_GetFilePermissions()
43217 lua_error(L); in _wrap_SBPlatform_GetFilePermissions()
43222 static int _wrap_SBPlatform_SetFilePermissions(lua_State* L) { in _wrap_SBPlatform_SetFilePermissions() argument
43231 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetFilePermissions",1,"lldb::SBPlatform … in _wrap_SBPlatform_SetFilePermissions()
43232 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetFilePermissions",2,"char const … in _wrap_SBPlatform_SetFilePermissions()
43233 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBPlatform::SetFilePermissions",3,"uint32_t"); in _wrap_SBPlatform_SetFilePermissions()
43235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_SetFilePermissions()
43239 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBPlatform_SetFilePermissions()
43240 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBPlatform_SetFilePermissions()
43244 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_SetFilePermissions()
43250 lua_error(L); in _wrap_SBPlatform_SetFilePermissions()
43255 static int _wrap_SBPlatform_GetUnixSignals(lua_State* L) { in _wrap_SBPlatform_GetUnixSignals() argument
43262 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetUnixSignals",1,"lldb::SBPlatform cons… in _wrap_SBPlatform_GetUnixSignals()
43264 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetUnixSignals()
43271 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++; in _wrap_SBPlatform_GetUnixSignals()
43277 lua_error(L); in _wrap_SBPlatform_GetUnixSignals()
43282 static int _wrap_SBPlatform_GetEnvironment(lua_State* L) { in _wrap_SBPlatform_GetEnvironment() argument
43289 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::GetEnvironment",1,"lldb::SBPlatform *"); in _wrap_SBPlatform_GetEnvironment()
43291 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_GetEnvironment()
43298 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++; in _wrap_SBPlatform_GetEnvironment()
43304 lua_error(L); in _wrap_SBPlatform_GetEnvironment()
43309 static int _wrap_SBPlatform_SetLocateModuleCallback(lua_State* L) { in _wrap_SBPlatform_SetLocateModuleCallback() argument
43318 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBPlatform::SetLocateModuleCallback",1,"lldb::SBPlat… in _wrap_SBPlatform_SetLocateModuleCallback()
43319 …if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBPlatform::SetLocateModuleCallback",2,"lldb::SBPlat… in _wrap_SBPlatform_SetLocateModuleCallback()
43320 if(!SWIG_isptrtype(L,3)) SWIG_fail_arg("lldb::SBPlatform::SetLocateModuleCallback",3,"void *"); in _wrap_SBPlatform_SetLocateModuleCallback()
43322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBPlatform,0))){ in _wrap_SBPlatform_SetLocateModuleCallback()
43327 …if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_f_p_void_r_q_const__lldb__SBModuleSpec… in _wrap_SBPlatform_SetLocateModuleCallback()
43331 arg3=(void *)SWIG_MustGetPtr(L,3,0,0,3,"SBPlatform_SetLocateModuleCallback"); in _wrap_SBPlatform_SetLocateModuleCallback()
43335 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBPlatform_SetLocateModuleCallback()
43341 lua_error(L); in _wrap_SBPlatform_SetLocateModuleCallback()
43350 static int _proxy__wrap_new_SBPlatform(lua_State *L) { in _proxy__wrap_new_SBPlatform() argument
43351 assert(lua_istable(L,1)); in _proxy__wrap_new_SBPlatform()
43352 lua_pushcfunction(L,_wrap_new_SBPlatform); in _proxy__wrap_new_SBPlatform()
43353 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBPlatform()
43354 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBPlatform()
43355 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBPlatform()
43424 static int _wrap_new_SBProcess__SWIG_0(lua_State* L) { in _wrap_new_SBProcess__SWIG_0() argument
43431 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_new_SBProcess__SWIG_0()
43436 lua_error(L); in _wrap_new_SBProcess__SWIG_0()
43441 static int _wrap_new_SBProcess__SWIG_1(lua_State* L) { in _wrap_new_SBProcess__SWIG_1() argument
43448 … if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::SBProcess",1,"lldb::SBProcess const &"); in _wrap_new_SBProcess__SWIG_1()
43450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_new_SBProcess__SWIG_1()
43455 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_new_SBProcess__SWIG_1()
43460 lua_error(L); in _wrap_new_SBProcess__SWIG_1()
43465 static int _wrap_new_SBProcess(lua_State* L) { in _wrap_new_SBProcess() argument
43471 argc = lua_gettop(L); in _wrap_new_SBProcess()
43473 return _wrap_new_SBProcess__SWIG_0(L); in _wrap_new_SBProcess()
43479 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBProcess()
43486 return _wrap_new_SBProcess__SWIG_1(L); in _wrap_new_SBProcess()
43490 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBProcess'\n" in _wrap_new_SBProcess()
43494 lua_error(L);return 0; in _wrap_new_SBProcess()
43498 static int _wrap_SBProcess_GetBroadcasterClassName(lua_State* L) { in _wrap_SBProcess_GetBroadcasterClassName() argument
43505 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetBroadcasterClassName()
43510 lua_error(L); in _wrap_SBProcess_GetBroadcasterClassName()
43515 static int _wrap_SBProcess_GetPluginName(lua_State* L) { in _wrap_SBProcess_GetPluginName() argument
43522 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetPluginName",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetPluginName()
43524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetPluginName()
43529 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetPluginName()
43534 lua_error(L); in _wrap_SBProcess_GetPluginName()
43539 static int _wrap_SBProcess_GetShortPluginName(lua_State* L) { in _wrap_SBProcess_GetShortPluginName() argument
43546 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetShortPluginName",1,"lldb::SBProcess *"… in _wrap_SBProcess_GetShortPluginName()
43548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetShortPluginName()
43553 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetShortPluginName()
43558 lua_error(L); in _wrap_SBProcess_GetShortPluginName()
43563 static int _wrap_SBProcess_Clear(lua_State* L) { in _wrap_SBProcess_Clear() argument
43569 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Clear",1,"lldb::SBProcess *"); in _wrap_SBProcess_Clear()
43571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Clear()
43581 lua_error(L); in _wrap_SBProcess_Clear()
43586 static int _wrap_SBProcess_IsValid(lua_State* L) { in _wrap_SBProcess_IsValid() argument
43593 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::IsValid",1,"lldb::SBProcess const *"); in _wrap_SBProcess_IsValid()
43595 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_IsValid()
43600 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_IsValid()
43605 lua_error(L); in _wrap_SBProcess_IsValid()
43610 static int _wrap_SBProcess_GetTarget(lua_State* L) { in _wrap_SBProcess_GetTarget() argument
43617 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetTarget",1,"lldb::SBProcess const *"); in _wrap_SBProcess_GetTarget()
43619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetTarget()
43626 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBProcess_GetTarget()
43632 lua_error(L); in _wrap_SBProcess_GetTarget()
43637 static int _wrap_SBProcess_GetByteOrder(lua_State* L) { in _wrap_SBProcess_GetByteOrder() argument
43644 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetByteOrder",1,"lldb::SBProcess const *"… in _wrap_SBProcess_GetByteOrder()
43646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetByteOrder()
43651 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetByteOrder()
43656 lua_error(L); in _wrap_SBProcess_GetByteOrder()
43661 static int _wrap_SBProcess_PutSTDIN(lua_State* L) { in _wrap_SBProcess_PutSTDIN() argument
43670 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::PutSTDIN",1,"lldb::SBProcess *"); in _wrap_SBProcess_PutSTDIN()
43672 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_PutSTDIN()
43677 arg2 = (char *)luaL_checklstring(L, 2, &arg3); in _wrap_SBProcess_PutSTDIN()
43680 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_PutSTDIN()
43685 lua_error(L); in _wrap_SBProcess_PutSTDIN()
43690 static int _wrap_SBProcess_GetSTDOUT(lua_State* L) { in _wrap_SBProcess_GetSTDOUT() argument
43699 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetSTDOUT",1,"lldb::SBProcess const *"); in _wrap_SBProcess_GetSTDOUT()
43701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetSTDOUT()
43706 arg3 = luaL_checkinteger(L, 2); in _wrap_SBProcess_GetSTDOUT()
43708 return luaL_error(L, "Positive integer expected"); in _wrap_SBProcess_GetSTDOUT()
43713 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetSTDOUT()
43715 lua_pop(L, 1); // Blow away the previous result in _wrap_SBProcess_GetSTDOUT()
43717 lua_pushliteral(L, ""); in _wrap_SBProcess_GetSTDOUT()
43719 lua_pushlstring(L, (const char *)arg2, result); in _wrap_SBProcess_GetSTDOUT()
43728 lua_error(L); in _wrap_SBProcess_GetSTDOUT()
43733 static int _wrap_SBProcess_GetSTDERR(lua_State* L) { in _wrap_SBProcess_GetSTDERR() argument
43742 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetSTDERR",1,"lldb::SBProcess const *"); in _wrap_SBProcess_GetSTDERR()
43744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetSTDERR()
43749 arg3 = luaL_checkinteger(L, 2); in _wrap_SBProcess_GetSTDERR()
43751 return luaL_error(L, "Positive integer expected"); in _wrap_SBProcess_GetSTDERR()
43756 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetSTDERR()
43758 lua_pop(L, 1); // Blow away the previous result in _wrap_SBProcess_GetSTDERR()
43760 lua_pushliteral(L, ""); in _wrap_SBProcess_GetSTDERR()
43762 lua_pushlstring(L, (const char *)arg2, result); in _wrap_SBProcess_GetSTDERR()
43771 lua_error(L); in _wrap_SBProcess_GetSTDERR()
43776 static int _wrap_SBProcess_GetAsyncProfileData(lua_State* L) { in _wrap_SBProcess_GetAsyncProfileData() argument
43785 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAsyncProfileData",1,"lldb::SBProcess c… in _wrap_SBProcess_GetAsyncProfileData()
43787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetAsyncProfileData()
43792 arg3 = luaL_checkinteger(L, 2); in _wrap_SBProcess_GetAsyncProfileData()
43794 return luaL_error(L, "Positive integer expected"); in _wrap_SBProcess_GetAsyncProfileData()
43799 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetAsyncProfileData()
43801 lua_pop(L, 1); // Blow away the previous result in _wrap_SBProcess_GetAsyncProfileData()
43803 lua_pushliteral(L, ""); in _wrap_SBProcess_GetAsyncProfileData()
43805 lua_pushlstring(L, (const char *)arg2, result); in _wrap_SBProcess_GetAsyncProfileData()
43814 lua_error(L); in _wrap_SBProcess_GetAsyncProfileData()
43819 static int _wrap_SBProcess_ReportEventState__SWIG_0(lua_State* L) { in _wrap_SBProcess_ReportEventState__SWIG_0() argument
43828 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",1,"lldb::SBProcess cons… in _wrap_SBProcess_ReportEventState__SWIG_0()
43829 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",2,"lldb::SBEvent const … in _wrap_SBProcess_ReportEventState__SWIG_0()
43830 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",3,"lldb::SBFile"); in _wrap_SBProcess_ReportEventState__SWIG_0()
43832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ReportEventState__SWIG_0()
43837 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_ReportEventState__SWIG_0()
43842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBProcess_ReportEventState__SWIG_0()
43853 lua_error(L); in _wrap_SBProcess_ReportEventState__SWIG_0()
43858 static int _wrap_SBProcess_ReportEventState__SWIG_1(lua_State* L) { in _wrap_SBProcess_ReportEventState__SWIG_1() argument
43866 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",1,"lldb::SBProcess cons… in _wrap_SBProcess_ReportEventState__SWIG_1()
43867 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::ReportEventState",2,"lldb::SBEvent const … in _wrap_SBProcess_ReportEventState__SWIG_1()
43869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ReportEventState__SWIG_1()
43874 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_ReportEventState__SWIG_1()
43879 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 3, LUA_FILEHANDLE); in _wrap_SBProcess_ReportEventState__SWIG_1()
43883 return luaL_error(L, "Invalid file"); in _wrap_SBProcess_ReportEventState__SWIG_1()
43892 lua_error(L); in _wrap_SBProcess_ReportEventState__SWIG_1()
43897 static int _wrap_SBProcess_ReportEventState(lua_State* L) { in _wrap_SBProcess_ReportEventState() argument
43903 argc = lua_gettop(L); in _wrap_SBProcess_ReportEventState()
43908 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_ReportEventState()
43917 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_ReportEventState()
43926 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_ReportEventState()
43933 return _wrap_SBProcess_ReportEventState__SWIG_0(L); in _wrap_SBProcess_ReportEventState()
43942 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_ReportEventState()
43951 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_ReportEventState()
43959 _v = (lua_isuserdata(L, argv[2])) && in _wrap_SBProcess_ReportEventState()
43960 (luaL_testudata(L, argv[2], LUA_FILEHANDLE) != nullptr); in _wrap_SBProcess_ReportEventState()
43963 return _wrap_SBProcess_ReportEventState__SWIG_1(L); in _wrap_SBProcess_ReportEventState()
43969 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_ReportEventState'\n" in _wrap_SBProcess_ReportEventState()
43973 lua_error(L);return 0; in _wrap_SBProcess_ReportEventState()
43977 static int _wrap_SBProcess_AppendEventStateReport(lua_State* L) { in _wrap_SBProcess_AppendEventStateReport() argument
43985 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::AppendEventStateReport",1,"lldb::SBProces… in _wrap_SBProcess_AppendEventStateReport()
43986 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::AppendEventStateReport",2,"lldb::SBEvent … in _wrap_SBProcess_AppendEventStateReport()
43987 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::AppendEventStateReport",3,"lldb::SBComman… in _wrap_SBProcess_AppendEventStateReport()
43989 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_AppendEventStateReport()
43994 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_AppendEventStateReport()
43999 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBCommandReturnObject,0))){ in _wrap_SBProcess_AppendEventStateReport()
44009 lua_error(L); in _wrap_SBProcess_AppendEventStateReport()
44014 static int _wrap_SBProcess_RemoteAttachToProcessWithID(lua_State* L) { in _wrap_SBProcess_RemoteAttachToProcessWithID() argument
44023 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::RemoteAttachToProcessWithID",1,"lldb::SBP… in _wrap_SBProcess_RemoteAttachToProcessWithID()
44024 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::RemoteAttachToProcessWithID",2,"lldb::pid_… in _wrap_SBProcess_RemoteAttachToProcessWithID()
44025 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::RemoteAttachToProcessWithID",3,"lldb::SBE… in _wrap_SBProcess_RemoteAttachToProcessWithID()
44027 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_RemoteAttachToProcessWithID()
44031 arg2 = (lldb::pid_t)lua_tointeger(L, 2); in _wrap_SBProcess_RemoteAttachToProcessWithID()
44033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_RemoteAttachToProcessWithID()
44038 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_RemoteAttachToProcessWithID()
44043 lua_error(L); in _wrap_SBProcess_RemoteAttachToProcessWithID()
44048 static int _wrap_SBProcess_RemoteLaunch(lua_State* L) { in _wrap_SBProcess_RemoteLaunch() argument
44064 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",1,"lldb::SBProcess *"); in _wrap_SBProcess_RemoteLaunch()
44065 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",4,"char const *"); in _wrap_SBProcess_RemoteLaunch()
44066 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",5,"char const *"); in _wrap_SBProcess_RemoteLaunch()
44067 if(!SWIG_lua_isnilstring(L,6)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",6,"char const *"); in _wrap_SBProcess_RemoteLaunch()
44068 if(!SWIG_lua_isnilstring(L,7)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",7,"char const *"); in _wrap_SBProcess_RemoteLaunch()
44069 if(!lua_isinteger(L,8)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",8,"uint32_t"); in _wrap_SBProcess_RemoteLaunch()
44070 if(!lua_isboolean(L,9)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",9,"bool"); in _wrap_SBProcess_RemoteLaunch()
44071 if(!lua_isuserdata(L,10)) SWIG_fail_arg("lldb::SBProcess::RemoteLaunch",10,"lldb::SBError &"); in _wrap_SBProcess_RemoteLaunch()
44073 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_RemoteLaunch()
44078 if (lua_istable(L, 2)) { in _wrap_SBProcess_RemoteLaunch()
44079 size_t size = lua_rawlen(L, 2); in _wrap_SBProcess_RemoteLaunch()
44083 lua_rawgeti(L, 2, i); in _wrap_SBProcess_RemoteLaunch()
44084 if (!lua_isstring(L, -1)) { in _wrap_SBProcess_RemoteLaunch()
44086 lua_pop(L, 1); in _wrap_SBProcess_RemoteLaunch()
44087 return luaL_error(L, "List should only contain strings"); in _wrap_SBProcess_RemoteLaunch()
44089 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBProcess_RemoteLaunch()
44090 lua_pop(L, 1); in _wrap_SBProcess_RemoteLaunch()
44093 } else if (lua_isnil(L, 2)) { in _wrap_SBProcess_RemoteLaunch()
44097 return luaL_error(L, "A list of strings expected"); in _wrap_SBProcess_RemoteLaunch()
44101 if (lua_istable(L, 3)) { in _wrap_SBProcess_RemoteLaunch()
44102 size_t size = lua_rawlen(L, 3); in _wrap_SBProcess_RemoteLaunch()
44106 lua_rawgeti(L, 3, i); in _wrap_SBProcess_RemoteLaunch()
44107 if (!lua_isstring(L, -1)) { in _wrap_SBProcess_RemoteLaunch()
44109 lua_pop(L, 1); in _wrap_SBProcess_RemoteLaunch()
44110 return luaL_error(L, "List should only contain strings"); in _wrap_SBProcess_RemoteLaunch()
44112 arg3[j++] = (char *)lua_tostring(L, -1); in _wrap_SBProcess_RemoteLaunch()
44113 lua_pop(L, 1); in _wrap_SBProcess_RemoteLaunch()
44116 } else if (lua_isnil(L, 3)) { in _wrap_SBProcess_RemoteLaunch()
44120 return luaL_error(L, "A list of strings expected"); in _wrap_SBProcess_RemoteLaunch()
44123 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBProcess_RemoteLaunch()
44124 arg5 = (char *)lua_tostring(L, 5); in _wrap_SBProcess_RemoteLaunch()
44125 arg6 = (char *)lua_tostring(L, 6); in _wrap_SBProcess_RemoteLaunch()
44126 arg7 = (char *)lua_tostring(L, 7); in _wrap_SBProcess_RemoteLaunch()
44127 arg8 = (uint32_t)lua_tointeger(L, 8); in _wrap_SBProcess_RemoteLaunch()
44128 arg9 = (lua_toboolean(L, 9)!=0); in _wrap_SBProcess_RemoteLaunch()
44130 if (!SWIG_IsOK(SWIG_ConvertPtr(L,10,(void**)&arg10,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_RemoteLaunch()
44135 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_RemoteLaunch()
44152 lua_error(L); in _wrap_SBProcess_RemoteLaunch()
44157 static int _wrap_SBProcess_GetNumThreads(lua_State* L) { in _wrap_SBProcess_GetNumThreads() argument
44164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumThreads",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetNumThreads()
44166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetNumThreads()
44171 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetNumThreads()
44176 lua_error(L); in _wrap_SBProcess_GetNumThreads()
44181 static int _wrap_SBProcess_GetThreadAtIndex(lua_State* L) { in _wrap_SBProcess_GetThreadAtIndex() argument
44189 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetThreadAtIndex",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetThreadAtIndex()
44190 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetThreadAtIndex",2,"size_t"); in _wrap_SBProcess_GetThreadAtIndex()
44192 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetThreadAtIndex()
44196 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetThreadAtIndex()
44200 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBProcess_GetThreadAtIndex()
44206 lua_error(L); in _wrap_SBProcess_GetThreadAtIndex()
44211 static int _wrap_SBProcess_GetThreadByID(lua_State* L) { in _wrap_SBProcess_GetThreadByID() argument
44219 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetThreadByID",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetThreadByID()
44220 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetThreadByID",2,"lldb::tid_t"); in _wrap_SBProcess_GetThreadByID()
44222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetThreadByID()
44226 arg2 = (lldb::tid_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetThreadByID()
44230 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBProcess_GetThreadByID()
44236 lua_error(L); in _wrap_SBProcess_GetThreadByID()
44241 static int _wrap_SBProcess_GetThreadByIndexID(lua_State* L) { in _wrap_SBProcess_GetThreadByIndexID() argument
44249 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetThreadByIndexID",1,"lldb::SBProcess *"… in _wrap_SBProcess_GetThreadByIndexID()
44250 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetThreadByIndexID",2,"uint32_t"); in _wrap_SBProcess_GetThreadByIndexID()
44252 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetThreadByIndexID()
44256 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetThreadByIndexID()
44260 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBProcess_GetThreadByIndexID()
44266 lua_error(L); in _wrap_SBProcess_GetThreadByIndexID()
44271 static int _wrap_SBProcess_GetSelectedThread(lua_State* L) { in _wrap_SBProcess_GetSelectedThread() argument
44278 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetSelectedThread",1,"lldb::SBProcess con… in _wrap_SBProcess_GetSelectedThread()
44280 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetSelectedThread()
44287 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBProcess_GetSelectedThread()
44293 lua_error(L); in _wrap_SBProcess_GetSelectedThread()
44298 static int _wrap_SBProcess_CreateOSPluginThread(lua_State* L) { in _wrap_SBProcess_CreateOSPluginThread() argument
44307 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::CreateOSPluginThread",1,"lldb::SBProcess … in _wrap_SBProcess_CreateOSPluginThread()
44308 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::CreateOSPluginThread",2,"lldb::tid_t"); in _wrap_SBProcess_CreateOSPluginThread()
44309 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::CreateOSPluginThread",3,"lldb::addr_t"); in _wrap_SBProcess_CreateOSPluginThread()
44311 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_CreateOSPluginThread()
44315 arg2 = (lldb::tid_t)lua_tointeger(L, 2); in _wrap_SBProcess_CreateOSPluginThread()
44316 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBProcess_CreateOSPluginThread()
44320 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBProcess_CreateOSPluginThread()
44326 lua_error(L); in _wrap_SBProcess_CreateOSPluginThread()
44331 static int _wrap_SBProcess_SetSelectedThread(lua_State* L) { in _wrap_SBProcess_SetSelectedThread() argument
44339 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThread",1,"lldb::SBProcess *"); in _wrap_SBProcess_SetSelectedThread()
44340 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThread",2,"lldb::SBThread cons… in _wrap_SBProcess_SetSelectedThread()
44342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetSelectedThread()
44347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBProcess_SetSelectedThread()
44352 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_SetSelectedThread()
44357 lua_error(L); in _wrap_SBProcess_SetSelectedThread()
44362 static int _wrap_SBProcess_SetSelectedThreadByID(lua_State* L) { in _wrap_SBProcess_SetSelectedThreadByID() argument
44370 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByID",1,"lldb::SBProcess… in _wrap_SBProcess_SetSelectedThreadByID()
44371 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByID",2,"lldb::tid_t"); in _wrap_SBProcess_SetSelectedThreadByID()
44373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetSelectedThreadByID()
44377 arg2 = (lldb::tid_t)lua_tointeger(L, 2); in _wrap_SBProcess_SetSelectedThreadByID()
44379 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_SetSelectedThreadByID()
44384 lua_error(L); in _wrap_SBProcess_SetSelectedThreadByID()
44389 static int _wrap_SBProcess_SetSelectedThreadByIndexID(lua_State* L) { in _wrap_SBProcess_SetSelectedThreadByIndexID() argument
44397 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByIndexID",1,"lldb::SBPr… in _wrap_SBProcess_SetSelectedThreadByIndexID()
44398 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetSelectedThreadByIndexID",2,"uint32_t"); in _wrap_SBProcess_SetSelectedThreadByIndexID()
44400 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetSelectedThreadByIndexID()
44404 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBProcess_SetSelectedThreadByIndexID()
44406 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_SetSelectedThreadByIndexID()
44411 lua_error(L); in _wrap_SBProcess_SetSelectedThreadByIndexID()
44416 static int _wrap_SBProcess_GetNumQueues(lua_State* L) { in _wrap_SBProcess_GetNumQueues() argument
44423 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumQueues",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetNumQueues()
44425 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetNumQueues()
44430 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetNumQueues()
44435 lua_error(L); in _wrap_SBProcess_GetNumQueues()
44440 static int _wrap_SBProcess_GetQueueAtIndex(lua_State* L) { in _wrap_SBProcess_GetQueueAtIndex() argument
44448 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetQueueAtIndex",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetQueueAtIndex()
44449 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetQueueAtIndex",2,"size_t"); in _wrap_SBProcess_GetQueueAtIndex()
44451 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetQueueAtIndex()
44455 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetQueueAtIndex()
44459 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++; in _wrap_SBProcess_GetQueueAtIndex()
44465 lua_error(L); in _wrap_SBProcess_GetQueueAtIndex()
44470 static int _wrap_SBProcess_GetState(lua_State* L) { in _wrap_SBProcess_GetState() argument
44477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetState",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetState()
44479 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetState()
44484 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetState()
44489 lua_error(L); in _wrap_SBProcess_GetState()
44494 static int _wrap_SBProcess_GetExitStatus(lua_State* L) { in _wrap_SBProcess_GetExitStatus() argument
44501 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExitStatus",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetExitStatus()
44503 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetExitStatus()
44508 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetExitStatus()
44513 lua_error(L); in _wrap_SBProcess_GetExitStatus()
44518 static int _wrap_SBProcess_GetExitDescription(lua_State* L) { in _wrap_SBProcess_GetExitDescription() argument
44525 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExitDescription",1,"lldb::SBProcess *"… in _wrap_SBProcess_GetExitDescription()
44527 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetExitDescription()
44532 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetExitDescription()
44537 lua_error(L); in _wrap_SBProcess_GetExitDescription()
44542 static int _wrap_SBProcess_GetProcessID(lua_State* L) { in _wrap_SBProcess_GetProcessID() argument
44549 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetProcessID",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetProcessID()
44551 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetProcessID()
44556 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetProcessID()
44561 lua_error(L); in _wrap_SBProcess_GetProcessID()
44566 static int _wrap_SBProcess_GetUniqueID(lua_State* L) { in _wrap_SBProcess_GetUniqueID() argument
44573 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetUniqueID",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetUniqueID()
44575 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetUniqueID()
44580 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetUniqueID()
44585 lua_error(L); in _wrap_SBProcess_GetUniqueID()
44590 static int _wrap_SBProcess_GetAddressByteSize(lua_State* L) { in _wrap_SBProcess_GetAddressByteSize() argument
44597 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAddressByteSize",1,"lldb::SBProcess co… in _wrap_SBProcess_GetAddressByteSize()
44599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetAddressByteSize()
44604 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetAddressByteSize()
44609 lua_error(L); in _wrap_SBProcess_GetAddressByteSize()
44614 static int _wrap_SBProcess_Destroy(lua_State* L) { in _wrap_SBProcess_Destroy() argument
44621 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Destroy",1,"lldb::SBProcess *"); in _wrap_SBProcess_Destroy()
44623 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Destroy()
44630 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Destroy()
44636 lua_error(L); in _wrap_SBProcess_Destroy()
44641 static int _wrap_SBProcess_Continue(lua_State* L) { in _wrap_SBProcess_Continue() argument
44648 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Continue",1,"lldb::SBProcess *"); in _wrap_SBProcess_Continue()
44650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Continue()
44657 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Continue()
44663 lua_error(L); in _wrap_SBProcess_Continue()
44668 static int _wrap_SBProcess_Stop(lua_State* L) { in _wrap_SBProcess_Stop() argument
44675 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Stop",1,"lldb::SBProcess *"); in _wrap_SBProcess_Stop()
44677 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Stop()
44684 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Stop()
44690 lua_error(L); in _wrap_SBProcess_Stop()
44695 static int _wrap_SBProcess_Kill(lua_State* L) { in _wrap_SBProcess_Kill() argument
44702 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Kill",1,"lldb::SBProcess *"); in _wrap_SBProcess_Kill()
44704 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Kill()
44711 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Kill()
44717 lua_error(L); in _wrap_SBProcess_Kill()
44722 static int _wrap_SBProcess_Detach__SWIG_0(lua_State* L) { in _wrap_SBProcess_Detach__SWIG_0() argument
44729 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Detach",1,"lldb::SBProcess *"); in _wrap_SBProcess_Detach__SWIG_0()
44731 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Detach__SWIG_0()
44738 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Detach__SWIG_0()
44744 lua_error(L); in _wrap_SBProcess_Detach__SWIG_0()
44749 static int _wrap_SBProcess_Detach__SWIG_1(lua_State* L) { in _wrap_SBProcess_Detach__SWIG_1() argument
44757 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Detach",1,"lldb::SBProcess *"); in _wrap_SBProcess_Detach__SWIG_1()
44758 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBProcess::Detach",2,"bool"); in _wrap_SBProcess_Detach__SWIG_1()
44760 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Detach__SWIG_1()
44764 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBProcess_Detach__SWIG_1()
44768 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Detach__SWIG_1()
44774 lua_error(L); in _wrap_SBProcess_Detach__SWIG_1()
44779 static int _wrap_SBProcess_Detach(lua_State* L) { in _wrap_SBProcess_Detach() argument
44785 argc = lua_gettop(L); in _wrap_SBProcess_Detach()
44790 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_Detach()
44797 return _wrap_SBProcess_Detach__SWIG_0(L); in _wrap_SBProcess_Detach()
44804 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_Detach()
44812 _v = lua_isboolean(L,argv[1]); in _wrap_SBProcess_Detach()
44815 return _wrap_SBProcess_Detach__SWIG_1(L); in _wrap_SBProcess_Detach()
44820 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_Detach'\n" in _wrap_SBProcess_Detach()
44824 lua_error(L);return 0; in _wrap_SBProcess_Detach()
44828 static int _wrap_SBProcess_Signal(lua_State* L) { in _wrap_SBProcess_Signal() argument
44836 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::Signal",1,"lldb::SBProcess *"); in _wrap_SBProcess_Signal()
44837 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::Signal",2,"int"); in _wrap_SBProcess_Signal()
44839 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_Signal()
44843 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBProcess_Signal()
44847 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_Signal()
44853 lua_error(L); in _wrap_SBProcess_Signal()
44858 static int _wrap_SBProcess_GetUnixSignals(lua_State* L) { in _wrap_SBProcess_GetUnixSignals() argument
44865 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetUnixSignals",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetUnixSignals()
44867 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetUnixSignals()
44874 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++; in _wrap_SBProcess_GetUnixSignals()
44880 lua_error(L); in _wrap_SBProcess_GetUnixSignals()
44885 static int _wrap_SBProcess_SendAsyncInterrupt(lua_State* L) { in _wrap_SBProcess_SendAsyncInterrupt() argument
44891 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SendAsyncInterrupt",1,"lldb::SBProcess *"… in _wrap_SBProcess_SendAsyncInterrupt()
44893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SendAsyncInterrupt()
44903 lua_error(L); in _wrap_SBProcess_SendAsyncInterrupt()
44908 static int _wrap_SBProcess_GetStopID__SWIG_0(lua_State* L) { in _wrap_SBProcess_GetStopID__SWIG_0() argument
44916 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStopID",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetStopID__SWIG_0()
44917 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBProcess::GetStopID",2,"bool"); in _wrap_SBProcess_GetStopID__SWIG_0()
44919 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetStopID__SWIG_0()
44923 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBProcess_GetStopID__SWIG_0()
44925 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetStopID__SWIG_0()
44930 lua_error(L); in _wrap_SBProcess_GetStopID__SWIG_0()
44935 static int _wrap_SBProcess_GetStopID__SWIG_1(lua_State* L) { in _wrap_SBProcess_GetStopID__SWIG_1() argument
44942 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStopID",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetStopID__SWIG_1()
44944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetStopID__SWIG_1()
44949 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetStopID__SWIG_1()
44954 lua_error(L); in _wrap_SBProcess_GetStopID__SWIG_1()
44959 static int _wrap_SBProcess_GetStopID(lua_State* L) { in _wrap_SBProcess_GetStopID() argument
44965 argc = lua_gettop(L); in _wrap_SBProcess_GetStopID()
44970 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_GetStopID()
44977 return _wrap_SBProcess_GetStopID__SWIG_1(L); in _wrap_SBProcess_GetStopID()
44984 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_GetStopID()
44992 _v = lua_isboolean(L,argv[1]); in _wrap_SBProcess_GetStopID()
44995 return _wrap_SBProcess_GetStopID__SWIG_0(L); in _wrap_SBProcess_GetStopID()
45000 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_GetStopID'\n" in _wrap_SBProcess_GetStopID()
45004 lua_error(L);return 0; in _wrap_SBProcess_GetStopID()
45008 static int _wrap_SBProcess_GetStopEventForStopID(lua_State* L) { in _wrap_SBProcess_GetStopEventForStopID() argument
45016 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStopEventForStopID",1,"lldb::SBProcess… in _wrap_SBProcess_GetStopEventForStopID()
45017 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetStopEventForStopID",2,"uint32_t"); in _wrap_SBProcess_GetStopEventForStopID()
45019 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetStopEventForStopID()
45023 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetStopEventForStopID()
45027 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEvent,1); SWIG_arg++; in _wrap_SBProcess_GetStopEventForStopID()
45033 lua_error(L); in _wrap_SBProcess_GetStopEventForStopID()
45038 static int _wrap_SBProcess_ForceScriptedState(lua_State* L) { in _wrap_SBProcess_ForceScriptedState() argument
45045 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ForceScriptedState",1,"lldb::SBProcess *"… in _wrap_SBProcess_ForceScriptedState()
45046 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ForceScriptedState",2,"lldb::StateType"); in _wrap_SBProcess_ForceScriptedState()
45048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ForceScriptedState()
45052 arg2 = (lldb::StateType)lua_tointeger(L, 2); in _wrap_SBProcess_ForceScriptedState()
45059 lua_error(L); in _wrap_SBProcess_ForceScriptedState()
45064 static int _wrap_SBProcess_ReadMemory(lua_State* L) { in _wrap_SBProcess_ReadMemory() argument
45075 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadMemory",1,"lldb::SBProcess *"); in _wrap_SBProcess_ReadMemory()
45076 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadMemory",2,"lldb::addr_t"); in _wrap_SBProcess_ReadMemory()
45077 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::ReadMemory",4,"lldb::SBError &"); in _wrap_SBProcess_ReadMemory()
45079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ReadMemory()
45083 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_ReadMemory()
45085 arg4 = luaL_checkinteger(L, 3); in _wrap_SBProcess_ReadMemory()
45087 return luaL_error(L, "Positive integer expected"); in _wrap_SBProcess_ReadMemory()
45092 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_ReadMemory()
45097 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_ReadMemory()
45099 lua_pop(L, 1); // Blow away the previous result in _wrap_SBProcess_ReadMemory()
45101 lua_pushliteral(L, ""); in _wrap_SBProcess_ReadMemory()
45103 lua_pushlstring(L, (const char *)arg3, result); in _wrap_SBProcess_ReadMemory()
45112 lua_error(L); in _wrap_SBProcess_ReadMemory()
45117 static int _wrap_SBProcess_WriteMemory(lua_State* L) { in _wrap_SBProcess_WriteMemory() argument
45128 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::WriteMemory",1,"lldb::SBProcess *"); in _wrap_SBProcess_WriteMemory()
45129 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::WriteMemory",2,"lldb::addr_t"); in _wrap_SBProcess_WriteMemory()
45130 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::WriteMemory",4,"lldb::SBError &"); in _wrap_SBProcess_WriteMemory()
45132 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_WriteMemory()
45136 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_WriteMemory()
45138 arg3 = (void *)luaL_checklstring(L, 3, &arg4); in _wrap_SBProcess_WriteMemory()
45141 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_WriteMemory()
45146 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_WriteMemory()
45151 lua_error(L); in _wrap_SBProcess_WriteMemory()
45156 static int _wrap_SBProcess_ReadCStringFromMemory(lua_State* L) { in _wrap_SBProcess_ReadCStringFromMemory() argument
45167 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadCStringFromMemory",1,"lldb::SBProcess… in _wrap_SBProcess_ReadCStringFromMemory()
45168 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadCStringFromMemory",2,"lldb::addr_t"); in _wrap_SBProcess_ReadCStringFromMemory()
45169 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::ReadCStringFromMemory",4,"lldb::SBError &… in _wrap_SBProcess_ReadCStringFromMemory()
45171 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ReadCStringFromMemory()
45175 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_ReadCStringFromMemory()
45177 arg4 = luaL_checkinteger(L, 3); in _wrap_SBProcess_ReadCStringFromMemory()
45179 return luaL_error(L, "Positive integer expected"); in _wrap_SBProcess_ReadCStringFromMemory()
45184 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_ReadCStringFromMemory()
45189 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_ReadCStringFromMemory()
45191 lua_pop(L, 1); // Blow away the previous result in _wrap_SBProcess_ReadCStringFromMemory()
45193 lua_pushliteral(L, ""); in _wrap_SBProcess_ReadCStringFromMemory()
45195 lua_pushlstring(L, (const char *)arg3, result); in _wrap_SBProcess_ReadCStringFromMemory()
45204 lua_error(L); in _wrap_SBProcess_ReadCStringFromMemory()
45209 static int _wrap_SBProcess_ReadUnsignedFromMemory(lua_State* L) { in _wrap_SBProcess_ReadUnsignedFromMemory() argument
45219 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",1,"lldb::SBProces… in _wrap_SBProcess_ReadUnsignedFromMemory()
45220 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",2,"lldb::addr_t"); in _wrap_SBProcess_ReadUnsignedFromMemory()
45221 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",3,"uint32_t"); in _wrap_SBProcess_ReadUnsignedFromMemory()
45222 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::ReadUnsignedFromMemory",4,"lldb::SBError … in _wrap_SBProcess_ReadUnsignedFromMemory()
45224 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ReadUnsignedFromMemory()
45228 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_ReadUnsignedFromMemory()
45229 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBProcess_ReadUnsignedFromMemory()
45231 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_ReadUnsignedFromMemory()
45236 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_ReadUnsignedFromMemory()
45241 lua_error(L); in _wrap_SBProcess_ReadUnsignedFromMemory()
45246 static int _wrap_SBProcess_ReadPointerFromMemory(lua_State* L) { in _wrap_SBProcess_ReadPointerFromMemory() argument
45255 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::ReadPointerFromMemory",1,"lldb::SBProcess… in _wrap_SBProcess_ReadPointerFromMemory()
45256 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::ReadPointerFromMemory",2,"lldb::addr_t"); in _wrap_SBProcess_ReadPointerFromMemory()
45257 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::ReadPointerFromMemory",3,"lldb::SBError &… in _wrap_SBProcess_ReadPointerFromMemory()
45259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_ReadPointerFromMemory()
45263 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_ReadPointerFromMemory()
45265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_ReadPointerFromMemory()
45270 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_ReadPointerFromMemory()
45275 lua_error(L); in _wrap_SBProcess_ReadPointerFromMemory()
45280 static int _wrap_SBProcess_FindRangesInMemory(lua_State* L) { in _wrap_SBProcess_FindRangesInMemory() argument
45293 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",1,"lldb::SBProcess *"… in _wrap_SBProcess_FindRangesInMemory()
45294 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",2,"void const *"); in _wrap_SBProcess_FindRangesInMemory()
45295 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",3,"uint64_t"); in _wrap_SBProcess_FindRangesInMemory()
45296 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",4,"lldb::SBAddressRan… in _wrap_SBProcess_FindRangesInMemory()
45297 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",5,"uint32_t"); in _wrap_SBProcess_FindRangesInMemory()
45298 if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",6,"uint32_t"); in _wrap_SBProcess_FindRangesInMemory()
45299 … if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBProcess::FindRangesInMemory",7,"lldb::SBError &"); in _wrap_SBProcess_FindRangesInMemory()
45301 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_FindRangesInMemory()
45305 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBProcess_FindRangesInMemory"); in _wrap_SBProcess_FindRangesInMemory()
45306 arg3 = (uint64_t)lua_tointeger(L, 3); in _wrap_SBProcess_FindRangesInMemory()
45308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBAddressRangeList,0))){ in _wrap_SBProcess_FindRangesInMemory()
45312 arg5 = (uint32_t)lua_tointeger(L, 5); in _wrap_SBProcess_FindRangesInMemory()
45313 arg6 = (uint32_t)lua_tointeger(L, 6); in _wrap_SBProcess_FindRangesInMemory()
45315 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_FindRangesInMemory()
45322 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddressRangeList,1); SWIG_arg++; in _wrap_SBProcess_FindRangesInMemory()
45328 lua_error(L); in _wrap_SBProcess_FindRangesInMemory()
45333 static int _wrap_SBProcess_FindInMemory(lua_State* L) { in _wrap_SBProcess_FindInMemory() argument
45345 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",1,"lldb::SBProcess *"); in _wrap_SBProcess_FindInMemory()
45346 if(!SWIG_isptrtype(L,2)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",2,"void const *"); in _wrap_SBProcess_FindInMemory()
45347 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",3,"uint64_t"); in _wrap_SBProcess_FindInMemory()
45348 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",4,"lldb::SBAddressRange con… in _wrap_SBProcess_FindInMemory()
45349 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",5,"uint32_t"); in _wrap_SBProcess_FindInMemory()
45350 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBProcess::FindInMemory",6,"lldb::SBError &"); in _wrap_SBProcess_FindInMemory()
45352 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_FindInMemory()
45356 arg2=(void *)SWIG_MustGetPtr(L,2,0,0,2,"SBProcess_FindInMemory"); in _wrap_SBProcess_FindInMemory()
45357 arg3 = (uint64_t)lua_tointeger(L, 3); in _wrap_SBProcess_FindInMemory()
45359 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBAddressRange,0))){ in _wrap_SBProcess_FindInMemory()
45363 arg5 = (uint32_t)lua_tointeger(L, 5); in _wrap_SBProcess_FindInMemory()
45365 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_FindInMemory()
45370 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_FindInMemory()
45375 lua_error(L); in _wrap_SBProcess_FindInMemory()
45380 static int _wrap_SBProcess_GetStateFromEvent(lua_State* L) { in _wrap_SBProcess_GetStateFromEvent() argument
45387 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStateFromEvent",1,"lldb::SBEvent const… in _wrap_SBProcess_GetStateFromEvent()
45389 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetStateFromEvent()
45394 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetStateFromEvent()
45399 lua_error(L); in _wrap_SBProcess_GetStateFromEvent()
45404 static int _wrap_SBProcess_GetRestartedFromEvent(lua_State* L) { in _wrap_SBProcess_GetRestartedFromEvent() argument
45411 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetRestartedFromEvent",1,"lldb::SBEvent c… in _wrap_SBProcess_GetRestartedFromEvent()
45413 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetRestartedFromEvent()
45418 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_GetRestartedFromEvent()
45423 lua_error(L); in _wrap_SBProcess_GetRestartedFromEvent()
45428 static int _wrap_SBProcess_GetNumRestartedReasonsFromEvent(lua_State* L) { in _wrap_SBProcess_GetNumRestartedReasonsFromEvent() argument
45435 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumRestartedReasonsFromEvent",1,"lldb:… in _wrap_SBProcess_GetNumRestartedReasonsFromEvent()
45437 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetNumRestartedReasonsFromEvent()
45442 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetNumRestartedReasonsFromEvent()
45447 lua_error(L); in _wrap_SBProcess_GetNumRestartedReasonsFromEvent()
45452 static int _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent(lua_State* L) { in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent() argument
45460 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetRestartedReasonAtIndexFromEvent",1,"ll… in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent()
45461 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetRestartedReasonAtIndexFromEvent",2,"siz… in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent()
45463 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent()
45467 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent()
45469 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent()
45474 lua_error(L); in _wrap_SBProcess_GetRestartedReasonAtIndexFromEvent()
45479 static int _wrap_SBProcess_GetProcessFromEvent(lua_State* L) { in _wrap_SBProcess_GetProcessFromEvent() argument
45486 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetProcessFromEvent",1,"lldb::SBEvent con… in _wrap_SBProcess_GetProcessFromEvent()
45488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetProcessFromEvent()
45495 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBProcess_GetProcessFromEvent()
45501 lua_error(L); in _wrap_SBProcess_GetProcessFromEvent()
45506 static int _wrap_SBProcess_GetInterruptedFromEvent(lua_State* L) { in _wrap_SBProcess_GetInterruptedFromEvent() argument
45513 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetInterruptedFromEvent",1,"lldb::SBEvent… in _wrap_SBProcess_GetInterruptedFromEvent()
45515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetInterruptedFromEvent()
45520 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_GetInterruptedFromEvent()
45525 lua_error(L); in _wrap_SBProcess_GetInterruptedFromEvent()
45530 static int _wrap_SBProcess_GetStructuredDataFromEvent(lua_State* L) { in _wrap_SBProcess_GetStructuredDataFromEvent() argument
45537 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStructuredDataFromEvent",1,"lldb::SBEv… in _wrap_SBProcess_GetStructuredDataFromEvent()
45539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_GetStructuredDataFromEvent()
45546 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBProcess_GetStructuredDataFromEvent()
45552 lua_error(L); in _wrap_SBProcess_GetStructuredDataFromEvent()
45557 static int _wrap_SBProcess_EventIsProcessEvent(lua_State* L) { in _wrap_SBProcess_EventIsProcessEvent() argument
45564 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::EventIsProcessEvent",1,"lldb::SBEvent con… in _wrap_SBProcess_EventIsProcessEvent()
45566 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_EventIsProcessEvent()
45571 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_EventIsProcessEvent()
45576 lua_error(L); in _wrap_SBProcess_EventIsProcessEvent()
45581 static int _wrap_SBProcess_EventIsStructuredDataEvent(lua_State* L) { in _wrap_SBProcess_EventIsStructuredDataEvent() argument
45588 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcess::EventIsStructuredDataEvent",1,"lldb::SBEv… in _wrap_SBProcess_EventIsStructuredDataEvent()
45590 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBProcess_EventIsStructuredDataEvent()
45595 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_EventIsStructuredDataEvent()
45600 lua_error(L); in _wrap_SBProcess_EventIsStructuredDataEvent()
45605 static int _wrap_SBProcess_GetBroadcaster(lua_State* L) { in _wrap_SBProcess_GetBroadcaster() argument
45612 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetBroadcaster",1,"lldb::SBProcess const … in _wrap_SBProcess_GetBroadcaster()
45614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetBroadcaster()
45621 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_SBProcess_GetBroadcaster()
45627 lua_error(L); in _wrap_SBProcess_GetBroadcaster()
45632 static int _wrap_SBProcess_GetBroadcasterClass(lua_State* L) { in _wrap_SBProcess_GetBroadcasterClass() argument
45639 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetBroadcasterClass()
45644 lua_error(L); in _wrap_SBProcess_GetBroadcasterClass()
45649 static int _wrap_SBProcess_GetDescription(lua_State* L) { in _wrap_SBProcess_GetDescription() argument
45657 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetDescription",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetDescription()
45658 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::GetDescription",2,"lldb::SBStream &"); in _wrap_SBProcess_GetDescription()
45660 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetDescription()
45665 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBProcess_GetDescription()
45670 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_GetDescription()
45675 lua_error(L); in _wrap_SBProcess_GetDescription()
45680 static int _wrap_SBProcess_GetExtendedCrashInformation(lua_State* L) { in _wrap_SBProcess_GetExtendedCrashInformation() argument
45687 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExtendedCrashInformation",1,"lldb::SBP… in _wrap_SBProcess_GetExtendedCrashInformation()
45689 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetExtendedCrashInformation()
45696 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBProcess_GetExtendedCrashInformation()
45702 lua_error(L); in _wrap_SBProcess_GetExtendedCrashInformation()
45707 static int _wrap_SBProcess_GetNumSupportedHardwareWatchpoints(lua_State* L) { in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints() argument
45715 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumSupportedHardwareWatchpoints",1,"ll… in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints()
45716 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::GetNumSupportedHardwareWatchpoints",2,"ll… in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints()
45718 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints()
45723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints()
45728 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints()
45733 lua_error(L); in _wrap_SBProcess_GetNumSupportedHardwareWatchpoints()
45738 static int _wrap_SBProcess_LoadImage__SWIG_0(lua_State* L) { in _wrap_SBProcess_LoadImage__SWIG_0() argument
45747 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::LoadImage",1,"lldb::SBProcess *"); in _wrap_SBProcess_LoadImage__SWIG_0()
45748 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::LoadImage",2,"lldb::SBFileSpec &"); in _wrap_SBProcess_LoadImage__SWIG_0()
45749 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::LoadImage",3,"lldb::SBError &"); in _wrap_SBProcess_LoadImage__SWIG_0()
45751 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_LoadImage__SWIG_0()
45756 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBProcess_LoadImage__SWIG_0()
45761 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_LoadImage__SWIG_0()
45766 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_LoadImage__SWIG_0()
45771 lua_error(L); in _wrap_SBProcess_LoadImage__SWIG_0()
45776 static int _wrap_SBProcess_LoadImage__SWIG_1(lua_State* L) { in _wrap_SBProcess_LoadImage__SWIG_1() argument
45786 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::LoadImage",1,"lldb::SBProcess *"); in _wrap_SBProcess_LoadImage__SWIG_1()
45787 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::LoadImage",2,"lldb::SBFileSpec const &"); in _wrap_SBProcess_LoadImage__SWIG_1()
45788 … if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::LoadImage",3,"lldb::SBFileSpec const &"); in _wrap_SBProcess_LoadImage__SWIG_1()
45789 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::LoadImage",4,"lldb::SBError &"); in _wrap_SBProcess_LoadImage__SWIG_1()
45791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_LoadImage__SWIG_1()
45796 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBProcess_LoadImage__SWIG_1()
45801 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBProcess_LoadImage__SWIG_1()
45806 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_LoadImage__SWIG_1()
45811 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_LoadImage__SWIG_1()
45816 lua_error(L); in _wrap_SBProcess_LoadImage__SWIG_1()
45821 static int _wrap_SBProcess_LoadImage(lua_State* L) { in _wrap_SBProcess_LoadImage() argument
45827 argc = lua_gettop(L); in _wrap_SBProcess_LoadImage()
45832 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45841 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45850 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45857 return _wrap_SBProcess_LoadImage__SWIG_0(L); in _wrap_SBProcess_LoadImage()
45866 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45875 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45884 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45893 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_LoadImage()
45900 return _wrap_SBProcess_LoadImage__SWIG_1(L); in _wrap_SBProcess_LoadImage()
45907 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_LoadImage'\n" in _wrap_SBProcess_LoadImage()
45911 lua_error(L);return 0; in _wrap_SBProcess_LoadImage()
45915 static int _wrap_SBProcess_LoadImageUsingPaths(lua_State* L) { in _wrap_SBProcess_LoadImageUsingPaths() argument
45926 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",1,"lldb::SBProcess *… in _wrap_SBProcess_LoadImageUsingPaths()
45927 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",2,"lldb::SBFileSpec … in _wrap_SBProcess_LoadImageUsingPaths()
45928 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",3,"lldb::SBStringLis… in _wrap_SBProcess_LoadImageUsingPaths()
45929 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",4,"lldb::SBFileSpec … in _wrap_SBProcess_LoadImageUsingPaths()
45930 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBProcess::LoadImageUsingPaths",5,"lldb::SBError &"); in _wrap_SBProcess_LoadImageUsingPaths()
45932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_LoadImageUsingPaths()
45937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBProcess_LoadImageUsingPaths()
45942 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBProcess_LoadImageUsingPaths()
45947 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBProcess_LoadImageUsingPaths()
45952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_LoadImageUsingPaths()
45957 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_LoadImageUsingPaths()
45962 lua_error(L); in _wrap_SBProcess_LoadImageUsingPaths()
45967 static int _wrap_SBProcess_UnloadImage(lua_State* L) { in _wrap_SBProcess_UnloadImage() argument
45975 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::UnloadImage",1,"lldb::SBProcess *"); in _wrap_SBProcess_UnloadImage()
45976 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::UnloadImage",2,"uint32_t"); in _wrap_SBProcess_UnloadImage()
45978 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_UnloadImage()
45982 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBProcess_UnloadImage()
45986 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_UnloadImage()
45992 lua_error(L); in _wrap_SBProcess_UnloadImage()
45997 static int _wrap_SBProcess_SendEventData(lua_State* L) { in _wrap_SBProcess_SendEventData() argument
46005 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SendEventData",1,"lldb::SBProcess *"); in _wrap_SBProcess_SendEventData()
46006 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBProcess::SendEventData",2,"char const *"); in _wrap_SBProcess_SendEventData()
46008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SendEventData()
46012 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBProcess_SendEventData()
46016 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_SendEventData()
46022 lua_error(L); in _wrap_SBProcess_SendEventData()
46027 static int _wrap_SBProcess_GetNumExtendedBacktraceTypes(lua_State* L) { in _wrap_SBProcess_GetNumExtendedBacktraceTypes() argument
46034 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetNumExtendedBacktraceTypes",1,"lldb::SB… in _wrap_SBProcess_GetNumExtendedBacktraceTypes()
46036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetNumExtendedBacktraceTypes()
46041 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetNumExtendedBacktraceTypes()
46046 lua_error(L); in _wrap_SBProcess_GetNumExtendedBacktraceTypes()
46051 static int _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex(lua_State* L) { in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex() argument
46059 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetExtendedBacktraceTypeAtIndex",1,"lldb:… in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex()
46060 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetExtendedBacktraceTypeAtIndex",2,"uint32… in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex()
46062 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex()
46066 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex()
46068 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex()
46073 lua_error(L); in _wrap_SBProcess_GetExtendedBacktraceTypeAtIndex()
46078 static int _wrap_SBProcess_GetHistoryThreads(lua_State* L) { in _wrap_SBProcess_GetHistoryThreads() argument
46086 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetHistoryThreads",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetHistoryThreads()
46087 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetHistoryThreads",2,"lldb::addr_t"); in _wrap_SBProcess_GetHistoryThreads()
46089 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetHistoryThreads()
46093 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetHistoryThreads()
46097 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++; in _wrap_SBProcess_GetHistoryThreads()
46103 lua_error(L); in _wrap_SBProcess_GetHistoryThreads()
46108 static int _wrap_SBProcess_IsInstrumentationRuntimePresent(lua_State* L) { in _wrap_SBProcess_IsInstrumentationRuntimePresent() argument
46116 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::IsInstrumentationRuntimePresent",1,"lldb:… in _wrap_SBProcess_IsInstrumentationRuntimePresent()
46117 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::IsInstrumentationRuntimePresent",2,"lldb::… in _wrap_SBProcess_IsInstrumentationRuntimePresent()
46119 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_IsInstrumentationRuntimePresent()
46123 arg2 = (lldb::InstrumentationRuntimeType)lua_tointeger(L, 2); in _wrap_SBProcess_IsInstrumentationRuntimePresent()
46125 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcess_IsInstrumentationRuntimePresent()
46130 lua_error(L); in _wrap_SBProcess_IsInstrumentationRuntimePresent()
46135 static int _wrap_SBProcess_SaveCore__SWIG_0(lua_State* L) { in _wrap_SBProcess_SaveCore__SWIG_0() argument
46145 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SaveCore",1,"lldb::SBProcess *"); in _wrap_SBProcess_SaveCore__SWIG_0()
46146 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBProcess::SaveCore",2,"char const *"); in _wrap_SBProcess_SaveCore__SWIG_0()
46147 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBProcess::SaveCore",3,"char const *"); in _wrap_SBProcess_SaveCore__SWIG_0()
46148 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBProcess::SaveCore",4,"lldb::SaveCoreStyle"); in _wrap_SBProcess_SaveCore__SWIG_0()
46150 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SaveCore__SWIG_0()
46154 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBProcess_SaveCore__SWIG_0()
46155 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBProcess_SaveCore__SWIG_0()
46156 arg4 = (lldb::SaveCoreStyle)lua_tointeger(L, 4); in _wrap_SBProcess_SaveCore__SWIG_0()
46160 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_SaveCore__SWIG_0()
46166 lua_error(L); in _wrap_SBProcess_SaveCore__SWIG_0()
46171 static int _wrap_SBProcess_SaveCore__SWIG_1(lua_State* L) { in _wrap_SBProcess_SaveCore__SWIG_1() argument
46179 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SaveCore",1,"lldb::SBProcess *"); in _wrap_SBProcess_SaveCore__SWIG_1()
46180 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBProcess::SaveCore",2,"char const *"); in _wrap_SBProcess_SaveCore__SWIG_1()
46182 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SaveCore__SWIG_1()
46186 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBProcess_SaveCore__SWIG_1()
46190 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_SaveCore__SWIG_1()
46196 lua_error(L); in _wrap_SBProcess_SaveCore__SWIG_1()
46201 static int _wrap_SBProcess_SaveCore__SWIG_2(lua_State* L) { in _wrap_SBProcess_SaveCore__SWIG_2() argument
46209 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SaveCore",1,"lldb::SBProcess *"); in _wrap_SBProcess_SaveCore__SWIG_2()
46210 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::SaveCore",2,"lldb::SBSaveCoreOptions &"); in _wrap_SBProcess_SaveCore__SWIG_2()
46212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SaveCore__SWIG_2()
46217 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSaveCoreOptions,0))){ in _wrap_SBProcess_SaveCore__SWIG_2()
46224 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_SaveCore__SWIG_2()
46230 lua_error(L); in _wrap_SBProcess_SaveCore__SWIG_2()
46235 static int _wrap_SBProcess_SaveCore(lua_State* L) { in _wrap_SBProcess_SaveCore() argument
46241 argc = lua_gettop(L); in _wrap_SBProcess_SaveCore()
46246 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SaveCore()
46255 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SaveCore()
46262 return _wrap_SBProcess_SaveCore__SWIG_2(L); in _wrap_SBProcess_SaveCore()
46270 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SaveCore()
46278 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBProcess_SaveCore()
46281 return _wrap_SBProcess_SaveCore__SWIG_1(L); in _wrap_SBProcess_SaveCore()
46289 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SaveCore()
46297 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBProcess_SaveCore()
46301 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBProcess_SaveCore()
46305 _v = lua_isnumber(L,argv[3]); in _wrap_SBProcess_SaveCore()
46308 return _wrap_SBProcess_SaveCore__SWIG_0(L); in _wrap_SBProcess_SaveCore()
46315 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_SaveCore'\n" in _wrap_SBProcess_SaveCore()
46320 lua_error(L);return 0; in _wrap_SBProcess_SaveCore()
46324 static int _wrap_SBProcess_GetMemoryRegionInfo(lua_State* L) { in _wrap_SBProcess_GetMemoryRegionInfo() argument
46333 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegionInfo",1,"lldb::SBProcess *… in _wrap_SBProcess_GetMemoryRegionInfo()
46334 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegionInfo",2,"lldb::addr_t"); in _wrap_SBProcess_GetMemoryRegionInfo()
46335 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegionInfo",3,"lldb::SBMemoryReg… in _wrap_SBProcess_GetMemoryRegionInfo()
46337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetMemoryRegionInfo()
46341 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_GetMemoryRegionInfo()
46343 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBMemoryRegionInfo,0))){ in _wrap_SBProcess_GetMemoryRegionInfo()
46350 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_GetMemoryRegionInfo()
46356 lua_error(L); in _wrap_SBProcess_GetMemoryRegionInfo()
46361 static int _wrap_SBProcess_GetMemoryRegions(lua_State* L) { in _wrap_SBProcess_GetMemoryRegions() argument
46368 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetMemoryRegions",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetMemoryRegions()
46370 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetMemoryRegions()
46377 … SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBMemoryRegionInfoList,1); SWIG_arg++; in _wrap_SBProcess_GetMemoryRegions()
46383 lua_error(L); in _wrap_SBProcess_GetMemoryRegions()
46388 static int _wrap_SBProcess_GetProcessInfo(lua_State* L) { in _wrap_SBProcess_GetProcessInfo() argument
46395 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetProcessInfo",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetProcessInfo()
46397 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetProcessInfo()
46404 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcessInfo,1); SWIG_arg++; in _wrap_SBProcess_GetProcessInfo()
46410 lua_error(L); in _wrap_SBProcess_GetProcessInfo()
46415 static int _wrap_SBProcess_GetCoreFile(lua_State* L) { in _wrap_SBProcess_GetCoreFile() argument
46422 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetCoreFile",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetCoreFile()
46424 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetCoreFile()
46431 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBProcess_GetCoreFile()
46437 lua_error(L); in _wrap_SBProcess_GetCoreFile()
46442 static int _wrap_SBProcess_GetAddressMask__SWIG_0(lua_State* L) { in _wrap_SBProcess_GetAddressMask__SWIG_0() argument
46451 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetAddressMask__SWIG_0()
46452 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",2,"lldb::AddressMaskType"); in _wrap_SBProcess_GetAddressMask__SWIG_0()
46453 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",3,"lldb::AddressMaskRange"… in _wrap_SBProcess_GetAddressMask__SWIG_0()
46455 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetAddressMask__SWIG_0()
46459 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2); in _wrap_SBProcess_GetAddressMask__SWIG_0()
46460 arg3 = (lldb::AddressMaskRange)lua_tointeger(L, 3); in _wrap_SBProcess_GetAddressMask__SWIG_0()
46462 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetAddressMask__SWIG_0()
46467 lua_error(L); in _wrap_SBProcess_GetAddressMask__SWIG_0()
46472 static int _wrap_SBProcess_GetAddressMask__SWIG_1(lua_State* L) { in _wrap_SBProcess_GetAddressMask__SWIG_1() argument
46480 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetAddressMask__SWIG_1()
46481 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::GetAddressMask",2,"lldb::AddressMaskType"); in _wrap_SBProcess_GetAddressMask__SWIG_1()
46483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetAddressMask__SWIG_1()
46487 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2); in _wrap_SBProcess_GetAddressMask__SWIG_1()
46489 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_GetAddressMask__SWIG_1()
46494 lua_error(L); in _wrap_SBProcess_GetAddressMask__SWIG_1()
46499 static int _wrap_SBProcess_GetAddressMask(lua_State* L) { in _wrap_SBProcess_GetAddressMask() argument
46505 argc = lua_gettop(L); in _wrap_SBProcess_GetAddressMask()
46510 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_GetAddressMask()
46518 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_GetAddressMask()
46521 return _wrap_SBProcess_GetAddressMask__SWIG_1(L); in _wrap_SBProcess_GetAddressMask()
46529 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_GetAddressMask()
46537 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_GetAddressMask()
46541 _v = lua_isnumber(L,argv[2]); in _wrap_SBProcess_GetAddressMask()
46544 return _wrap_SBProcess_GetAddressMask__SWIG_0(L); in _wrap_SBProcess_GetAddressMask()
46550 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_GetAddressMask'\n" in _wrap_SBProcess_GetAddressMask()
46554 lua_error(L);return 0; in _wrap_SBProcess_GetAddressMask()
46558 static int _wrap_SBProcess_SetAddressMask__SWIG_0(lua_State* L) { in _wrap_SBProcess_SetAddressMask__SWIG_0() argument
46567 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",1,"lldb::SBProcess *"); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46568 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",2,"lldb::AddressMaskType"); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46569 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",3,"lldb::addr_t"); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46570 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",4,"lldb::AddressMaskRange"… in _wrap_SBProcess_SetAddressMask__SWIG_0()
46572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetAddressMask__SWIG_0()
46576 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46577 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46578 arg4 = (lldb::AddressMaskRange)lua_tointeger(L, 4); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46585 lua_error(L); in _wrap_SBProcess_SetAddressMask__SWIG_0()
46590 static int _wrap_SBProcess_SetAddressMask__SWIG_1(lua_State* L) { in _wrap_SBProcess_SetAddressMask__SWIG_1() argument
46598 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",1,"lldb::SBProcess *"); in _wrap_SBProcess_SetAddressMask__SWIG_1()
46599 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",2,"lldb::AddressMaskType"); in _wrap_SBProcess_SetAddressMask__SWIG_1()
46600 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressMask",3,"lldb::addr_t"); in _wrap_SBProcess_SetAddressMask__SWIG_1()
46602 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetAddressMask__SWIG_1()
46606 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2); in _wrap_SBProcess_SetAddressMask__SWIG_1()
46607 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBProcess_SetAddressMask__SWIG_1()
46614 lua_error(L); in _wrap_SBProcess_SetAddressMask__SWIG_1()
46619 static int _wrap_SBProcess_SetAddressMask(lua_State* L) { in _wrap_SBProcess_SetAddressMask() argument
46625 argc = lua_gettop(L); in _wrap_SBProcess_SetAddressMask()
46630 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SetAddressMask()
46638 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_SetAddressMask()
46642 _v = lua_isnumber(L,argv[2]); in _wrap_SBProcess_SetAddressMask()
46645 return _wrap_SBProcess_SetAddressMask__SWIG_1(L); in _wrap_SBProcess_SetAddressMask()
46654 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SetAddressMask()
46662 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_SetAddressMask()
46666 _v = lua_isnumber(L,argv[2]); in _wrap_SBProcess_SetAddressMask()
46670 _v = lua_isnumber(L,argv[3]); in _wrap_SBProcess_SetAddressMask()
46673 return _wrap_SBProcess_SetAddressMask__SWIG_0(L); in _wrap_SBProcess_SetAddressMask()
46680 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_SetAddressMask'\n" in _wrap_SBProcess_SetAddressMask()
46684 lua_error(L);return 0; in _wrap_SBProcess_SetAddressMask()
46688 static int _wrap_SBProcess_SetAddressableBits__SWIG_0(lua_State* L) { in _wrap_SBProcess_SetAddressableBits__SWIG_0() argument
46697 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",1,"lldb::SBProcess *"… in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46698 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",2,"lldb::AddressMaskTy… in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46699 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",3,"uint32_t"); in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46700 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",4,"lldb::AddressMaskRa… in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46702 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46706 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2); in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46707 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46708 arg4 = (lldb::AddressMaskRange)lua_tointeger(L, 4); in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46715 lua_error(L); in _wrap_SBProcess_SetAddressableBits__SWIG_0()
46720 static int _wrap_SBProcess_SetAddressableBits__SWIG_1(lua_State* L) { in _wrap_SBProcess_SetAddressableBits__SWIG_1() argument
46728 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",1,"lldb::SBProcess *"… in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46729 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",2,"lldb::AddressMaskTy… in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46730 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::SetAddressableBits",3,"uint32_t"); in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46736 arg2 = (lldb::AddressMaskType)lua_tointeger(L, 2); in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46737 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46744 lua_error(L); in _wrap_SBProcess_SetAddressableBits__SWIG_1()
46749 static int _wrap_SBProcess_SetAddressableBits(lua_State* L) { in _wrap_SBProcess_SetAddressableBits() argument
46755 argc = lua_gettop(L); in _wrap_SBProcess_SetAddressableBits()
46760 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SetAddressableBits()
46768 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_SetAddressableBits()
46772 _v = lua_isnumber(L,argv[2]); in _wrap_SBProcess_SetAddressableBits()
46775 return _wrap_SBProcess_SetAddressableBits__SWIG_1(L); in _wrap_SBProcess_SetAddressableBits()
46784 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_SetAddressableBits()
46792 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_SetAddressableBits()
46796 _v = lua_isnumber(L,argv[2]); in _wrap_SBProcess_SetAddressableBits()
46800 _v = lua_isnumber(L,argv[3]); in _wrap_SBProcess_SetAddressableBits()
46803 return _wrap_SBProcess_SetAddressableBits__SWIG_0(L); in _wrap_SBProcess_SetAddressableBits()
46810 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_SetAddressableBits'\n" in _wrap_SBProcess_SetAddressableBits()
46814 lua_error(L);return 0; in _wrap_SBProcess_SetAddressableBits()
46818 static int _wrap_SBProcess_FixAddress__SWIG_0(lua_State* L) { in _wrap_SBProcess_FixAddress__SWIG_0() argument
46827 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FixAddress",1,"lldb::SBProcess *"); in _wrap_SBProcess_FixAddress__SWIG_0()
46828 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::FixAddress",2,"lldb::addr_t"); in _wrap_SBProcess_FixAddress__SWIG_0()
46829 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::FixAddress",3,"lldb::AddressMaskType"); in _wrap_SBProcess_FixAddress__SWIG_0()
46831 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_FixAddress__SWIG_0()
46835 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_FixAddress__SWIG_0()
46836 arg3 = (lldb::AddressMaskType)lua_tointeger(L, 3); in _wrap_SBProcess_FixAddress__SWIG_0()
46838 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_FixAddress__SWIG_0()
46843 lua_error(L); in _wrap_SBProcess_FixAddress__SWIG_0()
46848 static int _wrap_SBProcess_FixAddress__SWIG_1(lua_State* L) { in _wrap_SBProcess_FixAddress__SWIG_1() argument
46856 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::FixAddress",1,"lldb::SBProcess *"); in _wrap_SBProcess_FixAddress__SWIG_1()
46857 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::FixAddress",2,"lldb::addr_t"); in _wrap_SBProcess_FixAddress__SWIG_1()
46859 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_FixAddress__SWIG_1()
46863 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_FixAddress__SWIG_1()
46865 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_FixAddress__SWIG_1()
46870 lua_error(L); in _wrap_SBProcess_FixAddress__SWIG_1()
46875 static int _wrap_SBProcess_FixAddress(lua_State* L) { in _wrap_SBProcess_FixAddress() argument
46881 argc = lua_gettop(L); in _wrap_SBProcess_FixAddress()
46886 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_FixAddress()
46894 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_FixAddress()
46897 return _wrap_SBProcess_FixAddress__SWIG_1(L); in _wrap_SBProcess_FixAddress()
46905 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBProcess_FixAddress()
46913 _v = lua_isnumber(L,argv[1]); in _wrap_SBProcess_FixAddress()
46917 _v = lua_isnumber(L,argv[2]); in _wrap_SBProcess_FixAddress()
46920 return _wrap_SBProcess_FixAddress__SWIG_0(L); in _wrap_SBProcess_FixAddress()
46926 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBProcess_FixAddress'\n" in _wrap_SBProcess_FixAddress()
46930 lua_error(L);return 0; in _wrap_SBProcess_FixAddress()
46934 static int _wrap_SBProcess_AllocateMemory(lua_State* L) { in _wrap_SBProcess_AllocateMemory() argument
46944 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",1,"lldb::SBProcess *"); in _wrap_SBProcess_AllocateMemory()
46945 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",2,"size_t"); in _wrap_SBProcess_AllocateMemory()
46946 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",3,"uint32_t"); in _wrap_SBProcess_AllocateMemory()
46947 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBProcess::AllocateMemory",4,"lldb::SBError &"); in _wrap_SBProcess_AllocateMemory()
46949 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_AllocateMemory()
46953 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBProcess_AllocateMemory()
46954 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBProcess_AllocateMemory()
46956 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBProcess_AllocateMemory()
46961 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcess_AllocateMemory()
46966 lua_error(L); in _wrap_SBProcess_AllocateMemory()
46971 static int _wrap_SBProcess_DeallocateMemory(lua_State* L) { in _wrap_SBProcess_DeallocateMemory() argument
46979 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::DeallocateMemory",1,"lldb::SBProcess *"); in _wrap_SBProcess_DeallocateMemory()
46980 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcess::DeallocateMemory",2,"lldb::addr_t"); in _wrap_SBProcess_DeallocateMemory()
46982 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_DeallocateMemory()
46986 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBProcess_DeallocateMemory()
46990 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBProcess_DeallocateMemory()
46996 lua_error(L); in _wrap_SBProcess_DeallocateMemory()
47001 static int _wrap_SBProcess_GetScriptedImplementation(lua_State* L) { in _wrap_SBProcess_GetScriptedImplementation() argument
47008 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetScriptedImplementation",1,"lldb::SBPro… in _wrap_SBProcess_GetScriptedImplementation()
47010 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetScriptedImplementation()
47017 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++; in _wrap_SBProcess_GetScriptedImplementation()
47023 lua_error(L); in _wrap_SBProcess_GetScriptedImplementation()
47028 static int _wrap_SBProcess_GetStatus(lua_State* L) { in _wrap_SBProcess_GetStatus() argument
47035 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::GetStatus",1,"lldb::SBProcess *"); in _wrap_SBProcess_GetStatus()
47036 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBProcess::GetStatus",2,"lldb::SBStream &"); in _wrap_SBProcess_GetStatus()
47038 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess_GetStatus()
47043 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBProcess_GetStatus()
47053 lua_error(L); in _wrap_SBProcess_GetStatus()
47058 static int _wrap_SBProcess___tostring(lua_State* L) { in _wrap_SBProcess___tostring() argument
47065 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcess::__repr__",1,"lldb::SBProcess *"); in _wrap_SBProcess___tostring()
47067 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcess,0))){ in _wrap_SBProcess___tostring()
47072 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBProcess___tostring()
47077 lua_error(L); in _wrap_SBProcess___tostring()
47086 static int _proxy__wrap_new_SBProcess(lua_State *L) { in _proxy__wrap_new_SBProcess() argument
47087 assert(lua_istable(L,1)); in _proxy__wrap_new_SBProcess()
47088 lua_pushcfunction(L,_wrap_new_SBProcess); in _proxy__wrap_new_SBProcess()
47089 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBProcess()
47090 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBProcess()
47091 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBProcess()
47222 static int _wrap_new_SBProcessInfo__SWIG_0(lua_State* L) { in _wrap_new_SBProcessInfo__SWIG_0() argument
47229 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfo,1); SWIG_arg++; in _wrap_new_SBProcessInfo__SWIG_0()
47234 lua_error(L); in _wrap_new_SBProcessInfo__SWIG_0()
47239 static int _wrap_new_SBProcessInfo__SWIG_1(lua_State* L) { in _wrap_new_SBProcessInfo__SWIG_1() argument
47246 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::SBProcessInfo",1,"lldb::SBProcessInfo… in _wrap_new_SBProcessInfo__SWIG_1()
47248 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_new_SBProcessInfo__SWIG_1()
47253 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfo,1); SWIG_arg++; in _wrap_new_SBProcessInfo__SWIG_1()
47258 lua_error(L); in _wrap_new_SBProcessInfo__SWIG_1()
47263 static int _wrap_new_SBProcessInfo(lua_State* L) { in _wrap_new_SBProcessInfo() argument
47269 argc = lua_gettop(L); in _wrap_new_SBProcessInfo()
47271 return _wrap_new_SBProcessInfo__SWIG_0(L); in _wrap_new_SBProcessInfo()
47277 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBProcessInfo()
47284 return _wrap_new_SBProcessInfo__SWIG_1(L); in _wrap_new_SBProcessInfo()
47288 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBProcessInfo'\n" in _wrap_new_SBProcessInfo()
47292 lua_error(L);return 0; in _wrap_new_SBProcessInfo()
47296 static int _wrap_SBProcessInfo_IsValid(lua_State* L) { in _wrap_SBProcessInfo_IsValid() argument
47303 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::IsValid",1,"lldb::SBProcessInfo const… in _wrap_SBProcessInfo_IsValid()
47305 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_IsValid()
47310 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcessInfo_IsValid()
47315 lua_error(L); in _wrap_SBProcessInfo_IsValid()
47320 static int _wrap_SBProcessInfo_GetName(lua_State* L) { in _wrap_SBProcessInfo_GetName() argument
47327 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetName",1,"lldb::SBProcessInfo *"); in _wrap_SBProcessInfo_GetName()
47329 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetName()
47334 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcessInfo_GetName()
47339 lua_error(L); in _wrap_SBProcessInfo_GetName()
47344 static int _wrap_SBProcessInfo_GetExecutableFile(lua_State* L) { in _wrap_SBProcessInfo_GetExecutableFile() argument
47351 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetExecutableFile",1,"lldb::SBProcess… in _wrap_SBProcessInfo_GetExecutableFile()
47353 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetExecutableFile()
47360 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBProcessInfo_GetExecutableFile()
47366 lua_error(L); in _wrap_SBProcessInfo_GetExecutableFile()
47371 static int _wrap_SBProcessInfo_GetProcessID(lua_State* L) { in _wrap_SBProcessInfo_GetProcessID() argument
47378 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetProcessID",1,"lldb::SBProcessInfo … in _wrap_SBProcessInfo_GetProcessID()
47380 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetProcessID()
47385 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfo_GetProcessID()
47390 lua_error(L); in _wrap_SBProcessInfo_GetProcessID()
47395 static int _wrap_SBProcessInfo_GetUserID(lua_State* L) { in _wrap_SBProcessInfo_GetUserID() argument
47402 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetUserID",1,"lldb::SBProcessInfo *"); in _wrap_SBProcessInfo_GetUserID()
47404 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetUserID()
47409 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfo_GetUserID()
47414 lua_error(L); in _wrap_SBProcessInfo_GetUserID()
47419 static int _wrap_SBProcessInfo_GetGroupID(lua_State* L) { in _wrap_SBProcessInfo_GetGroupID() argument
47426 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetGroupID",1,"lldb::SBProcessInfo *"… in _wrap_SBProcessInfo_GetGroupID()
47428 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetGroupID()
47433 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfo_GetGroupID()
47438 lua_error(L); in _wrap_SBProcessInfo_GetGroupID()
47443 static int _wrap_SBProcessInfo_UserIDIsValid(lua_State* L) { in _wrap_SBProcessInfo_UserIDIsValid() argument
47450 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::UserIDIsValid",1,"lldb::SBProcessInfo… in _wrap_SBProcessInfo_UserIDIsValid()
47452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_UserIDIsValid()
47457 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcessInfo_UserIDIsValid()
47462 lua_error(L); in _wrap_SBProcessInfo_UserIDIsValid()
47467 static int _wrap_SBProcessInfo_GroupIDIsValid(lua_State* L) { in _wrap_SBProcessInfo_GroupIDIsValid() argument
47474 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GroupIDIsValid",1,"lldb::SBProcessInf… in _wrap_SBProcessInfo_GroupIDIsValid()
47476 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GroupIDIsValid()
47481 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcessInfo_GroupIDIsValid()
47486 lua_error(L); in _wrap_SBProcessInfo_GroupIDIsValid()
47491 static int _wrap_SBProcessInfo_GetEffectiveUserID(lua_State* L) { in _wrap_SBProcessInfo_GetEffectiveUserID() argument
47498 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetEffectiveUserID",1,"lldb::SBProces… in _wrap_SBProcessInfo_GetEffectiveUserID()
47500 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetEffectiveUserID()
47505 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfo_GetEffectiveUserID()
47510 lua_error(L); in _wrap_SBProcessInfo_GetEffectiveUserID()
47515 static int _wrap_SBProcessInfo_GetEffectiveGroupID(lua_State* L) { in _wrap_SBProcessInfo_GetEffectiveGroupID() argument
47522 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetEffectiveGroupID",1,"lldb::SBProce… in _wrap_SBProcessInfo_GetEffectiveGroupID()
47524 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetEffectiveGroupID()
47529 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfo_GetEffectiveGroupID()
47534 lua_error(L); in _wrap_SBProcessInfo_GetEffectiveGroupID()
47539 static int _wrap_SBProcessInfo_EffectiveUserIDIsValid(lua_State* L) { in _wrap_SBProcessInfo_EffectiveUserIDIsValid() argument
47546 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::EffectiveUserIDIsValid",1,"lldb::SBPr… in _wrap_SBProcessInfo_EffectiveUserIDIsValid()
47548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_EffectiveUserIDIsValid()
47553 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcessInfo_EffectiveUserIDIsValid()
47558 lua_error(L); in _wrap_SBProcessInfo_EffectiveUserIDIsValid()
47563 static int _wrap_SBProcessInfo_EffectiveGroupIDIsValid(lua_State* L) { in _wrap_SBProcessInfo_EffectiveGroupIDIsValid() argument
47570 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::EffectiveGroupIDIsValid",1,"lldb::SBP… in _wrap_SBProcessInfo_EffectiveGroupIDIsValid()
47572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_EffectiveGroupIDIsValid()
47577 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcessInfo_EffectiveGroupIDIsValid()
47582 lua_error(L); in _wrap_SBProcessInfo_EffectiveGroupIDIsValid()
47587 static int _wrap_SBProcessInfo_GetParentProcessID(lua_State* L) { in _wrap_SBProcessInfo_GetParentProcessID() argument
47594 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetParentProcessID",1,"lldb::SBProces… in _wrap_SBProcessInfo_GetParentProcessID()
47596 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetParentProcessID()
47601 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfo_GetParentProcessID()
47606 lua_error(L); in _wrap_SBProcessInfo_GetParentProcessID()
47611 static int _wrap_SBProcessInfo_GetTriple(lua_State* L) { in _wrap_SBProcessInfo_GetTriple() argument
47618 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfo::GetTriple",1,"lldb::SBProcessInfo *"); in _wrap_SBProcessInfo_GetTriple()
47620 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfo_GetTriple()
47625 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBProcessInfo_GetTriple()
47630 lua_error(L); in _wrap_SBProcessInfo_GetTriple()
47639 static int _proxy__wrap_new_SBProcessInfo(lua_State *L) { in _proxy__wrap_new_SBProcessInfo() argument
47640 assert(lua_istable(L,1)); in _proxy__wrap_new_SBProcessInfo()
47641 lua_pushcfunction(L,_wrap_new_SBProcessInfo); in _proxy__wrap_new_SBProcessInfo()
47642 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBProcessInfo()
47643 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBProcessInfo()
47644 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBProcessInfo()
47696 static int _wrap_new_SBProcessInfoList__SWIG_0(lua_State* L) { in _wrap_new_SBProcessInfoList__SWIG_0() argument
47703 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfoList,1); SWIG_arg++; in _wrap_new_SBProcessInfoList__SWIG_0()
47708 lua_error(L); in _wrap_new_SBProcessInfoList__SWIG_0()
47713 static int _wrap_new_SBProcessInfoList__SWIG_1(lua_State* L) { in _wrap_new_SBProcessInfoList__SWIG_1() argument
47720 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::SBProcessInfoList",1,"lldb::SBPro… in _wrap_new_SBProcessInfoList__SWIG_1()
47722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){ in _wrap_new_SBProcessInfoList__SWIG_1()
47727 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBProcessInfoList,1); SWIG_arg++; in _wrap_new_SBProcessInfoList__SWIG_1()
47732 lua_error(L); in _wrap_new_SBProcessInfoList__SWIG_1()
47737 static int _wrap_new_SBProcessInfoList(lua_State* L) { in _wrap_new_SBProcessInfoList() argument
47743 argc = lua_gettop(L); in _wrap_new_SBProcessInfoList()
47745 return _wrap_new_SBProcessInfoList__SWIG_0(L); in _wrap_new_SBProcessInfoList()
47751 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBProcessInfoList()
47758 return _wrap_new_SBProcessInfoList__SWIG_1(L); in _wrap_new_SBProcessInfoList()
47762 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBProcessInfoList'\n" in _wrap_new_SBProcessInfoList()
47766 lua_error(L);return 0; in _wrap_new_SBProcessInfoList()
47770 static int _wrap_SBProcessInfoList_GetSize(lua_State* L) { in _wrap_SBProcessInfoList_GetSize() argument
47777 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::GetSize",1,"lldb::SBProcessInfoLi… in _wrap_SBProcessInfoList_GetSize()
47779 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){ in _wrap_SBProcessInfoList_GetSize()
47784 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBProcessInfoList_GetSize()
47789 lua_error(L); in _wrap_SBProcessInfoList_GetSize()
47794 static int _wrap_SBProcessInfoList_GetProcessInfoAtIndex(lua_State* L) { in _wrap_SBProcessInfoList_GetProcessInfoAtIndex() argument
47803 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::GetProcessInfoAtIndex",1,"lldb::S… in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47804 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBProcessInfoList::GetProcessInfoAtIndex",2,"uint32_t… in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47805 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBProcessInfoList::GetProcessInfoAtIndex",3,"lldb::S… in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){ in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47811 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47813 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBProcessInfo,0))){ in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47818 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47823 lua_error(L); in _wrap_SBProcessInfoList_GetProcessInfoAtIndex()
47828 static int _wrap_SBProcessInfoList_Clear(lua_State* L) { in _wrap_SBProcessInfoList_Clear() argument
47834 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBProcessInfoList::Clear",1,"lldb::SBProcessInfoList… in _wrap_SBProcessInfoList_Clear()
47836 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBProcessInfoList,0))){ in _wrap_SBProcessInfoList_Clear()
47846 lua_error(L); in _wrap_SBProcessInfoList_Clear()
47855 static int _proxy__wrap_new_SBProcessInfoList(lua_State *L) { in _proxy__wrap_new_SBProcessInfoList() argument
47856 assert(lua_istable(L,1)); in _proxy__wrap_new_SBProcessInfoList()
47857 lua_pushcfunction(L,_wrap_new_SBProcessInfoList); in _proxy__wrap_new_SBProcessInfoList()
47858 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBProcessInfoList()
47859 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBProcessInfoList()
47860 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBProcessInfoList()
47901 static int _wrap_new_SBQueue__SWIG_0(lua_State* L) { in _wrap_new_SBQueue__SWIG_0() argument
47908 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++; in _wrap_new_SBQueue__SWIG_0()
47913 lua_error(L); in _wrap_new_SBQueue__SWIG_0()
47918 static int _wrap_new_SBQueue__SWIG_1(lua_State* L) { in _wrap_new_SBQueue__SWIG_1() argument
47925 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBQueue::SBQueue",1,"lldb::SBQueue const &"); in _wrap_new_SBQueue__SWIG_1()
47927 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_new_SBQueue__SWIG_1()
47932 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++; in _wrap_new_SBQueue__SWIG_1()
47937 lua_error(L); in _wrap_new_SBQueue__SWIG_1()
47942 static int _wrap_new_SBQueue(lua_State* L) { in _wrap_new_SBQueue() argument
47948 argc = lua_gettop(L); in _wrap_new_SBQueue()
47950 return _wrap_new_SBQueue__SWIG_0(L); in _wrap_new_SBQueue()
47956 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBQueue()
47963 return _wrap_new_SBQueue__SWIG_1(L); in _wrap_new_SBQueue()
47967 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBQueue'\n" in _wrap_new_SBQueue()
47971 lua_error(L);return 0; in _wrap_new_SBQueue()
47975 static int _wrap_SBQueue_IsValid(lua_State* L) { in _wrap_SBQueue_IsValid() argument
47982 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::IsValid",1,"lldb::SBQueue const *"); in _wrap_SBQueue_IsValid()
47984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_IsValid()
47989 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBQueue_IsValid()
47994 lua_error(L); in _wrap_SBQueue_IsValid()
47999 static int _wrap_SBQueue_Clear(lua_State* L) { in _wrap_SBQueue_Clear() argument
48005 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::Clear",1,"lldb::SBQueue *"); in _wrap_SBQueue_Clear()
48007 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_Clear()
48017 lua_error(L); in _wrap_SBQueue_Clear()
48022 static int _wrap_SBQueue_GetProcess(lua_State* L) { in _wrap_SBQueue_GetProcess() argument
48029 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetProcess",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetProcess()
48031 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetProcess()
48038 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBQueue_GetProcess()
48044 lua_error(L); in _wrap_SBQueue_GetProcess()
48049 static int _wrap_SBQueue_GetQueueID(lua_State* L) { in _wrap_SBQueue_GetQueueID() argument
48056 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetQueueID",1,"lldb::SBQueue const *"); in _wrap_SBQueue_GetQueueID()
48058 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetQueueID()
48063 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueue_GetQueueID()
48068 lua_error(L); in _wrap_SBQueue_GetQueueID()
48073 static int _wrap_SBQueue_GetName(lua_State* L) { in _wrap_SBQueue_GetName() argument
48080 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetName",1,"lldb::SBQueue const *"); in _wrap_SBQueue_GetName()
48082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetName()
48087 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBQueue_GetName()
48092 lua_error(L); in _wrap_SBQueue_GetName()
48097 static int _wrap_SBQueue_GetIndexID(lua_State* L) { in _wrap_SBQueue_GetIndexID() argument
48104 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetIndexID",1,"lldb::SBQueue const *"); in _wrap_SBQueue_GetIndexID()
48106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetIndexID()
48111 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueue_GetIndexID()
48116 lua_error(L); in _wrap_SBQueue_GetIndexID()
48121 static int _wrap_SBQueue_GetNumThreads(lua_State* L) { in _wrap_SBQueue_GetNumThreads() argument
48128 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetNumThreads",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetNumThreads()
48130 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetNumThreads()
48135 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueue_GetNumThreads()
48140 lua_error(L); in _wrap_SBQueue_GetNumThreads()
48145 static int _wrap_SBQueue_GetThreadAtIndex(lua_State* L) { in _wrap_SBQueue_GetThreadAtIndex() argument
48153 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetThreadAtIndex",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetThreadAtIndex()
48154 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBQueue::GetThreadAtIndex",2,"uint32_t"); in _wrap_SBQueue_GetThreadAtIndex()
48156 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetThreadAtIndex()
48160 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBQueue_GetThreadAtIndex()
48164 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBQueue_GetThreadAtIndex()
48170 lua_error(L); in _wrap_SBQueue_GetThreadAtIndex()
48175 static int _wrap_SBQueue_GetNumPendingItems(lua_State* L) { in _wrap_SBQueue_GetNumPendingItems() argument
48182 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetNumPendingItems",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetNumPendingItems()
48184 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetNumPendingItems()
48189 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueue_GetNumPendingItems()
48194 lua_error(L); in _wrap_SBQueue_GetNumPendingItems()
48199 static int _wrap_SBQueue_GetPendingItemAtIndex(lua_State* L) { in _wrap_SBQueue_GetPendingItemAtIndex() argument
48207 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetPendingItemAtIndex",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetPendingItemAtIndex()
48208 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBQueue::GetPendingItemAtIndex",2,"uint32_t"); in _wrap_SBQueue_GetPendingItemAtIndex()
48210 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetPendingItemAtIndex()
48214 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBQueue_GetPendingItemAtIndex()
48218 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBQueueItem,1); SWIG_arg++; in _wrap_SBQueue_GetPendingItemAtIndex()
48224 lua_error(L); in _wrap_SBQueue_GetPendingItemAtIndex()
48229 static int _wrap_SBQueue_GetNumRunningItems(lua_State* L) { in _wrap_SBQueue_GetNumRunningItems() argument
48236 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetNumRunningItems",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetNumRunningItems()
48238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetNumRunningItems()
48243 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueue_GetNumRunningItems()
48248 lua_error(L); in _wrap_SBQueue_GetNumRunningItems()
48253 static int _wrap_SBQueue_GetKind(lua_State* L) { in _wrap_SBQueue_GetKind() argument
48260 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueue::GetKind",1,"lldb::SBQueue *"); in _wrap_SBQueue_GetKind()
48262 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueue,0))){ in _wrap_SBQueue_GetKind()
48267 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueue_GetKind()
48272 lua_error(L); in _wrap_SBQueue_GetKind()
48281 static int _proxy__wrap_new_SBQueue(lua_State *L) { in _proxy__wrap_new_SBQueue() argument
48282 assert(lua_istable(L,1)); in _proxy__wrap_new_SBQueue()
48283 lua_pushcfunction(L,_wrap_new_SBQueue); in _proxy__wrap_new_SBQueue()
48284 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBQueue()
48285 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBQueue()
48286 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBQueue()
48336 static int _wrap_new_SBQueueItem(lua_State* L) { in _wrap_new_SBQueueItem() argument
48343 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBQueueItem,1); SWIG_arg++; in _wrap_new_SBQueueItem()
48348 lua_error(L); in _wrap_new_SBQueueItem()
48353 static int _wrap_SBQueueItem_IsValid(lua_State* L) { in _wrap_SBQueueItem_IsValid() argument
48360 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::IsValid",1,"lldb::SBQueueItem const *"); in _wrap_SBQueueItem_IsValid()
48362 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_IsValid()
48367 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBQueueItem_IsValid()
48372 lua_error(L); in _wrap_SBQueueItem_IsValid()
48377 static int _wrap_SBQueueItem_Clear(lua_State* L) { in _wrap_SBQueueItem_Clear() argument
48383 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::Clear",1,"lldb::SBQueueItem *"); in _wrap_SBQueueItem_Clear()
48385 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_Clear()
48395 lua_error(L); in _wrap_SBQueueItem_Clear()
48400 static int _wrap_SBQueueItem_GetKind(lua_State* L) { in _wrap_SBQueueItem_GetKind() argument
48407 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::GetKind",1,"lldb::SBQueueItem const *"); in _wrap_SBQueueItem_GetKind()
48409 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_GetKind()
48414 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBQueueItem_GetKind()
48419 lua_error(L); in _wrap_SBQueueItem_GetKind()
48424 static int _wrap_SBQueueItem_SetKind(lua_State* L) { in _wrap_SBQueueItem_SetKind() argument
48431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::SetKind",1,"lldb::SBQueueItem *"); in _wrap_SBQueueItem_SetKind()
48432 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBQueueItem::SetKind",2,"lldb::QueueItemKind"); in _wrap_SBQueueItem_SetKind()
48434 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_SetKind()
48438 arg2 = (lldb::QueueItemKind)lua_tointeger(L, 2); in _wrap_SBQueueItem_SetKind()
48445 lua_error(L); in _wrap_SBQueueItem_SetKind()
48450 static int _wrap_SBQueueItem_GetAddress(lua_State* L) { in _wrap_SBQueueItem_GetAddress() argument
48457 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::GetAddress",1,"lldb::SBQueueItem const … in _wrap_SBQueueItem_GetAddress()
48459 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_GetAddress()
48466 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBQueueItem_GetAddress()
48472 lua_error(L); in _wrap_SBQueueItem_GetAddress()
48477 static int _wrap_SBQueueItem_SetAddress(lua_State* L) { in _wrap_SBQueueItem_SetAddress() argument
48485 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::SetAddress",1,"lldb::SBQueueItem *"); in _wrap_SBQueueItem_SetAddress()
48486 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBQueueItem::SetAddress",2,"lldb::SBAddress"); in _wrap_SBQueueItem_SetAddress()
48488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_SetAddress()
48493 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBQueueItem_SetAddress()
48504 lua_error(L); in _wrap_SBQueueItem_SetAddress()
48509 static int _wrap_SBQueueItem_GetExtendedBacktraceThread(lua_State* L) { in _wrap_SBQueueItem_GetExtendedBacktraceThread() argument
48517 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBQueueItem::GetExtendedBacktraceThread",1,"lldb::SB… in _wrap_SBQueueItem_GetExtendedBacktraceThread()
48518 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBQueueItem::GetExtendedBacktraceThread",2,"ch… in _wrap_SBQueueItem_GetExtendedBacktraceThread()
48520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBQueueItem,0))){ in _wrap_SBQueueItem_GetExtendedBacktraceThread()
48524 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBQueueItem_GetExtendedBacktraceThread()
48528 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBQueueItem_GetExtendedBacktraceThread()
48534 lua_error(L); in _wrap_SBQueueItem_GetExtendedBacktraceThread()
48543 static int _proxy__wrap_new_SBQueueItem(lua_State *L) { in _proxy__wrap_new_SBQueueItem() argument
48544 assert(lua_istable(L,1)); in _proxy__wrap_new_SBQueueItem()
48545 lua_pushcfunction(L,_wrap_new_SBQueueItem); in _proxy__wrap_new_SBQueueItem()
48546 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBQueueItem()
48547 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBQueueItem()
48548 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBQueueItem()
48593 static int _wrap_SBReproducer_Capture(lua_State* L) { in _wrap_SBReproducer_Capture() argument
48600 if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBReproducer::Capture",1,"char const *"); in _wrap_SBReproducer_Capture()
48601 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBReproducer_Capture()
48603 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBReproducer_Capture()
48608 lua_error(L); in _wrap_SBReproducer_Capture()
48613 static int _wrap_SBReproducer_PassiveReplay(lua_State* L) { in _wrap_SBReproducer_PassiveReplay() argument
48620 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBReproducer::PassiveReplay",1,"char const *"); in _wrap_SBReproducer_PassiveReplay()
48621 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBReproducer_PassiveReplay()
48623 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBReproducer_PassiveReplay()
48628 lua_error(L); in _wrap_SBReproducer_PassiveReplay()
48633 static int _wrap_SBReproducer_SetAutoGenerate(lua_State* L) { in _wrap_SBReproducer_SetAutoGenerate() argument
48640 if(!lua_isboolean(L,1)) SWIG_fail_arg("lldb::SBReproducer::SetAutoGenerate",1,"bool"); in _wrap_SBReproducer_SetAutoGenerate()
48641 arg1 = (lua_toboolean(L, 1)!=0); in _wrap_SBReproducer_SetAutoGenerate()
48643 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBReproducer_SetAutoGenerate()
48648 lua_error(L); in _wrap_SBReproducer_SetAutoGenerate()
48653 static int _wrap_SBReproducer_SetWorkingDirectory(lua_State* L) { in _wrap_SBReproducer_SetWorkingDirectory() argument
48659 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBReproducer::SetWorkingDirectory",1,"char con… in _wrap_SBReproducer_SetWorkingDirectory()
48660 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBReproducer_SetWorkingDirectory()
48667 lua_error(L); in _wrap_SBReproducer_SetWorkingDirectory()
48672 static int _wrap_new_SBReproducer(lua_State* L) { in _wrap_new_SBReproducer() argument
48679 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBReproducer,1); SWIG_arg++; in _wrap_new_SBReproducer()
48684 lua_error(L); in _wrap_new_SBReproducer()
48693 static int _proxy__wrap_new_SBReproducer(lua_State *L) { in _proxy__wrap_new_SBReproducer() argument
48694 assert(lua_istable(L,1)); in _proxy__wrap_new_SBReproducer()
48695 lua_pushcfunction(L,_wrap_new_SBReproducer); in _proxy__wrap_new_SBReproducer()
48696 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBReproducer()
48697 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBReproducer()
48698 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBReproducer()
48740 static int _wrap_new_SBScriptObject__SWIG_0(lua_State* L) { in _wrap_new_SBScriptObject__SWIG_0() argument
48748 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::SBScriptObject",1,"lldb::ScriptObjec… in _wrap_new_SBScriptObject__SWIG_0()
48749 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBScriptObject::SBScriptObject",2,"lldb::ScriptLangua… in _wrap_new_SBScriptObject__SWIG_0()
48750 arg1=(lldb::ScriptObjectPtr)SWIG_MustGetPtr(L,1,0,0,1,"new_SBScriptObject"); in _wrap_new_SBScriptObject__SWIG_0()
48751 arg2 = (lldb::ScriptLanguage)lua_tointeger(L, 2); in _wrap_new_SBScriptObject__SWIG_0()
48753 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++; in _wrap_new_SBScriptObject__SWIG_0()
48758 lua_error(L); in _wrap_new_SBScriptObject__SWIG_0()
48763 static int _wrap_new_SBScriptObject__SWIG_1(lua_State* L) { in _wrap_new_SBScriptObject__SWIG_1() argument
48770 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBScriptObject::SBScriptObject",1,"lldb::SBScriptObj… in _wrap_new_SBScriptObject__SWIG_1()
48772 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){ in _wrap_new_SBScriptObject__SWIG_1()
48777 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++; in _wrap_new_SBScriptObject__SWIG_1()
48782 lua_error(L); in _wrap_new_SBScriptObject__SWIG_1()
48787 static int _wrap_new_SBScriptObject(lua_State* L) { in _wrap_new_SBScriptObject() argument
48793 argc = lua_gettop(L); in _wrap_new_SBScriptObject()
48798 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBScriptObject()
48805 return _wrap_new_SBScriptObject__SWIG_1(L); in _wrap_new_SBScriptObject()
48812 if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, 0, 0)) { in _wrap_new_SBScriptObject()
48820 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBScriptObject()
48823 return _wrap_new_SBScriptObject__SWIG_0(L); in _wrap_new_SBScriptObject()
48828 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBScriptObject'\n" in _wrap_new_SBScriptObject()
48832 lua_error(L);return 0; in _wrap_new_SBScriptObject()
48836 static int _wrap_SBScriptObject_IsValid(lua_State* L) { in _wrap_SBScriptObject_IsValid() argument
48843 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::IsValid",1,"lldb::SBScriptObject con… in _wrap_SBScriptObject_IsValid()
48845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){ in _wrap_SBScriptObject_IsValid()
48850 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBScriptObject_IsValid()
48855 lua_error(L); in _wrap_SBScriptObject_IsValid()
48860 static int _wrap_SBScriptObject_GetPointer(lua_State* L) { in _wrap_SBScriptObject_GetPointer() argument
48867 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::GetPointer",1,"lldb::SBScriptObject … in _wrap_SBScriptObject_GetPointer()
48869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){ in _wrap_SBScriptObject_GetPointer()
48874 SWIG_NewPointerObj(L,result,SWIGTYPE_p_void,0); SWIG_arg++; in _wrap_SBScriptObject_GetPointer()
48879 lua_error(L); in _wrap_SBScriptObject_GetPointer()
48884 static int _wrap_SBScriptObject_GetLanguage(lua_State* L) { in _wrap_SBScriptObject_GetLanguage() argument
48891 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBScriptObject::GetLanguage",1,"lldb::SBScriptObject… in _wrap_SBScriptObject_GetLanguage()
48893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBScriptObject,0))){ in _wrap_SBScriptObject_GetLanguage()
48898 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBScriptObject_GetLanguage()
48903 lua_error(L); in _wrap_SBScriptObject_GetLanguage()
48912 static int _proxy__wrap_new_SBScriptObject(lua_State *L) { in _proxy__wrap_new_SBScriptObject() argument
48913 assert(lua_istable(L,1)); in _proxy__wrap_new_SBScriptObject()
48914 lua_pushcfunction(L,_wrap_new_SBScriptObject); in _proxy__wrap_new_SBScriptObject()
48915 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBScriptObject()
48916 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBScriptObject()
48917 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBScriptObject()
48958 static int _wrap_new_SBSection__SWIG_0(lua_State* L) { in _wrap_new_SBSection__SWIG_0() argument
48965 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_new_SBSection__SWIG_0()
48970 lua_error(L); in _wrap_new_SBSection__SWIG_0()
48975 static int _wrap_new_SBSection__SWIG_1(lua_State* L) { in _wrap_new_SBSection__SWIG_1() argument
48982 … if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSection::SBSection",1,"lldb::SBSection const &"); in _wrap_new_SBSection__SWIG_1()
48984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_new_SBSection__SWIG_1()
48989 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_new_SBSection__SWIG_1()
48994 lua_error(L); in _wrap_new_SBSection__SWIG_1()
48999 static int _wrap_new_SBSection(lua_State* L) { in _wrap_new_SBSection() argument
49005 argc = lua_gettop(L); in _wrap_new_SBSection()
49007 return _wrap_new_SBSection__SWIG_0(L); in _wrap_new_SBSection()
49013 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSection()
49020 return _wrap_new_SBSection__SWIG_1(L); in _wrap_new_SBSection()
49024 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSection'\n" in _wrap_new_SBSection()
49028 lua_error(L);return 0; in _wrap_new_SBSection()
49032 static int _wrap_SBSection_IsValid(lua_State* L) { in _wrap_SBSection_IsValid() argument
49039 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::IsValid",1,"lldb::SBSection const *"); in _wrap_SBSection_IsValid()
49041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_IsValid()
49046 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSection_IsValid()
49051 lua_error(L); in _wrap_SBSection_IsValid()
49056 static int _wrap_SBSection_GetName(lua_State* L) { in _wrap_SBSection_GetName() argument
49063 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetName",1,"lldb::SBSection *"); in _wrap_SBSection_GetName()
49065 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetName()
49070 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBSection_GetName()
49075 lua_error(L); in _wrap_SBSection_GetName()
49080 static int _wrap_SBSection_GetParent(lua_State* L) { in _wrap_SBSection_GetParent() argument
49087 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetParent",1,"lldb::SBSection *"); in _wrap_SBSection_GetParent()
49089 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetParent()
49096 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_SBSection_GetParent()
49102 lua_error(L); in _wrap_SBSection_GetParent()
49107 static int _wrap_SBSection_FindSubSection(lua_State* L) { in _wrap_SBSection_FindSubSection() argument
49115 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::FindSubSection",1,"lldb::SBSection *"); in _wrap_SBSection_FindSubSection()
49116 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBSection::FindSubSection",2,"char const *"); in _wrap_SBSection_FindSubSection()
49118 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_FindSubSection()
49122 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBSection_FindSubSection()
49126 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_SBSection_FindSubSection()
49132 lua_error(L); in _wrap_SBSection_FindSubSection()
49137 static int _wrap_SBSection_GetNumSubSections(lua_State* L) { in _wrap_SBSection_GetNumSubSections() argument
49144 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetNumSubSections",1,"lldb::SBSection *"); in _wrap_SBSection_GetNumSubSections()
49146 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetNumSubSections()
49151 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetNumSubSections()
49156 lua_error(L); in _wrap_SBSection_GetNumSubSections()
49161 static int _wrap_SBSection_GetSubSectionAtIndex(lua_State* L) { in _wrap_SBSection_GetSubSectionAtIndex() argument
49169 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSubSectionAtIndex",1,"lldb::SBSection … in _wrap_SBSection_GetSubSectionAtIndex()
49170 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSection::GetSubSectionAtIndex",2,"size_t"); in _wrap_SBSection_GetSubSectionAtIndex()
49172 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetSubSectionAtIndex()
49176 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBSection_GetSubSectionAtIndex()
49180 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSection,1); SWIG_arg++; in _wrap_SBSection_GetSubSectionAtIndex()
49186 lua_error(L); in _wrap_SBSection_GetSubSectionAtIndex()
49191 static int _wrap_SBSection_GetFileAddress(lua_State* L) { in _wrap_SBSection_GetFileAddress() argument
49198 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetFileAddress",1,"lldb::SBSection *"); in _wrap_SBSection_GetFileAddress()
49200 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetFileAddress()
49205 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetFileAddress()
49210 lua_error(L); in _wrap_SBSection_GetFileAddress()
49215 static int _wrap_SBSection_GetLoadAddress(lua_State* L) { in _wrap_SBSection_GetLoadAddress() argument
49223 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetLoadAddress",1,"lldb::SBSection *"); in _wrap_SBSection_GetLoadAddress()
49224 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSection::GetLoadAddress",2,"lldb::SBTarget &"); in _wrap_SBSection_GetLoadAddress()
49226 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetLoadAddress()
49231 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBSection_GetLoadAddress()
49236 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetLoadAddress()
49241 lua_error(L); in _wrap_SBSection_GetLoadAddress()
49246 static int _wrap_SBSection_GetByteSize(lua_State* L) { in _wrap_SBSection_GetByteSize() argument
49253 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetByteSize",1,"lldb::SBSection *"); in _wrap_SBSection_GetByteSize()
49255 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetByteSize()
49260 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetByteSize()
49265 lua_error(L); in _wrap_SBSection_GetByteSize()
49270 static int _wrap_SBSection_GetFileOffset(lua_State* L) { in _wrap_SBSection_GetFileOffset() argument
49277 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetFileOffset",1,"lldb::SBSection *"); in _wrap_SBSection_GetFileOffset()
49279 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetFileOffset()
49284 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetFileOffset()
49289 lua_error(L); in _wrap_SBSection_GetFileOffset()
49294 static int _wrap_SBSection_GetFileByteSize(lua_State* L) { in _wrap_SBSection_GetFileByteSize() argument
49301 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetFileByteSize",1,"lldb::SBSection *"); in _wrap_SBSection_GetFileByteSize()
49303 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetFileByteSize()
49308 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetFileByteSize()
49313 lua_error(L); in _wrap_SBSection_GetFileByteSize()
49318 static int _wrap_SBSection_GetSectionData__SWIG_0(lua_State* L) { in _wrap_SBSection_GetSectionData__SWIG_0() argument
49325 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSectionData",1,"lldb::SBSection *"); in _wrap_SBSection_GetSectionData__SWIG_0()
49327 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetSectionData__SWIG_0()
49334 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBSection_GetSectionData__SWIG_0()
49340 lua_error(L); in _wrap_SBSection_GetSectionData__SWIG_0()
49345 static int _wrap_SBSection_GetSectionData__SWIG_1(lua_State* L) { in _wrap_SBSection_GetSectionData__SWIG_1() argument
49354 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSectionData",1,"lldb::SBSection *"); in _wrap_SBSection_GetSectionData__SWIG_1()
49355 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSection::GetSectionData",2,"uint64_t"); in _wrap_SBSection_GetSectionData__SWIG_1()
49356 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBSection::GetSectionData",3,"uint64_t"); in _wrap_SBSection_GetSectionData__SWIG_1()
49358 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetSectionData__SWIG_1()
49362 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBSection_GetSectionData__SWIG_1()
49363 arg3 = (uint64_t)lua_tointeger(L, 3); in _wrap_SBSection_GetSectionData__SWIG_1()
49367 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBSection_GetSectionData__SWIG_1()
49373 lua_error(L); in _wrap_SBSection_GetSectionData__SWIG_1()
49378 static int _wrap_SBSection_GetSectionData(lua_State* L) { in _wrap_SBSection_GetSectionData() argument
49384 argc = lua_gettop(L); in _wrap_SBSection_GetSectionData()
49389 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSection_GetSectionData()
49396 return _wrap_SBSection_GetSectionData__SWIG_0(L); in _wrap_SBSection_GetSectionData()
49403 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSection_GetSectionData()
49411 _v = lua_isnumber(L,argv[1]); in _wrap_SBSection_GetSectionData()
49415 _v = lua_isnumber(L,argv[2]); in _wrap_SBSection_GetSectionData()
49418 return _wrap_SBSection_GetSectionData__SWIG_1(L); in _wrap_SBSection_GetSectionData()
49424 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBSection_GetSectionData'\n" in _wrap_SBSection_GetSectionData()
49428 lua_error(L);return 0; in _wrap_SBSection_GetSectionData()
49432 static int _wrap_SBSection_GetSectionType(lua_State* L) { in _wrap_SBSection_GetSectionType() argument
49439 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetSectionType",1,"lldb::SBSection *"); in _wrap_SBSection_GetSectionType()
49441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetSectionType()
49446 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetSectionType()
49451 lua_error(L); in _wrap_SBSection_GetSectionType()
49456 static int _wrap_SBSection_GetPermissions(lua_State* L) { in _wrap_SBSection_GetPermissions() argument
49463 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetPermissions",1,"lldb::SBSection const … in _wrap_SBSection_GetPermissions()
49465 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetPermissions()
49470 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetPermissions()
49475 lua_error(L); in _wrap_SBSection_GetPermissions()
49480 static int _wrap_SBSection_GetTargetByteSize(lua_State* L) { in _wrap_SBSection_GetTargetByteSize() argument
49487 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetTargetByteSize",1,"lldb::SBSection *"); in _wrap_SBSection_GetTargetByteSize()
49489 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetTargetByteSize()
49494 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetTargetByteSize()
49499 lua_error(L); in _wrap_SBSection_GetTargetByteSize()
49504 static int _wrap_SBSection_GetAlignment(lua_State* L) { in _wrap_SBSection_GetAlignment() argument
49511 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetAlignment",1,"lldb::SBSection *"); in _wrap_SBSection_GetAlignment()
49513 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetAlignment()
49518 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSection_GetAlignment()
49523 lua_error(L); in _wrap_SBSection_GetAlignment()
49528 static int _wrap_SBSection___eq(lua_State* L) { in _wrap_SBSection___eq() argument
49536 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::operator ==",1,"lldb::SBSection *"); in _wrap_SBSection___eq()
49537 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSection::operator ==",2,"lldb::SBSection const &"); in _wrap_SBSection___eq()
49539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection___eq()
49544 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection___eq()
49549 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSection___eq()
49554 lua_error(L); in _wrap_SBSection___eq()
49559 static int _wrap_SBSection_GetDescription(lua_State* L) { in _wrap_SBSection_GetDescription() argument
49567 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::GetDescription",1,"lldb::SBSection *"); in _wrap_SBSection_GetDescription()
49568 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSection::GetDescription",2,"lldb::SBStream &"); in _wrap_SBSection_GetDescription()
49570 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection_GetDescription()
49575 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBSection_GetDescription()
49580 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSection_GetDescription()
49585 lua_error(L); in _wrap_SBSection_GetDescription()
49590 static int _wrap_SBSection___tostring(lua_State* L) { in _wrap_SBSection___tostring() argument
49597 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSection::__repr__",1,"lldb::SBSection *"); in _wrap_SBSection___tostring()
49599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBSection___tostring()
49604 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBSection___tostring()
49609 lua_error(L); in _wrap_SBSection___tostring()
49618 static int _proxy__wrap_new_SBSection(lua_State *L) { in _proxy__wrap_new_SBSection() argument
49619 assert(lua_istable(L,1)); in _proxy__wrap_new_SBSection()
49620 lua_pushcfunction(L,_wrap_new_SBSection); in _proxy__wrap_new_SBSection()
49621 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBSection()
49622 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBSection()
49623 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBSection()
49682 static int _wrap_new_SBSourceManager__SWIG_0(lua_State* L) { in _wrap_new_SBSourceManager__SWIG_0() argument
49689 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSourceManager::SBSourceManager",1,"lldb::SBDebugge… in _wrap_new_SBSourceManager__SWIG_0()
49691 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_new_SBSourceManager__SWIG_0()
49696 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++; in _wrap_new_SBSourceManager__SWIG_0()
49701 lua_error(L); in _wrap_new_SBSourceManager__SWIG_0()
49706 static int _wrap_new_SBSourceManager__SWIG_1(lua_State* L) { in _wrap_new_SBSourceManager__SWIG_1() argument
49713 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSourceManager::SBSourceManager",1,"lldb::SBTarget … in _wrap_new_SBSourceManager__SWIG_1()
49715 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_new_SBSourceManager__SWIG_1()
49720 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++; in _wrap_new_SBSourceManager__SWIG_1()
49725 lua_error(L); in _wrap_new_SBSourceManager__SWIG_1()
49730 static int _wrap_new_SBSourceManager__SWIG_2(lua_State* L) { in _wrap_new_SBSourceManager__SWIG_2() argument
49737 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSourceManager::SBSourceManager",1,"lldb::SBSourceM… in _wrap_new_SBSourceManager__SWIG_2()
49739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSourceManager,0))){ in _wrap_new_SBSourceManager__SWIG_2()
49744 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++; in _wrap_new_SBSourceManager__SWIG_2()
49749 lua_error(L); in _wrap_new_SBSourceManager__SWIG_2()
49754 static int _wrap_new_SBSourceManager(lua_State* L) { in _wrap_new_SBSourceManager() argument
49760 argc = lua_gettop(L); in _wrap_new_SBSourceManager()
49765 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSourceManager()
49772 return _wrap_new_SBSourceManager__SWIG_0(L); in _wrap_new_SBSourceManager()
49779 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSourceManager()
49786 return _wrap_new_SBSourceManager__SWIG_1(L); in _wrap_new_SBSourceManager()
49793 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSourceManager()
49800 return _wrap_new_SBSourceManager__SWIG_2(L); in _wrap_new_SBSourceManager()
49804 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSourceManager'\n" in _wrap_new_SBSourceManager()
49809 lua_error(L);return 0; in _wrap_new_SBSourceManager()
49813 static int _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers(lua_State* L) { in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers() argument
49826 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49827 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49828 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",3… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49829 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",4… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49830 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",5… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49831 …if(!SWIG_lua_isnilstring(L,6)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNum… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49832 …if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbers",… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49834 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSourceManager,0))){ in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49839 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49843 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49844 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49845 arg5 = (uint32_t)lua_tointeger(L, 5); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49846 arg6 = (char *)lua_tostring(L, 6); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49853 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49858 lua_error(L); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbers()
49863 static int _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn(lua_State* L) { in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn() argument
49877 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAn… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49878 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAn… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49879 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAnd… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49880 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAnd… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49881 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAnd… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49882 …if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAnd… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49883 …if(!SWIG_lua_isnilstring(L,7)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNum… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49884 …if(!lua_isuserdata(L,8)) SWIG_fail_arg("lldb::SBSourceManager::DisplaySourceLinesWithLineNumbersAn… in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49886 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSourceManager,0))){ in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49891 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49895 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49896 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49897 arg5 = (uint32_t)lua_tointeger(L, 5); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49898 arg6 = (uint32_t)lua_tointeger(L, 6); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49899 arg7 = (char *)lua_tostring(L, 7); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49901 if (!SWIG_IsOK(SWIG_ConvertPtr(L,8,(void**)&arg8,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49906 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49911 lua_error(L); in _wrap_SBSourceManager_DisplaySourceLinesWithLineNumbersAndColumn()
49920 static int _proxy__wrap_new_SBSourceManager(lua_State *L) { in _proxy__wrap_new_SBSourceManager() argument
49921 assert(lua_istable(L,1)); in _proxy__wrap_new_SBSourceManager()
49922 lua_pushcfunction(L,_wrap_new_SBSourceManager); in _proxy__wrap_new_SBSourceManager()
49923 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBSourceManager()
49924 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBSourceManager()
49925 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBSourceManager()
49965 static int _wrap_new_SBStatisticsOptions__SWIG_0(lua_State* L) { in _wrap_new_SBStatisticsOptions__SWIG_0() argument
49972 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStatisticsOptions,1); SWIG_arg++; in _wrap_new_SBStatisticsOptions__SWIG_0()
49977 lua_error(L); in _wrap_new_SBStatisticsOptions__SWIG_0()
49982 static int _wrap_new_SBStatisticsOptions__SWIG_1(lua_State* L) { in _wrap_new_SBStatisticsOptions__SWIG_1() argument
49989 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SBStatisticsOptions",1,"lldb::S… in _wrap_new_SBStatisticsOptions__SWIG_1()
49991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_new_SBStatisticsOptions__SWIG_1()
49996 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStatisticsOptions,1); SWIG_arg++; in _wrap_new_SBStatisticsOptions__SWIG_1()
50001 lua_error(L); in _wrap_new_SBStatisticsOptions__SWIG_1()
50006 static int _wrap_new_SBStatisticsOptions(lua_State* L) { in _wrap_new_SBStatisticsOptions() argument
50012 argc = lua_gettop(L); in _wrap_new_SBStatisticsOptions()
50014 return _wrap_new_SBStatisticsOptions__SWIG_0(L); in _wrap_new_SBStatisticsOptions()
50020 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBStatisticsOptions()
50027 return _wrap_new_SBStatisticsOptions__SWIG_1(L); in _wrap_new_SBStatisticsOptions()
50031 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBStatisticsOptions'\n" in _wrap_new_SBStatisticsOptions()
50035 lua_error(L);return 0; in _wrap_new_SBStatisticsOptions()
50039 static int _wrap_SBStatisticsOptions_SetSummaryOnly(lua_State* L) { in _wrap_SBStatisticsOptions_SetSummaryOnly() argument
50046 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetSummaryOnly",1,"lldb::SBStat… in _wrap_SBStatisticsOptions_SetSummaryOnly()
50047 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetSummaryOnly",2,"bool"); in _wrap_SBStatisticsOptions_SetSummaryOnly()
50049 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_SetSummaryOnly()
50053 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBStatisticsOptions_SetSummaryOnly()
50060 lua_error(L); in _wrap_SBStatisticsOptions_SetSummaryOnly()
50065 static int _wrap_SBStatisticsOptions_GetSummaryOnly(lua_State* L) { in _wrap_SBStatisticsOptions_GetSummaryOnly() argument
50072 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetSummaryOnly",1,"lldb::SBStat… in _wrap_SBStatisticsOptions_GetSummaryOnly()
50074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_GetSummaryOnly()
50079 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStatisticsOptions_GetSummaryOnly()
50084 lua_error(L); in _wrap_SBStatisticsOptions_GetSummaryOnly()
50089 static int _wrap_SBStatisticsOptions_SetIncludeTargets(lua_State* L) { in _wrap_SBStatisticsOptions_SetIncludeTargets() argument
50096 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTargets",1,"lldb::SBS… in _wrap_SBStatisticsOptions_SetIncludeTargets()
50097 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTargets",2,"bool"); in _wrap_SBStatisticsOptions_SetIncludeTargets()
50099 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_SetIncludeTargets()
50103 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBStatisticsOptions_SetIncludeTargets()
50110 lua_error(L); in _wrap_SBStatisticsOptions_SetIncludeTargets()
50115 static int _wrap_SBStatisticsOptions_GetIncludeTargets(lua_State* L) { in _wrap_SBStatisticsOptions_GetIncludeTargets() argument
50122 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetIncludeTargets",1,"lldb::SBS… in _wrap_SBStatisticsOptions_GetIncludeTargets()
50124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_GetIncludeTargets()
50129 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStatisticsOptions_GetIncludeTargets()
50134 lua_error(L); in _wrap_SBStatisticsOptions_GetIncludeTargets()
50139 static int _wrap_SBStatisticsOptions_SetIncludeModules(lua_State* L) { in _wrap_SBStatisticsOptions_SetIncludeModules() argument
50146 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeModules",1,"lldb::SBS… in _wrap_SBStatisticsOptions_SetIncludeModules()
50147 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeModules",2,"bool"); in _wrap_SBStatisticsOptions_SetIncludeModules()
50149 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_SetIncludeModules()
50153 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBStatisticsOptions_SetIncludeModules()
50160 lua_error(L); in _wrap_SBStatisticsOptions_SetIncludeModules()
50165 static int _wrap_SBStatisticsOptions_GetIncludeModules(lua_State* L) { in _wrap_SBStatisticsOptions_GetIncludeModules() argument
50172 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetIncludeModules",1,"lldb::SBS… in _wrap_SBStatisticsOptions_GetIncludeModules()
50174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_GetIncludeModules()
50179 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStatisticsOptions_GetIncludeModules()
50184 lua_error(L); in _wrap_SBStatisticsOptions_GetIncludeModules()
50189 static int _wrap_SBStatisticsOptions_SetIncludeTranscript(lua_State* L) { in _wrap_SBStatisticsOptions_SetIncludeTranscript() argument
50196 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTranscript",1,"lldb::… in _wrap_SBStatisticsOptions_SetIncludeTranscript()
50197 … if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetIncludeTranscript",2,"bool"); in _wrap_SBStatisticsOptions_SetIncludeTranscript()
50199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_SetIncludeTranscript()
50203 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBStatisticsOptions_SetIncludeTranscript()
50210 lua_error(L); in _wrap_SBStatisticsOptions_SetIncludeTranscript()
50215 static int _wrap_SBStatisticsOptions_GetIncludeTranscript(lua_State* L) { in _wrap_SBStatisticsOptions_GetIncludeTranscript() argument
50222 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetIncludeTranscript",1,"lldb::… in _wrap_SBStatisticsOptions_GetIncludeTranscript()
50224 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_GetIncludeTranscript()
50229 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStatisticsOptions_GetIncludeTranscript()
50234 lua_error(L); in _wrap_SBStatisticsOptions_GetIncludeTranscript()
50239 static int _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo(lua_State* L) { in _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo() argument
50246 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetReportAllAvailableDebugInfo"… in _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo()
50247 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStatisticsOptions::SetReportAllAvailableDebugInfo",… in _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo()
50249 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo()
50253 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo()
50260 lua_error(L); in _wrap_SBStatisticsOptions_SetReportAllAvailableDebugInfo()
50265 static int _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo(lua_State* L) { in _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo() argument
50272 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStatisticsOptions::GetReportAllAvailableDebugInfo"… in _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo()
50274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo()
50279 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo()
50284 lua_error(L); in _wrap_SBStatisticsOptions_GetReportAllAvailableDebugInfo()
50293 static int _proxy__wrap_new_SBStatisticsOptions(lua_State *L) { in _proxy__wrap_new_SBStatisticsOptions() argument
50294 assert(lua_istable(L,1)); in _proxy__wrap_new_SBStatisticsOptions()
50295 lua_pushcfunction(L,_wrap_new_SBStatisticsOptions); in _proxy__wrap_new_SBStatisticsOptions()
50296 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBStatisticsOptions()
50297 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBStatisticsOptions()
50298 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBStatisticsOptions()
50346 static int _wrap_new_SBStream(lua_State* L) { in _wrap_new_SBStream() argument
50353 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStream,1); SWIG_arg++; in _wrap_new_SBStream()
50358 lua_error(L); in _wrap_new_SBStream()
50363 static int _wrap_SBStream_IsValid(lua_State* L) { in _wrap_SBStream_IsValid() argument
50370 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::IsValid",1,"lldb::SBStream const *"); in _wrap_SBStream_IsValid()
50372 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_IsValid()
50377 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStream_IsValid()
50382 lua_error(L); in _wrap_SBStream_IsValid()
50387 static int _wrap_SBStream_GetData(lua_State* L) { in _wrap_SBStream_GetData() argument
50394 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::GetData",1,"lldb::SBStream *"); in _wrap_SBStream_GetData()
50396 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_GetData()
50401 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBStream_GetData()
50406 lua_error(L); in _wrap_SBStream_GetData()
50411 static int _wrap_SBStream_GetSize(lua_State* L) { in _wrap_SBStream_GetSize() argument
50418 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::GetSize",1,"lldb::SBStream *"); in _wrap_SBStream_GetSize()
50420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_GetSize()
50425 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStream_GetSize()
50430 lua_error(L); in _wrap_SBStream_GetSize()
50435 static int _wrap_SBStream_Print(lua_State* L) { in _wrap_SBStream_Print() argument
50442 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::Print",1,"lldb::SBStream *"); in _wrap_SBStream_Print()
50443 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStream::Print",2,"char const *"); in _wrap_SBStream_Print()
50445 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_Print()
50449 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBStream_Print()
50456 lua_error(L); in _wrap_SBStream_Print()
50461 static int _wrap_SBStream_RedirectToFile__SWIG_0(lua_State* L) { in _wrap_SBStream_RedirectToFile__SWIG_0() argument
50469 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",1,"lldb::SBStream *"); in _wrap_SBStream_RedirectToFile__SWIG_0()
50470 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",2,"char const *"); in _wrap_SBStream_RedirectToFile__SWIG_0()
50471 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",3,"bool"); in _wrap_SBStream_RedirectToFile__SWIG_0()
50473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_RedirectToFile__SWIG_0()
50477 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBStream_RedirectToFile__SWIG_0()
50478 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBStream_RedirectToFile__SWIG_0()
50485 lua_error(L); in _wrap_SBStream_RedirectToFile__SWIG_0()
50490 static int _wrap_SBStream_RedirectToFile__SWIG_1(lua_State* L) { in _wrap_SBStream_RedirectToFile__SWIG_1() argument
50498 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",1,"lldb::SBStream *"); in _wrap_SBStream_RedirectToFile__SWIG_1()
50499 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",2,"lldb::SBFile"); in _wrap_SBStream_RedirectToFile__SWIG_1()
50501 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_RedirectToFile__SWIG_1()
50506 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFile,0))){ in _wrap_SBStream_RedirectToFile__SWIG_1()
50517 lua_error(L); in _wrap_SBStream_RedirectToFile__SWIG_1()
50522 static int _wrap_SBStream_RedirectToFile__SWIG_2(lua_State* L) { in _wrap_SBStream_RedirectToFile__SWIG_2() argument
50529 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFile",1,"lldb::SBStream *"); in _wrap_SBStream_RedirectToFile__SWIG_2()
50531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_RedirectToFile__SWIG_2()
50536 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBStream_RedirectToFile__SWIG_2()
50540 return luaL_error(L, "Invalid file"); in _wrap_SBStream_RedirectToFile__SWIG_2()
50549 lua_error(L); in _wrap_SBStream_RedirectToFile__SWIG_2()
50554 static int _wrap_SBStream_RedirectToFile(lua_State* L) { in _wrap_SBStream_RedirectToFile() argument
50560 argc = lua_gettop(L); in _wrap_SBStream_RedirectToFile()
50565 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStream_RedirectToFile()
50574 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStream_RedirectToFile()
50581 return _wrap_SBStream_RedirectToFile__SWIG_1(L); in _wrap_SBStream_RedirectToFile()
50589 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStream_RedirectToFile()
50597 _v = (lua_isuserdata(L, argv[1])) && in _wrap_SBStream_RedirectToFile()
50598 (luaL_testudata(L, argv[1], LUA_FILEHANDLE) != nullptr); in _wrap_SBStream_RedirectToFile()
50601 return _wrap_SBStream_RedirectToFile__SWIG_2(L); in _wrap_SBStream_RedirectToFile()
50609 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStream_RedirectToFile()
50617 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBStream_RedirectToFile()
50621 _v = lua_isboolean(L,argv[2]); in _wrap_SBStream_RedirectToFile()
50624 return _wrap_SBStream_RedirectToFile__SWIG_0(L); in _wrap_SBStream_RedirectToFile()
50630 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStream_RedirectToFile'\n" in _wrap_SBStream_RedirectToFile()
50635 lua_error(L);return 0; in _wrap_SBStream_RedirectToFile()
50639 static int _wrap_SBStream_RedirectToFileDescriptor(lua_State* L) { in _wrap_SBStream_RedirectToFileDescriptor() argument
50647 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFileDescriptor",1,"lldb::SBStrea… in _wrap_SBStream_RedirectToFileDescriptor()
50648 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStream::RedirectToFileDescriptor",2,"int"); in _wrap_SBStream_RedirectToFileDescriptor()
50649 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBStream::RedirectToFileDescriptor",3,"bool"); in _wrap_SBStream_RedirectToFileDescriptor()
50651 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_RedirectToFileDescriptor()
50655 arg2 = (int)lua_tointeger(L, 2); in _wrap_SBStream_RedirectToFileDescriptor()
50656 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBStream_RedirectToFileDescriptor()
50663 lua_error(L); in _wrap_SBStream_RedirectToFileDescriptor()
50668 static int _wrap_SBStream_Clear(lua_State* L) { in _wrap_SBStream_Clear() argument
50674 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::Clear",1,"lldb::SBStream *"); in _wrap_SBStream_Clear()
50676 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_Clear()
50686 lua_error(L); in _wrap_SBStream_Clear()
50691 static int _wrap_SBStream_RedirectToFileHandle(lua_State* L) { in _wrap_SBStream_RedirectToFileHandle() argument
50699 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStream::RedirectToFileHandle",1,"lldb::SBStream *"… in _wrap_SBStream_RedirectToFileHandle()
50700 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBStream::RedirectToFileHandle",3,"bool"); in _wrap_SBStream_RedirectToFileHandle()
50702 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStream_RedirectToFileHandle()
50707 luaL_Stream *p = (luaL_Stream *)luaL_checkudata(L, 2, LUA_FILEHANDLE); in _wrap_SBStream_RedirectToFileHandle()
50711 return luaL_error(L, "Invalid file"); in _wrap_SBStream_RedirectToFileHandle()
50714 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBStream_RedirectToFileHandle()
50721 lua_error(L); in _wrap_SBStream_RedirectToFileHandle()
50730 static int _proxy__wrap_new_SBStream(lua_State *L) { in _proxy__wrap_new_SBStream() argument
50731 assert(lua_istable(L,1)); in _proxy__wrap_new_SBStream()
50732 lua_pushcfunction(L,_wrap_new_SBStream); in _proxy__wrap_new_SBStream()
50733 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBStream()
50734 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBStream()
50735 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBStream()
50781 static int _wrap_new_SBStringList__SWIG_0(lua_State* L) { in _wrap_new_SBStringList__SWIG_0() argument
50788 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++; in _wrap_new_SBStringList__SWIG_0()
50793 lua_error(L); in _wrap_new_SBStringList__SWIG_0()
50798 static int _wrap_new_SBStringList__SWIG_1(lua_State* L) { in _wrap_new_SBStringList__SWIG_1() argument
50805 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStringList::SBStringList",1,"lldb::SBStringList co… in _wrap_new_SBStringList__SWIG_1()
50807 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_new_SBStringList__SWIG_1()
50812 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStringList,1); SWIG_arg++; in _wrap_new_SBStringList__SWIG_1()
50817 lua_error(L); in _wrap_new_SBStringList__SWIG_1()
50822 static int _wrap_new_SBStringList(lua_State* L) { in _wrap_new_SBStringList() argument
50828 argc = lua_gettop(L); in _wrap_new_SBStringList()
50830 return _wrap_new_SBStringList__SWIG_0(L); in _wrap_new_SBStringList()
50836 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBStringList()
50843 return _wrap_new_SBStringList__SWIG_1(L); in _wrap_new_SBStringList()
50847 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBStringList'\n" in _wrap_new_SBStringList()
50851 lua_error(L);return 0; in _wrap_new_SBStringList()
50855 static int _wrap_SBStringList_IsValid(lua_State* L) { in _wrap_SBStringList_IsValid() argument
50862 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::IsValid",1,"lldb::SBStringList const *… in _wrap_SBStringList_IsValid()
50864 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_IsValid()
50869 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStringList_IsValid()
50874 lua_error(L); in _wrap_SBStringList_IsValid()
50879 static int _wrap_SBStringList_AppendString(lua_State* L) { in _wrap_SBStringList_AppendString() argument
50886 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::AppendString",1,"lldb::SBStringList *"… in _wrap_SBStringList_AppendString()
50887 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStringList::AppendString",2,"char const *"); in _wrap_SBStringList_AppendString()
50889 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_AppendString()
50893 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBStringList_AppendString()
50900 lua_error(L); in _wrap_SBStringList_AppendString()
50905 static int _wrap_SBStringList_AppendList__SWIG_0(lua_State* L) { in _wrap_SBStringList_AppendList__SWIG_0() argument
50913 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::AppendList",1,"lldb::SBStringList *"); in _wrap_SBStringList_AppendList__SWIG_0()
50914 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBStringList::AppendList",3,"int"); in _wrap_SBStringList_AppendList__SWIG_0()
50916 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_AppendList__SWIG_0()
50921 if (lua_istable(L, 2)) { in _wrap_SBStringList_AppendList__SWIG_0()
50922 size_t size = lua_rawlen(L, 2); in _wrap_SBStringList_AppendList__SWIG_0()
50926 lua_rawgeti(L, 2, i); in _wrap_SBStringList_AppendList__SWIG_0()
50927 if (!lua_isstring(L, -1)) { in _wrap_SBStringList_AppendList__SWIG_0()
50929 lua_pop(L, 1); in _wrap_SBStringList_AppendList__SWIG_0()
50930 return luaL_error(L, "List should only contain strings"); in _wrap_SBStringList_AppendList__SWIG_0()
50932 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBStringList_AppendList__SWIG_0()
50933 lua_pop(L, 1); in _wrap_SBStringList_AppendList__SWIG_0()
50936 } else if (lua_isnil(L, 2)) { in _wrap_SBStringList_AppendList__SWIG_0()
50940 return luaL_error(L, "A list of strings expected"); in _wrap_SBStringList_AppendList__SWIG_0()
50943 arg3 = (int)lua_tointeger(L, 3); in _wrap_SBStringList_AppendList__SWIG_0()
50956 lua_error(L); in _wrap_SBStringList_AppendList__SWIG_0()
50961 static int _wrap_SBStringList_AppendList__SWIG_1(lua_State* L) { in _wrap_SBStringList_AppendList__SWIG_1() argument
50968 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::AppendList",1,"lldb::SBStringList *"); in _wrap_SBStringList_AppendList__SWIG_1()
50969 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStringList::AppendList",2,"lldb::SBStringList cons… in _wrap_SBStringList_AppendList__SWIG_1()
50971 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_AppendList__SWIG_1()
50976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_AppendList__SWIG_1()
50986 lua_error(L); in _wrap_SBStringList_AppendList__SWIG_1()
50991 static int _wrap_SBStringList_AppendList(lua_State* L) { in _wrap_SBStringList_AppendList() argument
50997 argc = lua_gettop(L); in _wrap_SBStringList_AppendList()
51002 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStringList_AppendList()
51011 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStringList_AppendList()
51018 return _wrap_SBStringList_AppendList__SWIG_1(L); in _wrap_SBStringList_AppendList()
51026 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStringList_AppendList()
51034 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1])); in _wrap_SBStringList_AppendList()
51038 _v = lua_isnumber(L,argv[2]); in _wrap_SBStringList_AppendList()
51041 return _wrap_SBStringList_AppendList__SWIG_0(L); in _wrap_SBStringList_AppendList()
51047 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStringList_AppendList'\n" in _wrap_SBStringList_AppendList()
51051 lua_error(L);return 0; in _wrap_SBStringList_AppendList()
51055 static int _wrap_SBStringList_GetSize(lua_State* L) { in _wrap_SBStringList_GetSize() argument
51062 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::GetSize",1,"lldb::SBStringList const *… in _wrap_SBStringList_GetSize()
51064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_GetSize()
51069 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStringList_GetSize()
51074 lua_error(L); in _wrap_SBStringList_GetSize()
51079 static int _wrap_SBStringList_GetStringAtIndex__SWIG_0(lua_State* L) { in _wrap_SBStringList_GetStringAtIndex__SWIG_0() argument
51087 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",1,"lldb::SBStringLis… in _wrap_SBStringList_GetStringAtIndex__SWIG_0()
51088 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",2,"size_t"); in _wrap_SBStringList_GetStringAtIndex__SWIG_0()
51090 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_GetStringAtIndex__SWIG_0()
51094 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBStringList_GetStringAtIndex__SWIG_0()
51096 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBStringList_GetStringAtIndex__SWIG_0()
51101 lua_error(L); in _wrap_SBStringList_GetStringAtIndex__SWIG_0()
51106 static int _wrap_SBStringList_GetStringAtIndex__SWIG_1(lua_State* L) { in _wrap_SBStringList_GetStringAtIndex__SWIG_1() argument
51114 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",1,"lldb::SBStringLis… in _wrap_SBStringList_GetStringAtIndex__SWIG_1()
51115 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStringList::GetStringAtIndex",2,"size_t"); in _wrap_SBStringList_GetStringAtIndex__SWIG_1()
51117 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_GetStringAtIndex__SWIG_1()
51121 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBStringList_GetStringAtIndex__SWIG_1()
51123 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBStringList_GetStringAtIndex__SWIG_1()
51128 lua_error(L); in _wrap_SBStringList_GetStringAtIndex__SWIG_1()
51133 static int _wrap_SBStringList_GetStringAtIndex(lua_State* L) { in _wrap_SBStringList_GetStringAtIndex() argument
51139 argc = lua_gettop(L); in _wrap_SBStringList_GetStringAtIndex()
51144 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStringList_GetStringAtIndex()
51152 _v = lua_isnumber(L,argv[1]); in _wrap_SBStringList_GetStringAtIndex()
51155 return _wrap_SBStringList_GetStringAtIndex__SWIG_0(L); in _wrap_SBStringList_GetStringAtIndex()
51163 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStringList_GetStringAtIndex()
51171 _v = lua_isnumber(L,argv[1]); in _wrap_SBStringList_GetStringAtIndex()
51174 return _wrap_SBStringList_GetStringAtIndex__SWIG_1(L); in _wrap_SBStringList_GetStringAtIndex()
51179 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStringList_GetStringAtIndex'\… in _wrap_SBStringList_GetStringAtIndex()
51183 lua_error(L);return 0; in _wrap_SBStringList_GetStringAtIndex()
51187 static int _wrap_SBStringList_Clear(lua_State* L) { in _wrap_SBStringList_Clear() argument
51193 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStringList::Clear",1,"lldb::SBStringList *"); in _wrap_SBStringList_Clear()
51195 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStringList_Clear()
51205 lua_error(L); in _wrap_SBStringList_Clear()
51214 static int _proxy__wrap_new_SBStringList(lua_State *L) { in _proxy__wrap_new_SBStringList() argument
51215 assert(lua_istable(L,1)); in _proxy__wrap_new_SBStringList()
51216 lua_pushcfunction(L,_wrap_new_SBStringList); in _proxy__wrap_new_SBStringList()
51217 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBStringList()
51218 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBStringList()
51219 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBStringList()
51263 static int _wrap_new_SBStructuredData__SWIG_0(lua_State* L) { in _wrap_new_SBStructuredData__SWIG_0() argument
51270 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_new_SBStructuredData__SWIG_0()
51275 lua_error(L); in _wrap_new_SBStructuredData__SWIG_0()
51280 static int _wrap_new_SBStructuredData__SWIG_1(lua_State* L) { in _wrap_new_SBStructuredData__SWIG_1() argument
51287 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SBStructuredData",1,"lldb::SBStruc… in _wrap_new_SBStructuredData__SWIG_1()
51289 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_new_SBStructuredData__SWIG_1()
51294 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_new_SBStructuredData__SWIG_1()
51299 lua_error(L); in _wrap_new_SBStructuredData__SWIG_1()
51304 static int _wrap_new_SBStructuredData__SWIG_2(lua_State* L) { in _wrap_new_SBStructuredData__SWIG_2() argument
51313 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SBStructuredData",1,"lldb::SBScrip… in _wrap_new_SBStructuredData__SWIG_2()
51314 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::SBStructuredData",2,"lldb::SBDebug… in _wrap_new_SBStructuredData__SWIG_2()
51316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBScriptObject,0))){ in _wrap_new_SBStructuredData__SWIG_2()
51322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_new_SBStructuredData__SWIG_2()
51327 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_new_SBStructuredData__SWIG_2()
51332 lua_error(L); in _wrap_new_SBStructuredData__SWIG_2()
51337 static int _wrap_new_SBStructuredData(lua_State* L) { in _wrap_new_SBStructuredData() argument
51343 argc = lua_gettop(L); in _wrap_new_SBStructuredData()
51345 return _wrap_new_SBStructuredData__SWIG_0(L); in _wrap_new_SBStructuredData()
51351 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBStructuredData()
51358 return _wrap_new_SBStructuredData__SWIG_1(L); in _wrap_new_SBStructuredData()
51365 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBStructuredData()
51374 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBStructuredData()
51381 return _wrap_new_SBStructuredData__SWIG_2(L); in _wrap_new_SBStructuredData()
51386 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBStructuredData'\n" in _wrap_new_SBStructuredData()
51391 lua_error(L);return 0; in _wrap_new_SBStructuredData()
51395 static int _wrap_SBStructuredData_IsValid(lua_State* L) { in _wrap_SBStructuredData_IsValid() argument
51402 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::IsValid",1,"lldb::SBStructuredData… in _wrap_SBStructuredData_IsValid()
51404 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_IsValid()
51409 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStructuredData_IsValid()
51414 lua_error(L); in _wrap_SBStructuredData_IsValid()
51419 static int _wrap_SBStructuredData_SetFromJSON__SWIG_0(lua_State* L) { in _wrap_SBStructuredData_SetFromJSON__SWIG_0() argument
51427 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",1,"lldb::SBStructured… in _wrap_SBStructuredData_SetFromJSON__SWIG_0()
51428 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",2,"lldb::SBStream &"); in _wrap_SBStructuredData_SetFromJSON__SWIG_0()
51430 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_SetFromJSON__SWIG_0()
51435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStructuredData_SetFromJSON__SWIG_0()
51442 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBStructuredData_SetFromJSON__SWIG_0()
51448 lua_error(L); in _wrap_SBStructuredData_SetFromJSON__SWIG_0()
51453 static int _wrap_SBStructuredData_SetFromJSON__SWIG_1(lua_State* L) { in _wrap_SBStructuredData_SetFromJSON__SWIG_1() argument
51461 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",1,"lldb::SBStructured… in _wrap_SBStructuredData_SetFromJSON__SWIG_1()
51462 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStructuredData::SetFromJSON",2,"char const *… in _wrap_SBStructuredData_SetFromJSON__SWIG_1()
51464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_SetFromJSON__SWIG_1()
51468 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBStructuredData_SetFromJSON__SWIG_1()
51472 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBStructuredData_SetFromJSON__SWIG_1()
51478 lua_error(L); in _wrap_SBStructuredData_SetFromJSON__SWIG_1()
51483 static int _wrap_SBStructuredData_SetFromJSON(lua_State* L) { in _wrap_SBStructuredData_SetFromJSON() argument
51489 argc = lua_gettop(L); in _wrap_SBStructuredData_SetFromJSON()
51494 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_SetFromJSON()
51503 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_SetFromJSON()
51510 return _wrap_SBStructuredData_SetFromJSON__SWIG_0(L); in _wrap_SBStructuredData_SetFromJSON()
51518 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_SetFromJSON()
51526 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBStructuredData_SetFromJSON()
51529 return _wrap_SBStructuredData_SetFromJSON__SWIG_1(L); in _wrap_SBStructuredData_SetFromJSON()
51534 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_SetFromJSON'\n" in _wrap_SBStructuredData_SetFromJSON()
51538 lua_error(L);return 0; in _wrap_SBStructuredData_SetFromJSON()
51542 static int _wrap_SBStructuredData_Clear(lua_State* L) { in _wrap_SBStructuredData_Clear() argument
51548 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::Clear",1,"lldb::SBStructuredData *… in _wrap_SBStructuredData_Clear()
51550 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_Clear()
51560 lua_error(L); in _wrap_SBStructuredData_Clear()
51565 static int _wrap_SBStructuredData_GetAsJSON(lua_State* L) { in _wrap_SBStructuredData_GetAsJSON() argument
51573 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetAsJSON",1,"lldb::SBStructuredDa… in _wrap_SBStructuredData_GetAsJSON()
51574 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetAsJSON",2,"lldb::SBStream &"); in _wrap_SBStructuredData_GetAsJSON()
51576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetAsJSON()
51581 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStructuredData_GetAsJSON()
51588 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBStructuredData_GetAsJSON()
51594 lua_error(L); in _wrap_SBStructuredData_GetAsJSON()
51599 static int _wrap_SBStructuredData_GetDescription(lua_State* L) { in _wrap_SBStructuredData_GetDescription() argument
51607 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetDescription",1,"lldb::SBStructu… in _wrap_SBStructuredData_GetDescription()
51608 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetDescription",2,"lldb::SBStream … in _wrap_SBStructuredData_GetDescription()
51610 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetDescription()
51615 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBStructuredData_GetDescription()
51622 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBStructuredData_GetDescription()
51628 lua_error(L); in _wrap_SBStructuredData_GetDescription()
51633 static int _wrap_SBStructuredData_GetType(lua_State* L) { in _wrap_SBStructuredData_GetType() argument
51640 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetType",1,"lldb::SBStructuredData… in _wrap_SBStructuredData_GetType()
51642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetType()
51647 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetType()
51652 lua_error(L); in _wrap_SBStructuredData_GetType()
51657 static int _wrap_SBStructuredData_GetSize(lua_State* L) { in _wrap_SBStructuredData_GetSize() argument
51664 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetSize",1,"lldb::SBStructuredData… in _wrap_SBStructuredData_GetSize()
51666 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetSize()
51671 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetSize()
51676 lua_error(L); in _wrap_SBStructuredData_GetSize()
51681 static int _wrap_SBStructuredData_GetKeys(lua_State* L) { in _wrap_SBStructuredData_GetKeys() argument
51689 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetKeys",1,"lldb::SBStructuredData… in _wrap_SBStructuredData_GetKeys()
51690 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetKeys",2,"lldb::SBStringList &"); in _wrap_SBStructuredData_GetKeys()
51692 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetKeys()
51697 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBStructuredData_GetKeys()
51702 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStructuredData_GetKeys()
51707 lua_error(L); in _wrap_SBStructuredData_GetKeys()
51712 static int _wrap_SBStructuredData_GetValueForKey(lua_State* L) { in _wrap_SBStructuredData_GetValueForKey() argument
51720 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetValueForKey",1,"lldb::SBStructu… in _wrap_SBStructuredData_GetValueForKey()
51721 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetValueForKey",2,"char cons… in _wrap_SBStructuredData_GetValueForKey()
51723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetValueForKey()
51727 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBStructuredData_GetValueForKey()
51731 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBStructuredData_GetValueForKey()
51737 lua_error(L); in _wrap_SBStructuredData_GetValueForKey()
51742 static int _wrap_SBStructuredData_GetItemAtIndex(lua_State* L) { in _wrap_SBStructuredData_GetItemAtIndex() argument
51750 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetItemAtIndex",1,"lldb::SBStructu… in _wrap_SBStructuredData_GetItemAtIndex()
51751 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetItemAtIndex",2,"size_t"); in _wrap_SBStructuredData_GetItemAtIndex()
51753 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetItemAtIndex()
51757 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBStructuredData_GetItemAtIndex()
51761 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBStructuredData_GetItemAtIndex()
51767 lua_error(L); in _wrap_SBStructuredData_GetItemAtIndex()
51772 static int _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0(lua_State* L) { in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0() argument
51780 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetUnsignedIntegerValue",1,"lldb::… in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0()
51781 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetUnsignedIntegerValue",2,"uint64_… in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0()
51783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0()
51787 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0()
51789 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0()
51794 lua_error(L); in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0()
51799 static int _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1(lua_State* L) { in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1() argument
51806 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetUnsignedIntegerValue",1,"lldb::… in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1()
51808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1()
51813 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1()
51818 lua_error(L); in _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1()
51823 static int _wrap_SBStructuredData_GetUnsignedIntegerValue(lua_State* L) { in _wrap_SBStructuredData_GetUnsignedIntegerValue() argument
51829 argc = lua_gettop(L); in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51834 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51841 return _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_1(L); in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51848 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51856 _v = lua_isnumber(L,argv[1]); in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51859 return _wrap_SBStructuredData_GetUnsignedIntegerValue__SWIG_0(L); in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51864 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetUnsignedInt… in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51868 lua_error(L);return 0; in _wrap_SBStructuredData_GetUnsignedIntegerValue()
51872 static int _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0(lua_State* L) { in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0() argument
51880 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetSignedIntegerValue",1,"lldb::SB… in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0()
51881 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetSignedIntegerValue",2,"int64_t"); in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0()
51883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0()
51887 arg2 = (int64_t)lua_tointeger(L, 2); in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0()
51889 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0()
51894 lua_error(L); in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0()
51899 static int _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1(lua_State* L) { in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1() argument
51906 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetSignedIntegerValue",1,"lldb::SB… in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1()
51908 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1()
51913 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1()
51918 lua_error(L); in _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1()
51923 static int _wrap_SBStructuredData_GetSignedIntegerValue(lua_State* L) { in _wrap_SBStructuredData_GetSignedIntegerValue() argument
51929 argc = lua_gettop(L); in _wrap_SBStructuredData_GetSignedIntegerValue()
51934 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetSignedIntegerValue()
51941 return _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_1(L); in _wrap_SBStructuredData_GetSignedIntegerValue()
51948 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetSignedIntegerValue()
51956 _v = lua_isnumber(L,argv[1]); in _wrap_SBStructuredData_GetSignedIntegerValue()
51959 return _wrap_SBStructuredData_GetSignedIntegerValue__SWIG_0(L); in _wrap_SBStructuredData_GetSignedIntegerValue()
51964 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetSignedInteg… in _wrap_SBStructuredData_GetSignedIntegerValue()
51968 lua_error(L);return 0; in _wrap_SBStructuredData_GetSignedIntegerValue()
51972 static int _wrap_SBStructuredData_GetIntegerValue__SWIG_0(lua_State* L) { in _wrap_SBStructuredData_GetIntegerValue__SWIG_0() argument
51980 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetIntegerValue",1,"lldb::SBStruct… in _wrap_SBStructuredData_GetIntegerValue__SWIG_0()
51981 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetIntegerValue",2,"uint64_t"); in _wrap_SBStructuredData_GetIntegerValue__SWIG_0()
51983 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetIntegerValue__SWIG_0()
51987 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBStructuredData_GetIntegerValue__SWIG_0()
51989 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetIntegerValue__SWIG_0()
51994 lua_error(L); in _wrap_SBStructuredData_GetIntegerValue__SWIG_0()
51999 static int _wrap_SBStructuredData_GetIntegerValue__SWIG_1(lua_State* L) { in _wrap_SBStructuredData_GetIntegerValue__SWIG_1() argument
52006 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetIntegerValue",1,"lldb::SBStruct… in _wrap_SBStructuredData_GetIntegerValue__SWIG_1()
52008 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetIntegerValue__SWIG_1()
52013 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetIntegerValue__SWIG_1()
52018 lua_error(L); in _wrap_SBStructuredData_GetIntegerValue__SWIG_1()
52023 static int _wrap_SBStructuredData_GetIntegerValue(lua_State* L) { in _wrap_SBStructuredData_GetIntegerValue() argument
52029 argc = lua_gettop(L); in _wrap_SBStructuredData_GetIntegerValue()
52034 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetIntegerValue()
52041 return _wrap_SBStructuredData_GetIntegerValue__SWIG_1(L); in _wrap_SBStructuredData_GetIntegerValue()
52048 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetIntegerValue()
52056 _v = lua_isnumber(L,argv[1]); in _wrap_SBStructuredData_GetIntegerValue()
52059 return _wrap_SBStructuredData_GetIntegerValue__SWIG_0(L); in _wrap_SBStructuredData_GetIntegerValue()
52064 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetIntegerValu… in _wrap_SBStructuredData_GetIntegerValue()
52068 lua_error(L);return 0; in _wrap_SBStructuredData_GetIntegerValue()
52072 static int _wrap_SBStructuredData_GetFloatValue__SWIG_0(lua_State* L) { in _wrap_SBStructuredData_GetFloatValue__SWIG_0() argument
52080 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetFloatValue",1,"lldb::SBStructur… in _wrap_SBStructuredData_GetFloatValue__SWIG_0()
52081 if(!lua_isnumber(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetFloatValue",2,"double"); in _wrap_SBStructuredData_GetFloatValue__SWIG_0()
52083 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetFloatValue__SWIG_0()
52087 arg2 = (double)lua_tonumber(L, 2); in _wrap_SBStructuredData_GetFloatValue__SWIG_0()
52089 lua_pushnumber(L, (lua_Number) result); SWIG_arg++; in _wrap_SBStructuredData_GetFloatValue__SWIG_0()
52094 lua_error(L); in _wrap_SBStructuredData_GetFloatValue__SWIG_0()
52099 static int _wrap_SBStructuredData_GetFloatValue__SWIG_1(lua_State* L) { in _wrap_SBStructuredData_GetFloatValue__SWIG_1() argument
52106 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetFloatValue",1,"lldb::SBStructur… in _wrap_SBStructuredData_GetFloatValue__SWIG_1()
52108 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetFloatValue__SWIG_1()
52113 lua_pushnumber(L, (lua_Number) result); SWIG_arg++; in _wrap_SBStructuredData_GetFloatValue__SWIG_1()
52118 lua_error(L); in _wrap_SBStructuredData_GetFloatValue__SWIG_1()
52123 static int _wrap_SBStructuredData_GetFloatValue(lua_State* L) { in _wrap_SBStructuredData_GetFloatValue() argument
52129 argc = lua_gettop(L); in _wrap_SBStructuredData_GetFloatValue()
52134 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetFloatValue()
52141 return _wrap_SBStructuredData_GetFloatValue__SWIG_1(L); in _wrap_SBStructuredData_GetFloatValue()
52148 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetFloatValue()
52156 _v = lua_isnumber(L,argv[1]); in _wrap_SBStructuredData_GetFloatValue()
52159 return _wrap_SBStructuredData_GetFloatValue__SWIG_0(L); in _wrap_SBStructuredData_GetFloatValue()
52164 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetFloatValue'… in _wrap_SBStructuredData_GetFloatValue()
52168 lua_error(L);return 0; in _wrap_SBStructuredData_GetFloatValue()
52172 static int _wrap_SBStructuredData_GetBooleanValue__SWIG_0(lua_State* L) { in _wrap_SBStructuredData_GetBooleanValue__SWIG_0() argument
52180 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetBooleanValue",1,"lldb::SBStruct… in _wrap_SBStructuredData_GetBooleanValue__SWIG_0()
52181 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBStructuredData::GetBooleanValue",2,"bool"); in _wrap_SBStructuredData_GetBooleanValue__SWIG_0()
52183 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetBooleanValue__SWIG_0()
52187 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBStructuredData_GetBooleanValue__SWIG_0()
52189 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStructuredData_GetBooleanValue__SWIG_0()
52194 lua_error(L); in _wrap_SBStructuredData_GetBooleanValue__SWIG_0()
52199 static int _wrap_SBStructuredData_GetBooleanValue__SWIG_1(lua_State* L) { in _wrap_SBStructuredData_GetBooleanValue__SWIG_1() argument
52206 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetBooleanValue",1,"lldb::SBStruct… in _wrap_SBStructuredData_GetBooleanValue__SWIG_1()
52208 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetBooleanValue__SWIG_1()
52213 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBStructuredData_GetBooleanValue__SWIG_1()
52218 lua_error(L); in _wrap_SBStructuredData_GetBooleanValue__SWIG_1()
52223 static int _wrap_SBStructuredData_GetBooleanValue(lua_State* L) { in _wrap_SBStructuredData_GetBooleanValue() argument
52229 argc = lua_gettop(L); in _wrap_SBStructuredData_GetBooleanValue()
52234 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetBooleanValue()
52241 return _wrap_SBStructuredData_GetBooleanValue__SWIG_1(L); in _wrap_SBStructuredData_GetBooleanValue()
52248 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBStructuredData_GetBooleanValue()
52256 _v = lua_isboolean(L,argv[1]); in _wrap_SBStructuredData_GetBooleanValue()
52259 return _wrap_SBStructuredData_GetBooleanValue__SWIG_0(L); in _wrap_SBStructuredData_GetBooleanValue()
52264 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBStructuredData_GetBooleanValu… in _wrap_SBStructuredData_GetBooleanValue()
52268 lua_error(L);return 0; in _wrap_SBStructuredData_GetBooleanValue()
52272 static int _wrap_SBStructuredData_GetStringValue(lua_State* L) { in _wrap_SBStructuredData_GetStringValue() argument
52281 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetStringValue",1,"lldb::SBStructu… in _wrap_SBStructuredData_GetStringValue()
52283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetStringValue()
52288 arg3 = luaL_checkinteger(L, 2); in _wrap_SBStructuredData_GetStringValue()
52290 return luaL_error(L, "Positive integer expected"); in _wrap_SBStructuredData_GetStringValue()
52295 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBStructuredData_GetStringValue()
52297 lua_pop(L, 1); // Blow away the previous result in _wrap_SBStructuredData_GetStringValue()
52299 lua_pushliteral(L, ""); in _wrap_SBStructuredData_GetStringValue()
52301 lua_pushlstring(L, (const char *)arg2, result); in _wrap_SBStructuredData_GetStringValue()
52310 lua_error(L); in _wrap_SBStructuredData_GetStringValue()
52315 static int _wrap_SBStructuredData_GetGenericValue(lua_State* L) { in _wrap_SBStructuredData_GetGenericValue() argument
52322 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::GetGenericValue",1,"lldb::SBStruct… in _wrap_SBStructuredData_GetGenericValue()
52324 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData_GetGenericValue()
52331 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBScriptObject,1); SWIG_arg++; in _wrap_SBStructuredData_GetGenericValue()
52337 lua_error(L); in _wrap_SBStructuredData_GetGenericValue()
52342 static int _wrap_SBStructuredData___tostring(lua_State* L) { in _wrap_SBStructuredData___tostring() argument
52349 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBStructuredData::__repr__",1,"lldb::SBStructuredDat… in _wrap_SBStructuredData___tostring()
52351 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBStructuredData___tostring()
52356 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBStructuredData___tostring()
52361 lua_error(L); in _wrap_SBStructuredData___tostring()
52370 static int _proxy__wrap_new_SBStructuredData(lua_State *L) { in _proxy__wrap_new_SBStructuredData() argument
52371 assert(lua_istable(L,1)); in _proxy__wrap_new_SBStructuredData()
52372 lua_pushcfunction(L,_wrap_new_SBStructuredData); in _proxy__wrap_new_SBStructuredData()
52373 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBStructuredData()
52374 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBStructuredData()
52375 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBStructuredData()
52432 static int _wrap_new_SBSymbol__SWIG_0(lua_State* L) { in _wrap_new_SBSymbol__SWIG_0() argument
52439 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_new_SBSymbol__SWIG_0()
52444 lua_error(L); in _wrap_new_SBSymbol__SWIG_0()
52449 static int _wrap_new_SBSymbol__SWIG_1(lua_State* L) { in _wrap_new_SBSymbol__SWIG_1() argument
52456 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSymbol::SBSymbol",1,"lldb::SBSymbol const &"); in _wrap_new_SBSymbol__SWIG_1()
52458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_new_SBSymbol__SWIG_1()
52463 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_new_SBSymbol__SWIG_1()
52468 lua_error(L); in _wrap_new_SBSymbol__SWIG_1()
52473 static int _wrap_new_SBSymbol(lua_State* L) { in _wrap_new_SBSymbol() argument
52479 argc = lua_gettop(L); in _wrap_new_SBSymbol()
52481 return _wrap_new_SBSymbol__SWIG_0(L); in _wrap_new_SBSymbol()
52487 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSymbol()
52494 return _wrap_new_SBSymbol__SWIG_1(L); in _wrap_new_SBSymbol()
52498 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSymbol'\n" in _wrap_new_SBSymbol()
52502 lua_error(L);return 0; in _wrap_new_SBSymbol()
52506 static int _wrap_SBSymbol_IsValid(lua_State* L) { in _wrap_SBSymbol_IsValid() argument
52513 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::IsValid",1,"lldb::SBSymbol const *"); in _wrap_SBSymbol_IsValid()
52515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_IsValid()
52520 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbol_IsValid()
52525 lua_error(L); in _wrap_SBSymbol_IsValid()
52530 static int _wrap_SBSymbol_GetName(lua_State* L) { in _wrap_SBSymbol_GetName() argument
52537 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetName",1,"lldb::SBSymbol const *"); in _wrap_SBSymbol_GetName()
52539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetName()
52544 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBSymbol_GetName()
52549 lua_error(L); in _wrap_SBSymbol_GetName()
52554 static int _wrap_SBSymbol_GetDisplayName(lua_State* L) { in _wrap_SBSymbol_GetDisplayName() argument
52561 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetDisplayName",1,"lldb::SBSymbol const *"… in _wrap_SBSymbol_GetDisplayName()
52563 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetDisplayName()
52568 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBSymbol_GetDisplayName()
52573 lua_error(L); in _wrap_SBSymbol_GetDisplayName()
52578 static int _wrap_SBSymbol_GetMangledName(lua_State* L) { in _wrap_SBSymbol_GetMangledName() argument
52585 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetMangledName",1,"lldb::SBSymbol const *"… in _wrap_SBSymbol_GetMangledName()
52587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetMangledName()
52592 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBSymbol_GetMangledName()
52597 lua_error(L); in _wrap_SBSymbol_GetMangledName()
52602 static int _wrap_SBSymbol_GetInstructions__SWIG_0(lua_State* L) { in _wrap_SBSymbol_GetInstructions__SWIG_0() argument
52611 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetInstructions__SWIG_0()
52612 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",2,"lldb::SBTarget"); in _wrap_SBSymbol_GetInstructions__SWIG_0()
52614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetInstructions__SWIG_0()
52619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBSymbol_GetInstructions__SWIG_0()
52627 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBSymbol_GetInstructions__SWIG_0()
52633 lua_error(L); in _wrap_SBSymbol_GetInstructions__SWIG_0()
52638 static int _wrap_SBSymbol_GetInstructions__SWIG_1(lua_State* L) { in _wrap_SBSymbol_GetInstructions__SWIG_1() argument
52648 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetInstructions__SWIG_1()
52649 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",2,"lldb::SBTarget"); in _wrap_SBSymbol_GetInstructions__SWIG_1()
52650 … if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBSymbol::GetInstructions",3,"char const *"); in _wrap_SBSymbol_GetInstructions__SWIG_1()
52652 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetInstructions__SWIG_1()
52657 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBSymbol_GetInstructions__SWIG_1()
52662 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBSymbol_GetInstructions__SWIG_1()
52666 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBSymbol_GetInstructions__SWIG_1()
52672 lua_error(L); in _wrap_SBSymbol_GetInstructions__SWIG_1()
52677 static int _wrap_SBSymbol_GetInstructions(lua_State* L) { in _wrap_SBSymbol_GetInstructions() argument
52683 argc = lua_gettop(L); in _wrap_SBSymbol_GetInstructions()
52688 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbol_GetInstructions()
52697 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbol_GetInstructions()
52704 return _wrap_SBSymbol_GetInstructions__SWIG_0(L); in _wrap_SBSymbol_GetInstructions()
52712 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbol_GetInstructions()
52721 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbol_GetInstructions()
52729 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBSymbol_GetInstructions()
52732 return _wrap_SBSymbol_GetInstructions__SWIG_1(L); in _wrap_SBSymbol_GetInstructions()
52738 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBSymbol_GetInstructions'\n" in _wrap_SBSymbol_GetInstructions()
52742 lua_error(L);return 0; in _wrap_SBSymbol_GetInstructions()
52746 static int _wrap_SBSymbol_GetStartAddress(lua_State* L) { in _wrap_SBSymbol_GetStartAddress() argument
52753 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetStartAddress",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetStartAddress()
52755 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetStartAddress()
52762 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBSymbol_GetStartAddress()
52768 lua_error(L); in _wrap_SBSymbol_GetStartAddress()
52773 static int _wrap_SBSymbol_GetEndAddress(lua_State* L) { in _wrap_SBSymbol_GetEndAddress() argument
52780 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetEndAddress",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetEndAddress()
52782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetEndAddress()
52789 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBSymbol_GetEndAddress()
52795 lua_error(L); in _wrap_SBSymbol_GetEndAddress()
52800 static int _wrap_SBSymbol_GetValue(lua_State* L) { in _wrap_SBSymbol_GetValue() argument
52807 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetValue",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetValue()
52809 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetValue()
52814 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSymbol_GetValue()
52819 lua_error(L); in _wrap_SBSymbol_GetValue()
52824 static int _wrap_SBSymbol_GetSize(lua_State* L) { in _wrap_SBSymbol_GetSize() argument
52831 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetSize",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetSize()
52833 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetSize()
52838 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSymbol_GetSize()
52843 lua_error(L); in _wrap_SBSymbol_GetSize()
52848 static int _wrap_SBSymbol_GetPrologueByteSize(lua_State* L) { in _wrap_SBSymbol_GetPrologueByteSize() argument
52855 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetPrologueByteSize",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetPrologueByteSize()
52857 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetPrologueByteSize()
52862 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSymbol_GetPrologueByteSize()
52867 lua_error(L); in _wrap_SBSymbol_GetPrologueByteSize()
52872 static int _wrap_SBSymbol_GetType(lua_State* L) { in _wrap_SBSymbol_GetType() argument
52879 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetType",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetType()
52881 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetType()
52886 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSymbol_GetType()
52891 lua_error(L); in _wrap_SBSymbol_GetType()
52896 static int _wrap_SBSymbol___eq(lua_State* L) { in _wrap_SBSymbol___eq() argument
52904 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::operator ==",1,"lldb::SBSymbol const *"); in _wrap_SBSymbol___eq()
52905 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::operator ==",2,"lldb::SBSymbol const &"); in _wrap_SBSymbol___eq()
52907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol___eq()
52912 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol___eq()
52917 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbol___eq()
52922 lua_error(L); in _wrap_SBSymbol___eq()
52927 static int _wrap_SBSymbol_GetDescription(lua_State* L) { in _wrap_SBSymbol_GetDescription() argument
52935 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::GetDescription",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_GetDescription()
52936 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbol::GetDescription",2,"lldb::SBStream &"); in _wrap_SBSymbol_GetDescription()
52938 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_GetDescription()
52943 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBSymbol_GetDescription()
52948 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbol_GetDescription()
52953 lua_error(L); in _wrap_SBSymbol_GetDescription()
52958 static int _wrap_SBSymbol_IsExternal(lua_State* L) { in _wrap_SBSymbol_IsExternal() argument
52965 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::IsExternal",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_IsExternal()
52967 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_IsExternal()
52972 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbol_IsExternal()
52977 lua_error(L); in _wrap_SBSymbol_IsExternal()
52982 static int _wrap_SBSymbol_IsSynthetic(lua_State* L) { in _wrap_SBSymbol_IsSynthetic() argument
52989 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::IsSynthetic",1,"lldb::SBSymbol *"); in _wrap_SBSymbol_IsSynthetic()
52991 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol_IsSynthetic()
52996 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbol_IsSynthetic()
53001 lua_error(L); in _wrap_SBSymbol_IsSynthetic()
53006 static int _wrap_SBSymbol___tostring(lua_State* L) { in _wrap_SBSymbol___tostring() argument
53013 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbol::__repr__",1,"lldb::SBSymbol *"); in _wrap_SBSymbol___tostring()
53015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbol___tostring()
53020 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBSymbol___tostring()
53025 lua_error(L); in _wrap_SBSymbol___tostring()
53034 static int _proxy__wrap_new_SBSymbol(lua_State *L) { in _proxy__wrap_new_SBSymbol() argument
53035 assert(lua_istable(L,1)); in _proxy__wrap_new_SBSymbol()
53036 lua_pushcfunction(L,_wrap_new_SBSymbol); in _proxy__wrap_new_SBSymbol()
53037 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBSymbol()
53038 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBSymbol()
53039 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBSymbol()
53095 static int _wrap_new_SBSymbolContext__SWIG_0(lua_State* L) { in _wrap_new_SBSymbolContext__SWIG_0() argument
53102 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_new_SBSymbolContext__SWIG_0()
53107 lua_error(L); in _wrap_new_SBSymbolContext__SWIG_0()
53112 static int _wrap_new_SBSymbolContext__SWIG_1(lua_State* L) { in _wrap_new_SBSymbolContext__SWIG_1() argument
53119 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SBSymbolContext",1,"lldb::SBSymbolC… in _wrap_new_SBSymbolContext__SWIG_1()
53121 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_new_SBSymbolContext__SWIG_1()
53126 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_new_SBSymbolContext__SWIG_1()
53131 lua_error(L); in _wrap_new_SBSymbolContext__SWIG_1()
53136 static int _wrap_new_SBSymbolContext(lua_State* L) { in _wrap_new_SBSymbolContext() argument
53142 argc = lua_gettop(L); in _wrap_new_SBSymbolContext()
53144 return _wrap_new_SBSymbolContext__SWIG_0(L); in _wrap_new_SBSymbolContext()
53150 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSymbolContext()
53157 return _wrap_new_SBSymbolContext__SWIG_1(L); in _wrap_new_SBSymbolContext()
53161 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSymbolContext'\n" in _wrap_new_SBSymbolContext()
53165 lua_error(L);return 0; in _wrap_new_SBSymbolContext()
53169 static int _wrap_SBSymbolContext_IsValid(lua_State* L) { in _wrap_SBSymbolContext_IsValid() argument
53176 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::IsValid",1,"lldb::SBSymbolContext c… in _wrap_SBSymbolContext_IsValid()
53178 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_IsValid()
53183 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbolContext_IsValid()
53188 lua_error(L); in _wrap_SBSymbolContext_IsValid()
53193 static int _wrap_SBSymbolContext_GetModule(lua_State* L) { in _wrap_SBSymbolContext_GetModule() argument
53200 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetModule",1,"lldb::SBSymbolContext… in _wrap_SBSymbolContext_GetModule()
53202 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetModule()
53209 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBSymbolContext_GetModule()
53215 lua_error(L); in _wrap_SBSymbolContext_GetModule()
53220 static int _wrap_SBSymbolContext_GetCompileUnit(lua_State* L) { in _wrap_SBSymbolContext_GetCompileUnit() argument
53227 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetCompileUnit",1,"lldb::SBSymbolCo… in _wrap_SBSymbolContext_GetCompileUnit()
53229 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetCompileUnit()
53236 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBCompileUnit,1); SWIG_arg++; in _wrap_SBSymbolContext_GetCompileUnit()
53242 lua_error(L); in _wrap_SBSymbolContext_GetCompileUnit()
53247 static int _wrap_SBSymbolContext_GetFunction(lua_State* L) { in _wrap_SBSymbolContext_GetFunction() argument
53254 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetFunction",1,"lldb::SBSymbolConte… in _wrap_SBSymbolContext_GetFunction()
53256 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetFunction()
53263 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFunction,1); SWIG_arg++; in _wrap_SBSymbolContext_GetFunction()
53269 lua_error(L); in _wrap_SBSymbolContext_GetFunction()
53274 static int _wrap_SBSymbolContext_GetBlock(lua_State* L) { in _wrap_SBSymbolContext_GetBlock() argument
53281 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetBlock",1,"lldb::SBSymbolContext … in _wrap_SBSymbolContext_GetBlock()
53283 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetBlock()
53290 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBlock,1); SWIG_arg++; in _wrap_SBSymbolContext_GetBlock()
53296 lua_error(L); in _wrap_SBSymbolContext_GetBlock()
53301 static int _wrap_SBSymbolContext_GetLineEntry(lua_State* L) { in _wrap_SBSymbolContext_GetLineEntry() argument
53308 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetLineEntry",1,"lldb::SBSymbolCont… in _wrap_SBSymbolContext_GetLineEntry()
53310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetLineEntry()
53317 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLineEntry,1); SWIG_arg++; in _wrap_SBSymbolContext_GetLineEntry()
53323 lua_error(L); in _wrap_SBSymbolContext_GetLineEntry()
53328 static int _wrap_SBSymbolContext_GetSymbol(lua_State* L) { in _wrap_SBSymbolContext_GetSymbol() argument
53335 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetSymbol",1,"lldb::SBSymbolContext… in _wrap_SBSymbolContext_GetSymbol()
53337 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetSymbol()
53344 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbol,1); SWIG_arg++; in _wrap_SBSymbolContext_GetSymbol()
53350 lua_error(L); in _wrap_SBSymbolContext_GetSymbol()
53355 static int _wrap_SBSymbolContext_SetModule(lua_State* L) { in _wrap_SBSymbolContext_SetModule() argument
53363 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetModule",1,"lldb::SBSymbolContext… in _wrap_SBSymbolContext_SetModule()
53364 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetModule",2,"lldb::SBModule"); in _wrap_SBSymbolContext_SetModule()
53366 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_SetModule()
53371 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBSymbolContext_SetModule()
53382 lua_error(L); in _wrap_SBSymbolContext_SetModule()
53387 static int _wrap_SBSymbolContext_SetCompileUnit(lua_State* L) { in _wrap_SBSymbolContext_SetCompileUnit() argument
53395 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetCompileUnit",1,"lldb::SBSymbolCo… in _wrap_SBSymbolContext_SetCompileUnit()
53396 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetCompileUnit",2,"lldb::SBCompileU… in _wrap_SBSymbolContext_SetCompileUnit()
53398 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_SetCompileUnit()
53403 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBCompileUnit,0))){ in _wrap_SBSymbolContext_SetCompileUnit()
53414 lua_error(L); in _wrap_SBSymbolContext_SetCompileUnit()
53419 static int _wrap_SBSymbolContext_SetFunction(lua_State* L) { in _wrap_SBSymbolContext_SetFunction() argument
53427 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetFunction",1,"lldb::SBSymbolConte… in _wrap_SBSymbolContext_SetFunction()
53428 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetFunction",2,"lldb::SBFunction"); in _wrap_SBSymbolContext_SetFunction()
53430 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_SetFunction()
53435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBFunction,0))){ in _wrap_SBSymbolContext_SetFunction()
53446 lua_error(L); in _wrap_SBSymbolContext_SetFunction()
53451 static int _wrap_SBSymbolContext_SetBlock(lua_State* L) { in _wrap_SBSymbolContext_SetBlock() argument
53459 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetBlock",1,"lldb::SBSymbolContext … in _wrap_SBSymbolContext_SetBlock()
53460 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetBlock",2,"lldb::SBBlock"); in _wrap_SBSymbolContext_SetBlock()
53462 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_SetBlock()
53467 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBBlock,0))){ in _wrap_SBSymbolContext_SetBlock()
53478 lua_error(L); in _wrap_SBSymbolContext_SetBlock()
53483 static int _wrap_SBSymbolContext_SetLineEntry(lua_State* L) { in _wrap_SBSymbolContext_SetLineEntry() argument
53491 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetLineEntry",1,"lldb::SBSymbolCont… in _wrap_SBSymbolContext_SetLineEntry()
53492 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetLineEntry",2,"lldb::SBLineEntry"… in _wrap_SBSymbolContext_SetLineEntry()
53494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_SetLineEntry()
53499 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBLineEntry,0))){ in _wrap_SBSymbolContext_SetLineEntry()
53510 lua_error(L); in _wrap_SBSymbolContext_SetLineEntry()
53515 static int _wrap_SBSymbolContext_SetSymbol(lua_State* L) { in _wrap_SBSymbolContext_SetSymbol() argument
53523 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::SetSymbol",1,"lldb::SBSymbolContext… in _wrap_SBSymbolContext_SetSymbol()
53524 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::SetSymbol",2,"lldb::SBSymbol"); in _wrap_SBSymbolContext_SetSymbol()
53526 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_SetSymbol()
53531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSymbol,0))){ in _wrap_SBSymbolContext_SetSymbol()
53542 lua_error(L); in _wrap_SBSymbolContext_SetSymbol()
53547 static int _wrap_SBSymbolContext_GetParentOfInlinedScope(lua_State* L) { in _wrap_SBSymbolContext_GetParentOfInlinedScope() argument
53556 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetParentOfInlinedScope",1,"lldb::S… in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53557 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::GetParentOfInlinedScope",2,"lldb::S… in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53558 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBSymbolContext::GetParentOfInlinedScope",3,"lldb::S… in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53560 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53565 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53570 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53577 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53583 lua_error(L); in _wrap_SBSymbolContext_GetParentOfInlinedScope()
53588 static int _wrap_SBSymbolContext_GetDescription(lua_State* L) { in _wrap_SBSymbolContext_GetDescription() argument
53596 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::GetDescription",1,"lldb::SBSymbolCo… in _wrap_SBSymbolContext_GetDescription()
53597 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContext::GetDescription",2,"lldb::SBStream &… in _wrap_SBSymbolContext_GetDescription()
53599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext_GetDescription()
53604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBSymbolContext_GetDescription()
53609 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbolContext_GetDescription()
53614 lua_error(L); in _wrap_SBSymbolContext_GetDescription()
53619 static int _wrap_SBSymbolContext___tostring(lua_State* L) { in _wrap_SBSymbolContext___tostring() argument
53626 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContext::__repr__",1,"lldb::SBSymbolContext … in _wrap_SBSymbolContext___tostring()
53628 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContext___tostring()
53633 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBSymbolContext___tostring()
53638 lua_error(L); in _wrap_SBSymbolContext___tostring()
53647 static int _proxy__wrap_new_SBSymbolContext(lua_State *L) { in _proxy__wrap_new_SBSymbolContext() argument
53648 assert(lua_istable(L,1)); in _proxy__wrap_new_SBSymbolContext()
53649 lua_pushcfunction(L,_wrap_new_SBSymbolContext); in _proxy__wrap_new_SBSymbolContext()
53650 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBSymbolContext()
53651 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBSymbolContext()
53652 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBSymbolContext()
53707 static int _wrap_new_SBSymbolContextList__SWIG_0(lua_State* L) { in _wrap_new_SBSymbolContextList__SWIG_0() argument
53714 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_new_SBSymbolContextList__SWIG_0()
53719 lua_error(L); in _wrap_new_SBSymbolContextList__SWIG_0()
53724 static int _wrap_new_SBSymbolContextList__SWIG_1(lua_State* L) { in _wrap_new_SBSymbolContextList__SWIG_1() argument
53731 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::SBSymbolContextList",1,"lldb::S… in _wrap_new_SBSymbolContextList__SWIG_1()
53733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_new_SBSymbolContextList__SWIG_1()
53738 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_new_SBSymbolContextList__SWIG_1()
53743 lua_error(L); in _wrap_new_SBSymbolContextList__SWIG_1()
53748 static int _wrap_new_SBSymbolContextList(lua_State* L) { in _wrap_new_SBSymbolContextList() argument
53754 argc = lua_gettop(L); in _wrap_new_SBSymbolContextList()
53756 return _wrap_new_SBSymbolContextList__SWIG_0(L); in _wrap_new_SBSymbolContextList()
53762 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBSymbolContextList()
53769 return _wrap_new_SBSymbolContextList__SWIG_1(L); in _wrap_new_SBSymbolContextList()
53773 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBSymbolContextList'\n" in _wrap_new_SBSymbolContextList()
53777 lua_error(L);return 0; in _wrap_new_SBSymbolContextList()
53781 static int _wrap_SBSymbolContextList_IsValid(lua_State* L) { in _wrap_SBSymbolContextList_IsValid() argument
53788 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::IsValid",1,"lldb::SBSymbolConte… in _wrap_SBSymbolContextList_IsValid()
53790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_IsValid()
53795 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbolContextList_IsValid()
53800 lua_error(L); in _wrap_SBSymbolContextList_IsValid()
53805 static int _wrap_SBSymbolContextList_GetSize(lua_State* L) { in _wrap_SBSymbolContextList_GetSize() argument
53812 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::GetSize",1,"lldb::SBSymbolConte… in _wrap_SBSymbolContextList_GetSize()
53814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_GetSize()
53819 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBSymbolContextList_GetSize()
53824 lua_error(L); in _wrap_SBSymbolContextList_GetSize()
53829 static int _wrap_SBSymbolContextList_GetContextAtIndex(lua_State* L) { in _wrap_SBSymbolContextList_GetContextAtIndex() argument
53837 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::GetContextAtIndex",1,"lldb::SBS… in _wrap_SBSymbolContextList_GetContextAtIndex()
53838 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::GetContextAtIndex",2,"uint32_t"); in _wrap_SBSymbolContextList_GetContextAtIndex()
53840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_GetContextAtIndex()
53844 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBSymbolContextList_GetContextAtIndex()
53848 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_SBSymbolContextList_GetContextAtIndex()
53854 lua_error(L); in _wrap_SBSymbolContextList_GetContextAtIndex()
53859 static int _wrap_SBSymbolContextList_GetDescription(lua_State* L) { in _wrap_SBSymbolContextList_GetDescription() argument
53867 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::GetDescription",1,"lldb::SBSymb… in _wrap_SBSymbolContextList_GetDescription()
53868 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::GetDescription",2,"lldb::SBStre… in _wrap_SBSymbolContextList_GetDescription()
53870 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_GetDescription()
53875 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBSymbolContextList_GetDescription()
53880 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBSymbolContextList_GetDescription()
53885 lua_error(L); in _wrap_SBSymbolContextList_GetDescription()
53890 static int _wrap_SBSymbolContextList_Append__SWIG_0(lua_State* L) { in _wrap_SBSymbolContextList_Append__SWIG_0() argument
53897 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",1,"lldb::SBSymbolContex… in _wrap_SBSymbolContextList_Append__SWIG_0()
53898 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",2,"lldb::SBSymbolContex… in _wrap_SBSymbolContextList_Append__SWIG_0()
53900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_Append__SWIG_0()
53905 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSymbolContext,0))){ in _wrap_SBSymbolContextList_Append__SWIG_0()
53915 lua_error(L); in _wrap_SBSymbolContextList_Append__SWIG_0()
53920 static int _wrap_SBSymbolContextList_Append__SWIG_1(lua_State* L) { in _wrap_SBSymbolContextList_Append__SWIG_1() argument
53927 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",1,"lldb::SBSymbolContex… in _wrap_SBSymbolContextList_Append__SWIG_1()
53928 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBSymbolContextList::Append",2,"lldb::SBSymbolContex… in _wrap_SBSymbolContextList_Append__SWIG_1()
53930 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_Append__SWIG_1()
53935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_Append__SWIG_1()
53945 lua_error(L); in _wrap_SBSymbolContextList_Append__SWIG_1()
53950 static int _wrap_SBSymbolContextList_Append(lua_State* L) { in _wrap_SBSymbolContextList_Append() argument
53956 argc = lua_gettop(L); in _wrap_SBSymbolContextList_Append()
53961 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbolContextList_Append()
53970 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbolContextList_Append()
53977 return _wrap_SBSymbolContextList_Append__SWIG_0(L); in _wrap_SBSymbolContextList_Append()
53985 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbolContextList_Append()
53994 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBSymbolContextList_Append()
54001 return _wrap_SBSymbolContextList_Append__SWIG_1(L); in _wrap_SBSymbolContextList_Append()
54006 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBSymbolContextList_Append'\n" in _wrap_SBSymbolContextList_Append()
54010 lua_error(L);return 0; in _wrap_SBSymbolContextList_Append()
54014 static int _wrap_SBSymbolContextList_Clear(lua_State* L) { in _wrap_SBSymbolContextList_Clear() argument
54020 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::Clear",1,"lldb::SBSymbolContext… in _wrap_SBSymbolContextList_Clear()
54022 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList_Clear()
54032 lua_error(L); in _wrap_SBSymbolContextList_Clear()
54037 static int _wrap_SBSymbolContextList___tostring(lua_State* L) { in _wrap_SBSymbolContextList___tostring() argument
54044 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBSymbolContextList::__repr__",1,"lldb::SBSymbolCont… in _wrap_SBSymbolContextList___tostring()
54046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBSymbolContextList,0))){ in _wrap_SBSymbolContextList___tostring()
54051 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBSymbolContextList___tostring()
54056 lua_error(L); in _wrap_SBSymbolContextList___tostring()
54065 static int _proxy__wrap_new_SBSymbolContextList(lua_State *L) { in _proxy__wrap_new_SBSymbolContextList() argument
54066 assert(lua_istable(L,1)); in _proxy__wrap_new_SBSymbolContextList()
54067 lua_pushcfunction(L,_wrap_new_SBSymbolContextList); in _proxy__wrap_new_SBSymbolContextList()
54068 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBSymbolContextList()
54069 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBSymbolContextList()
54070 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBSymbolContextList()
54116 static int _wrap_new_SBTarget__SWIG_0(lua_State* L) { in _wrap_new_SBTarget__SWIG_0() argument
54123 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_new_SBTarget__SWIG_0()
54128 lua_error(L); in _wrap_new_SBTarget__SWIG_0()
54133 static int _wrap_new_SBTarget__SWIG_1(lua_State* L) { in _wrap_new_SBTarget__SWIG_1() argument
54140 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::SBTarget",1,"lldb::SBTarget const &"); in _wrap_new_SBTarget__SWIG_1()
54142 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_new_SBTarget__SWIG_1()
54147 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_new_SBTarget__SWIG_1()
54152 lua_error(L); in _wrap_new_SBTarget__SWIG_1()
54157 static int _wrap_new_SBTarget(lua_State* L) { in _wrap_new_SBTarget() argument
54163 argc = lua_gettop(L); in _wrap_new_SBTarget()
54165 return _wrap_new_SBTarget__SWIG_0(L); in _wrap_new_SBTarget()
54171 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTarget()
54178 return _wrap_new_SBTarget__SWIG_1(L); in _wrap_new_SBTarget()
54182 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTarget'\n" in _wrap_new_SBTarget()
54186 lua_error(L);return 0; in _wrap_new_SBTarget()
54190 static int _wrap_SBTarget_IsValid(lua_State* L) { in _wrap_SBTarget_IsValid() argument
54197 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::IsValid",1,"lldb::SBTarget const *"); in _wrap_SBTarget_IsValid()
54199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_IsValid()
54204 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_IsValid()
54209 lua_error(L); in _wrap_SBTarget_IsValid()
54214 static int _wrap_SBTarget_EventIsTargetEvent(lua_State* L) { in _wrap_SBTarget_EventIsTargetEvent() argument
54221 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::EventIsTargetEvent",1,"lldb::SBEvent const… in _wrap_SBTarget_EventIsTargetEvent()
54223 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBTarget_EventIsTargetEvent()
54228 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_EventIsTargetEvent()
54233 lua_error(L); in _wrap_SBTarget_EventIsTargetEvent()
54238 static int _wrap_SBTarget_GetTargetFromEvent(lua_State* L) { in _wrap_SBTarget_GetTargetFromEvent() argument
54245 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::GetTargetFromEvent",1,"lldb::SBEvent const… in _wrap_SBTarget_GetTargetFromEvent()
54247 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBTarget_GetTargetFromEvent()
54254 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBTarget_GetTargetFromEvent()
54260 lua_error(L); in _wrap_SBTarget_GetTargetFromEvent()
54265 static int _wrap_SBTarget_GetNumModulesFromEvent(lua_State* L) { in _wrap_SBTarget_GetNumModulesFromEvent() argument
54272 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumModulesFromEvent",1,"lldb::SBEvent c… in _wrap_SBTarget_GetNumModulesFromEvent()
54274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBTarget_GetNumModulesFromEvent()
54279 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetNumModulesFromEvent()
54284 lua_error(L); in _wrap_SBTarget_GetNumModulesFromEvent()
54289 static int _wrap_SBTarget_GetModuleAtIndexFromEvent(lua_State* L) { in _wrap_SBTarget_GetModuleAtIndexFromEvent() argument
54297 …if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndexFromEvent",1,"uint32_t cons… in _wrap_SBTarget_GetModuleAtIndexFromEvent()
54298 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndexFromEvent",2,"lldb::SBEven… in _wrap_SBTarget_GetModuleAtIndexFromEvent()
54299 arg1 = (uint32_t const)lua_tointeger(L, 1); in _wrap_SBTarget_GetModuleAtIndexFromEvent()
54301 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBTarget_GetModuleAtIndexFromEvent()
54308 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBTarget_GetModuleAtIndexFromEvent()
54314 lua_error(L); in _wrap_SBTarget_GetModuleAtIndexFromEvent()
54319 static int _wrap_SBTarget_GetBroadcasterClassName(lua_State* L) { in _wrap_SBTarget_GetBroadcasterClassName() argument
54326 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTarget_GetBroadcasterClassName()
54331 lua_error(L); in _wrap_SBTarget_GetBroadcasterClassName()
54336 static int _wrap_SBTarget_GetProcess(lua_State* L) { in _wrap_SBTarget_GetProcess() argument
54343 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetProcess",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetProcess()
54345 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetProcess()
54352 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_GetProcess()
54358 lua_error(L); in _wrap_SBTarget_GetProcess()
54363 static int _wrap_SBTarget_SetCollectingStats(lua_State* L) { in _wrap_SBTarget_SetCollectingStats() argument
54370 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetCollectingStats",1,"lldb::SBTarget *"); in _wrap_SBTarget_SetCollectingStats()
54371 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTarget::SetCollectingStats",2,"bool"); in _wrap_SBTarget_SetCollectingStats()
54373 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_SetCollectingStats()
54377 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBTarget_SetCollectingStats()
54384 lua_error(L); in _wrap_SBTarget_SetCollectingStats()
54389 static int _wrap_SBTarget_GetCollectingStats(lua_State* L) { in _wrap_SBTarget_GetCollectingStats() argument
54396 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetCollectingStats",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetCollectingStats()
54398 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetCollectingStats()
54403 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_GetCollectingStats()
54408 lua_error(L); in _wrap_SBTarget_GetCollectingStats()
54413 static int _wrap_SBTarget_GetStatistics__SWIG_0(lua_State* L) { in _wrap_SBTarget_GetStatistics__SWIG_0() argument
54420 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetStatistics",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetStatistics__SWIG_0()
54422 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetStatistics__SWIG_0()
54429 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBTarget_GetStatistics__SWIG_0()
54435 lua_error(L); in _wrap_SBTarget_GetStatistics__SWIG_0()
54440 static int _wrap_SBTarget_GetStatistics__SWIG_1(lua_State* L) { in _wrap_SBTarget_GetStatistics__SWIG_1() argument
54449 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetStatistics",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetStatistics__SWIG_1()
54450 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetStatistics",2,"lldb::SBStatisticsOption… in _wrap_SBTarget_GetStatistics__SWIG_1()
54452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetStatistics__SWIG_1()
54457 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBStatisticsOptions,0))){ in _wrap_SBTarget_GetStatistics__SWIG_1()
54465 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBStructuredData,1); SWIG_arg++; in _wrap_SBTarget_GetStatistics__SWIG_1()
54471 lua_error(L); in _wrap_SBTarget_GetStatistics__SWIG_1()
54476 static int _wrap_SBTarget_GetStatistics(lua_State* L) { in _wrap_SBTarget_GetStatistics() argument
54482 argc = lua_gettop(L); in _wrap_SBTarget_GetStatistics()
54487 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_GetStatistics()
54494 return _wrap_SBTarget_GetStatistics__SWIG_0(L); in _wrap_SBTarget_GetStatistics()
54501 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_GetStatistics()
54510 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_GetStatistics()
54517 return _wrap_SBTarget_GetStatistics__SWIG_1(L); in _wrap_SBTarget_GetStatistics()
54522 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_GetStatistics'\n" in _wrap_SBTarget_GetStatistics()
54526 lua_error(L);return 0; in _wrap_SBTarget_GetStatistics()
54530 static int _wrap_SBTarget_GetPlatform(lua_State* L) { in _wrap_SBTarget_GetPlatform() argument
54537 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetPlatform",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetPlatform()
54539 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetPlatform()
54546 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBPlatform,1); SWIG_arg++; in _wrap_SBTarget_GetPlatform()
54552 lua_error(L); in _wrap_SBTarget_GetPlatform()
54557 static int _wrap_SBTarget_GetEnvironment(lua_State* L) { in _wrap_SBTarget_GetEnvironment() argument
54564 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetEnvironment",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetEnvironment()
54566 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetEnvironment()
54573 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBEnvironment,1); SWIG_arg++; in _wrap_SBTarget_GetEnvironment()
54579 lua_error(L); in _wrap_SBTarget_GetEnvironment()
54584 static int _wrap_SBTarget_Install(lua_State* L) { in _wrap_SBTarget_Install() argument
54591 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Install",1,"lldb::SBTarget *"); in _wrap_SBTarget_Install()
54593 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_Install()
54600 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_Install()
54606 lua_error(L); in _wrap_SBTarget_Install()
54611 static int _wrap_SBTarget_Launch__SWIG_0(lua_State* L) { in _wrap_SBTarget_Launch__SWIG_0() argument
54628 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Launch",1,"lldb::SBTarget *"); in _wrap_SBTarget_Launch__SWIG_0()
54629 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::Launch",2,"lldb::SBListener &"); in _wrap_SBTarget_Launch__SWIG_0()
54630 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBTarget::Launch",5,"char const *"); in _wrap_SBTarget_Launch__SWIG_0()
54631 if(!SWIG_lua_isnilstring(L,6)) SWIG_fail_arg("lldb::SBTarget::Launch",6,"char const *"); in _wrap_SBTarget_Launch__SWIG_0()
54632 if(!SWIG_lua_isnilstring(L,7)) SWIG_fail_arg("lldb::SBTarget::Launch",7,"char const *"); in _wrap_SBTarget_Launch__SWIG_0()
54633 if(!SWIG_lua_isnilstring(L,8)) SWIG_fail_arg("lldb::SBTarget::Launch",8,"char const *"); in _wrap_SBTarget_Launch__SWIG_0()
54634 if(!lua_isinteger(L,9)) SWIG_fail_arg("lldb::SBTarget::Launch",9,"uint32_t"); in _wrap_SBTarget_Launch__SWIG_0()
54635 if(!lua_isboolean(L,10)) SWIG_fail_arg("lldb::SBTarget::Launch",10,"bool"); in _wrap_SBTarget_Launch__SWIG_0()
54636 if(!lua_isuserdata(L,11)) SWIG_fail_arg("lldb::SBTarget::Launch",11,"lldb::SBError &"); in _wrap_SBTarget_Launch__SWIG_0()
54638 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_Launch__SWIG_0()
54643 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBTarget_Launch__SWIG_0()
54648 if (lua_istable(L, 3)) { in _wrap_SBTarget_Launch__SWIG_0()
54649 size_t size = lua_rawlen(L, 3); in _wrap_SBTarget_Launch__SWIG_0()
54653 lua_rawgeti(L, 3, i); in _wrap_SBTarget_Launch__SWIG_0()
54654 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_Launch__SWIG_0()
54656 lua_pop(L, 1); in _wrap_SBTarget_Launch__SWIG_0()
54657 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_Launch__SWIG_0()
54659 arg3[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_Launch__SWIG_0()
54660 lua_pop(L, 1); in _wrap_SBTarget_Launch__SWIG_0()
54663 } else if (lua_isnil(L, 3)) { in _wrap_SBTarget_Launch__SWIG_0()
54667 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_Launch__SWIG_0()
54671 if (lua_istable(L, 4)) { in _wrap_SBTarget_Launch__SWIG_0()
54672 size_t size = lua_rawlen(L, 4); in _wrap_SBTarget_Launch__SWIG_0()
54676 lua_rawgeti(L, 4, i); in _wrap_SBTarget_Launch__SWIG_0()
54677 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_Launch__SWIG_0()
54679 lua_pop(L, 1); in _wrap_SBTarget_Launch__SWIG_0()
54680 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_Launch__SWIG_0()
54682 arg4[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_Launch__SWIG_0()
54683 lua_pop(L, 1); in _wrap_SBTarget_Launch__SWIG_0()
54686 } else if (lua_isnil(L, 4)) { in _wrap_SBTarget_Launch__SWIG_0()
54690 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_Launch__SWIG_0()
54693 arg5 = (char *)lua_tostring(L, 5); in _wrap_SBTarget_Launch__SWIG_0()
54694 arg6 = (char *)lua_tostring(L, 6); in _wrap_SBTarget_Launch__SWIG_0()
54695 arg7 = (char *)lua_tostring(L, 7); in _wrap_SBTarget_Launch__SWIG_0()
54696 arg8 = (char *)lua_tostring(L, 8); in _wrap_SBTarget_Launch__SWIG_0()
54697 arg9 = (uint32_t)lua_tointeger(L, 9); in _wrap_SBTarget_Launch__SWIG_0()
54698 arg10 = (lua_toboolean(L, 10)!=0); in _wrap_SBTarget_Launch__SWIG_0()
54700 if (!SWIG_IsOK(SWIG_ConvertPtr(L,11,(void**)&arg11,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_Launch__SWIG_0()
54707 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_Launch__SWIG_0()
54725 lua_error(L); in _wrap_SBTarget_Launch__SWIG_0()
54730 static int _wrap_SBTarget_LoadCore__SWIG_0(lua_State* L) { in _wrap_SBTarget_LoadCore__SWIG_0() argument
54738 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::LoadCore",1,"lldb::SBTarget *"); in _wrap_SBTarget_LoadCore__SWIG_0()
54739 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::LoadCore",2,"char const *"); in _wrap_SBTarget_LoadCore__SWIG_0()
54741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_LoadCore__SWIG_0()
54745 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_LoadCore__SWIG_0()
54749 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_LoadCore__SWIG_0()
54755 lua_error(L); in _wrap_SBTarget_LoadCore__SWIG_0()
54760 static int _wrap_SBTarget_LoadCore__SWIG_1(lua_State* L) { in _wrap_SBTarget_LoadCore__SWIG_1() argument
54769 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::LoadCore",1,"lldb::SBTarget *"); in _wrap_SBTarget_LoadCore__SWIG_1()
54770 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::LoadCore",2,"char const *"); in _wrap_SBTarget_LoadCore__SWIG_1()
54771 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::LoadCore",3,"lldb::SBError &"); in _wrap_SBTarget_LoadCore__SWIG_1()
54773 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_LoadCore__SWIG_1()
54777 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_LoadCore__SWIG_1()
54779 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_LoadCore__SWIG_1()
54786 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_LoadCore__SWIG_1()
54792 lua_error(L); in _wrap_SBTarget_LoadCore__SWIG_1()
54797 static int _wrap_SBTarget_LoadCore(lua_State* L) { in _wrap_SBTarget_LoadCore() argument
54803 argc = lua_gettop(L); in _wrap_SBTarget_LoadCore()
54808 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_LoadCore()
54816 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_LoadCore()
54819 return _wrap_SBTarget_LoadCore__SWIG_0(L); in _wrap_SBTarget_LoadCore()
54827 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_LoadCore()
54835 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_LoadCore()
54840 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_LoadCore()
54847 return _wrap_SBTarget_LoadCore__SWIG_1(L); in _wrap_SBTarget_LoadCore()
54853 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_LoadCore'\n" in _wrap_SBTarget_LoadCore()
54857 lua_error(L);return 0; in _wrap_SBTarget_LoadCore()
54861 static int _wrap_SBTarget_LaunchSimple(lua_State* L) { in _wrap_SBTarget_LaunchSimple() argument
54871 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::LaunchSimple",1,"lldb::SBTarget *"); in _wrap_SBTarget_LaunchSimple()
54872 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::LaunchSimple",4,"char const *"); in _wrap_SBTarget_LaunchSimple()
54874 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_LaunchSimple()
54879 if (lua_istable(L, 2)) { in _wrap_SBTarget_LaunchSimple()
54880 size_t size = lua_rawlen(L, 2); in _wrap_SBTarget_LaunchSimple()
54884 lua_rawgeti(L, 2, i); in _wrap_SBTarget_LaunchSimple()
54885 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_LaunchSimple()
54887 lua_pop(L, 1); in _wrap_SBTarget_LaunchSimple()
54888 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_LaunchSimple()
54890 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_LaunchSimple()
54891 lua_pop(L, 1); in _wrap_SBTarget_LaunchSimple()
54894 } else if (lua_isnil(L, 2)) { in _wrap_SBTarget_LaunchSimple()
54898 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_LaunchSimple()
54902 if (lua_istable(L, 3)) { in _wrap_SBTarget_LaunchSimple()
54903 size_t size = lua_rawlen(L, 3); in _wrap_SBTarget_LaunchSimple()
54907 lua_rawgeti(L, 3, i); in _wrap_SBTarget_LaunchSimple()
54908 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_LaunchSimple()
54910 lua_pop(L, 1); in _wrap_SBTarget_LaunchSimple()
54911 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_LaunchSimple()
54913 arg3[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_LaunchSimple()
54914 lua_pop(L, 1); in _wrap_SBTarget_LaunchSimple()
54917 } else if (lua_isnil(L, 3)) { in _wrap_SBTarget_LaunchSimple()
54921 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_LaunchSimple()
54924 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_LaunchSimple()
54928 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_LaunchSimple()
54946 lua_error(L); in _wrap_SBTarget_LaunchSimple()
54951 static int _wrap_SBTarget_Launch__SWIG_1(lua_State* L) { in _wrap_SBTarget_Launch__SWIG_1() argument
54960 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Launch",1,"lldb::SBTarget *"); in _wrap_SBTarget_Launch__SWIG_1()
54961 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::Launch",2,"lldb::SBLaunchInfo &"); in _wrap_SBTarget_Launch__SWIG_1()
54962 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::Launch",3,"lldb::SBError &"); in _wrap_SBTarget_Launch__SWIG_1()
54964 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_Launch__SWIG_1()
54969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBTarget_Launch__SWIG_1()
54974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_Launch__SWIG_1()
54981 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_Launch__SWIG_1()
54987 lua_error(L); in _wrap_SBTarget_Launch__SWIG_1()
54992 static int _wrap_SBTarget_Launch(lua_State* L) { in _wrap_SBTarget_Launch() argument
54998 argc = lua_gettop(L); in _wrap_SBTarget_Launch()
55003 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_Launch()
55012 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_Launch()
55021 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_Launch()
55028 return _wrap_SBTarget_Launch__SWIG_1(L); in _wrap_SBTarget_Launch()
55037 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_Launch()
55046 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_Launch()
55054 _v = (lua_istable(L, argv[2]) || lua_isnil(L, argv[2])); in _wrap_SBTarget_Launch()
55058 _v = (lua_istable(L, argv[3]) || lua_isnil(L, argv[3])); in _wrap_SBTarget_Launch()
55062 _v = SWIG_lua_isnilstring(L,argv[4]); in _wrap_SBTarget_Launch()
55066 _v = SWIG_lua_isnilstring(L,argv[5]); in _wrap_SBTarget_Launch()
55070 _v = SWIG_lua_isnilstring(L,argv[6]); in _wrap_SBTarget_Launch()
55074 _v = SWIG_lua_isnilstring(L,argv[7]); in _wrap_SBTarget_Launch()
55078 _v = lua_isnumber(L,argv[8]); in _wrap_SBTarget_Launch()
55082 _v = lua_isboolean(L,argv[9]); in _wrap_SBTarget_Launch()
55087 …if (lua_isuserdata(L,argv[10])==0 || SWIG_ConvertPtr(L,argv[10], (void **) &ptr, SWIGTYPE_p_lldb__… in _wrap_SBTarget_Launch()
55094 return _wrap_SBTarget_Launch__SWIG_0(L); in _wrap_SBTarget_Launch()
55108 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_Launch'\n" in _wrap_SBTarget_Launch()
55112 lua_error(L);return 0; in _wrap_SBTarget_Launch()
55116 static int _wrap_SBTarget_Attach(lua_State* L) { in _wrap_SBTarget_Attach() argument
55125 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Attach",1,"lldb::SBTarget *"); in _wrap_SBTarget_Attach()
55126 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::Attach",2,"lldb::SBAttachInfo &"); in _wrap_SBTarget_Attach()
55127 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::Attach",3,"lldb::SBError &"); in _wrap_SBTarget_Attach()
55129 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_Attach()
55134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAttachInfo,0))){ in _wrap_SBTarget_Attach()
55139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_Attach()
55146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_Attach()
55152 lua_error(L); in _wrap_SBTarget_Attach()
55157 static int _wrap_SBTarget_AttachToProcessWithID(lua_State* L) { in _wrap_SBTarget_AttachToProcessWithID() argument
55167 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",1,"lldb::SBTarget *… in _wrap_SBTarget_AttachToProcessWithID()
55168 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",2,"lldb::SBListener… in _wrap_SBTarget_AttachToProcessWithID()
55169 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",3,"lldb::pid_t"); in _wrap_SBTarget_AttachToProcessWithID()
55170 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithID",4,"lldb::SBError &"… in _wrap_SBTarget_AttachToProcessWithID()
55172 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AttachToProcessWithID()
55177 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBTarget_AttachToProcessWithID()
55181 arg3 = (lldb::pid_t)lua_tointeger(L, 3); in _wrap_SBTarget_AttachToProcessWithID()
55183 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_AttachToProcessWithID()
55190 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_AttachToProcessWithID()
55196 lua_error(L); in _wrap_SBTarget_AttachToProcessWithID()
55201 static int _wrap_SBTarget_AttachToProcessWithName(lua_State* L) { in _wrap_SBTarget_AttachToProcessWithName() argument
55212 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",1,"lldb::SBTarget… in _wrap_SBTarget_AttachToProcessWithName()
55213 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",2,"lldb::SBListen… in _wrap_SBTarget_AttachToProcessWithName()
55214 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",3,"char con… in _wrap_SBTarget_AttachToProcessWithName()
55215 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",4,"bool"); in _wrap_SBTarget_AttachToProcessWithName()
55216 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::AttachToProcessWithName",5,"lldb::SBError … in _wrap_SBTarget_AttachToProcessWithName()
55218 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AttachToProcessWithName()
55223 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBTarget_AttachToProcessWithName()
55227 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_AttachToProcessWithName()
55228 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBTarget_AttachToProcessWithName()
55230 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_AttachToProcessWithName()
55237 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_AttachToProcessWithName()
55243 lua_error(L); in _wrap_SBTarget_AttachToProcessWithName()
55248 static int _wrap_SBTarget_ConnectRemote(lua_State* L) { in _wrap_SBTarget_ConnectRemote() argument
55259 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",1,"lldb::SBTarget *"); in _wrap_SBTarget_ConnectRemote()
55260 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",2,"lldb::SBListener &"); in _wrap_SBTarget_ConnectRemote()
55261 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",3,"char const *"); in _wrap_SBTarget_ConnectRemote()
55262 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",4,"char const *"); in _wrap_SBTarget_ConnectRemote()
55263 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::ConnectRemote",5,"lldb::SBError &"); in _wrap_SBTarget_ConnectRemote()
55265 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ConnectRemote()
55270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBListener,0))){ in _wrap_SBTarget_ConnectRemote()
55274 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_ConnectRemote()
55275 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_ConnectRemote()
55277 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_ConnectRemote()
55284 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBTarget_ConnectRemote()
55290 lua_error(L); in _wrap_SBTarget_ConnectRemote()
55295 static int _wrap_SBTarget_GetExecutable(lua_State* L) { in _wrap_SBTarget_GetExecutable() argument
55302 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetExecutable",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetExecutable()
55304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetExecutable()
55311 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBTarget_GetExecutable()
55317 lua_error(L); in _wrap_SBTarget_GetExecutable()
55322 static int _wrap_SBTarget_AppendImageSearchPath(lua_State* L) { in _wrap_SBTarget_AppendImageSearchPath() argument
55331 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",1,"lldb::SBTarget *… in _wrap_SBTarget_AppendImageSearchPath()
55332 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",2,"char const… in _wrap_SBTarget_AppendImageSearchPath()
55333 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",3,"char const… in _wrap_SBTarget_AppendImageSearchPath()
55334 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::AppendImageSearchPath",4,"lldb::SBError &"… in _wrap_SBTarget_AppendImageSearchPath()
55336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AppendImageSearchPath()
55340 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_AppendImageSearchPath()
55341 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_AppendImageSearchPath()
55343 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_AppendImageSearchPath()
55353 lua_error(L); in _wrap_SBTarget_AppendImageSearchPath()
55358 static int _wrap_SBTarget_AddModule__SWIG_0(lua_State* L) { in _wrap_SBTarget_AddModule__SWIG_0() argument
55366 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *"); in _wrap_SBTarget_AddModule__SWIG_0()
55367 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"lldb::SBModule &"); in _wrap_SBTarget_AddModule__SWIG_0()
55369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AddModule__SWIG_0()
55374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBTarget_AddModule__SWIG_0()
55379 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_AddModule__SWIG_0()
55384 lua_error(L); in _wrap_SBTarget_AddModule__SWIG_0()
55389 static int _wrap_SBTarget_AddModule__SWIG_1(lua_State* L) { in _wrap_SBTarget_AddModule__SWIG_1() argument
55399 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *"); in _wrap_SBTarget_AddModule__SWIG_1()
55400 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"char const *"); in _wrap_SBTarget_AddModule__SWIG_1()
55401 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AddModule",3,"char const *"); in _wrap_SBTarget_AddModule__SWIG_1()
55402 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::AddModule",4,"char const *"); in _wrap_SBTarget_AddModule__SWIG_1()
55404 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AddModule__SWIG_1()
55408 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_AddModule__SWIG_1()
55409 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_AddModule__SWIG_1()
55410 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_AddModule__SWIG_1()
55414 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBTarget_AddModule__SWIG_1()
55420 lua_error(L); in _wrap_SBTarget_AddModule__SWIG_1()
55425 static int _wrap_SBTarget_AddModule__SWIG_2(lua_State* L) { in _wrap_SBTarget_AddModule__SWIG_2() argument
55436 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *"); in _wrap_SBTarget_AddModule__SWIG_2()
55437 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"char const *"); in _wrap_SBTarget_AddModule__SWIG_2()
55438 if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::AddModule",3,"char const *"); in _wrap_SBTarget_AddModule__SWIG_2()
55439 if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::AddModule",4,"char const *"); in _wrap_SBTarget_AddModule__SWIG_2()
55440 if(!SWIG_lua_isnilstring(L,5)) SWIG_fail_arg("lldb::SBTarget::AddModule",5,"char const *"); in _wrap_SBTarget_AddModule__SWIG_2()
55442 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AddModule__SWIG_2()
55446 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_AddModule__SWIG_2()
55447 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_AddModule__SWIG_2()
55448 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_AddModule__SWIG_2()
55449 arg5 = (char *)lua_tostring(L, 5); in _wrap_SBTarget_AddModule__SWIG_2()
55453 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBTarget_AddModule__SWIG_2()
55459 lua_error(L); in _wrap_SBTarget_AddModule__SWIG_2()
55464 static int _wrap_SBTarget_AddModule__SWIG_3(lua_State* L) { in _wrap_SBTarget_AddModule__SWIG_3() argument
55472 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::AddModule",1,"lldb::SBTarget *"); in _wrap_SBTarget_AddModule__SWIG_3()
55473 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::AddModule",2,"lldb::SBModuleSpec const &"); in _wrap_SBTarget_AddModule__SWIG_3()
55475 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_AddModule__SWIG_3()
55480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModuleSpec,0))){ in _wrap_SBTarget_AddModule__SWIG_3()
55487 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBTarget_AddModule__SWIG_3()
55493 lua_error(L); in _wrap_SBTarget_AddModule__SWIG_3()
55498 static int _wrap_SBTarget_AddModule(lua_State* L) { in _wrap_SBTarget_AddModule() argument
55504 argc = lua_gettop(L); in _wrap_SBTarget_AddModule()
55509 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_AddModule()
55518 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_AddModule()
55525 return _wrap_SBTarget_AddModule__SWIG_0(L); in _wrap_SBTarget_AddModule()
55533 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_AddModule()
55542 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_AddModule()
55549 return _wrap_SBTarget_AddModule__SWIG_3(L); in _wrap_SBTarget_AddModule()
55557 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_AddModule()
55565 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_AddModule()
55569 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBTarget_AddModule()
55573 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBTarget_AddModule()
55576 return _wrap_SBTarget_AddModule__SWIG_1(L); in _wrap_SBTarget_AddModule()
55586 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_AddModule()
55594 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_AddModule()
55598 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBTarget_AddModule()
55602 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBTarget_AddModule()
55606 _v = SWIG_lua_isnilstring(L,argv[4]); in _wrap_SBTarget_AddModule()
55609 return _wrap_SBTarget_AddModule__SWIG_2(L); in _wrap_SBTarget_AddModule()
55617 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_AddModule'\n" in _wrap_SBTarget_AddModule()
55623 lua_error(L);return 0; in _wrap_SBTarget_AddModule()
55627 static int _wrap_SBTarget_GetNumModules(lua_State* L) { in _wrap_SBTarget_GetNumModules() argument
55634 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumModules",1,"lldb::SBTarget const *"); in _wrap_SBTarget_GetNumModules()
55636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetNumModules()
55641 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetNumModules()
55646 lua_error(L); in _wrap_SBTarget_GetNumModules()
55651 static int _wrap_SBTarget_GetModuleAtIndex(lua_State* L) { in _wrap_SBTarget_GetModuleAtIndex() argument
55659 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndex",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetModuleAtIndex()
55660 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetModuleAtIndex",2,"uint32_t"); in _wrap_SBTarget_GetModuleAtIndex()
55662 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetModuleAtIndex()
55666 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTarget_GetModuleAtIndex()
55670 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBTarget_GetModuleAtIndex()
55676 lua_error(L); in _wrap_SBTarget_GetModuleAtIndex()
55681 static int _wrap_SBTarget_RemoveModule(lua_State* L) { in _wrap_SBTarget_RemoveModule() argument
55690 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::RemoveModule",1,"lldb::SBTarget *"); in _wrap_SBTarget_RemoveModule()
55691 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::RemoveModule",2,"lldb::SBModule"); in _wrap_SBTarget_RemoveModule()
55693 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_RemoveModule()
55698 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBTarget_RemoveModule()
55704 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_RemoveModule()
55709 lua_error(L); in _wrap_SBTarget_RemoveModule()
55714 static int _wrap_SBTarget_GetDebugger(lua_State* L) { in _wrap_SBTarget_GetDebugger() argument
55721 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetDebugger",1,"lldb::SBTarget const *"); in _wrap_SBTarget_GetDebugger()
55723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetDebugger()
55730 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDebugger,1); SWIG_arg++; in _wrap_SBTarget_GetDebugger()
55736 lua_error(L); in _wrap_SBTarget_GetDebugger()
55741 static int _wrap_SBTarget_FindModule(lua_State* L) { in _wrap_SBTarget_FindModule() argument
55749 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindModule",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindModule()
55750 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::FindModule",2,"lldb::SBFileSpec const &"); in _wrap_SBTarget_FindModule()
55752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindModule()
55757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_FindModule()
55764 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBTarget_FindModule()
55770 lua_error(L); in _wrap_SBTarget_FindModule()
55775 static int _wrap_SBTarget_FindCompileUnits(lua_State* L) { in _wrap_SBTarget_FindCompileUnits() argument
55783 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindCompileUnits",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindCompileUnits()
55784 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::FindCompileUnits",2,"lldb::SBFileSpec cons… in _wrap_SBTarget_FindCompileUnits()
55786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindCompileUnits()
55791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_FindCompileUnits()
55798 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBTarget_FindCompileUnits()
55804 lua_error(L); in _wrap_SBTarget_FindCompileUnits()
55809 static int _wrap_SBTarget_GetByteOrder(lua_State* L) { in _wrap_SBTarget_GetByteOrder() argument
55816 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetByteOrder",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetByteOrder()
55818 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetByteOrder()
55823 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetByteOrder()
55828 lua_error(L); in _wrap_SBTarget_GetByteOrder()
55833 static int _wrap_SBTarget_GetAddressByteSize(lua_State* L) { in _wrap_SBTarget_GetAddressByteSize() argument
55840 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetAddressByteSize",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetAddressByteSize()
55842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetAddressByteSize()
55847 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetAddressByteSize()
55852 lua_error(L); in _wrap_SBTarget_GetAddressByteSize()
55857 static int _wrap_SBTarget_GetTriple(lua_State* L) { in _wrap_SBTarget_GetTriple() argument
55864 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetTriple",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetTriple()
55866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetTriple()
55871 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTarget_GetTriple()
55876 lua_error(L); in _wrap_SBTarget_GetTriple()
55881 static int _wrap_SBTarget_GetABIName(lua_State* L) { in _wrap_SBTarget_GetABIName() argument
55888 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetABIName",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetABIName()
55890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetABIName()
55895 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTarget_GetABIName()
55900 lua_error(L); in _wrap_SBTarget_GetABIName()
55905 static int _wrap_SBTarget_GetLabel(lua_State* L) { in _wrap_SBTarget_GetLabel() argument
55912 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetLabel",1,"lldb::SBTarget const *"); in _wrap_SBTarget_GetLabel()
55914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetLabel()
55919 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTarget_GetLabel()
55924 lua_error(L); in _wrap_SBTarget_GetLabel()
55929 static int _wrap_SBTarget_SetLabel(lua_State* L) { in _wrap_SBTarget_SetLabel() argument
55937 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetLabel",1,"lldb::SBTarget *"); in _wrap_SBTarget_SetLabel()
55938 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::SetLabel",2,"char const *"); in _wrap_SBTarget_SetLabel()
55940 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_SetLabel()
55944 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_SetLabel()
55948 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_SetLabel()
55954 lua_error(L); in _wrap_SBTarget_SetLabel()
55959 static int _wrap_SBTarget_GetDataByteSize(lua_State* L) { in _wrap_SBTarget_GetDataByteSize() argument
55966 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetDataByteSize",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetDataByteSize()
55968 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetDataByteSize()
55973 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetDataByteSize()
55978 lua_error(L); in _wrap_SBTarget_GetDataByteSize()
55983 static int _wrap_SBTarget_GetCodeByteSize(lua_State* L) { in _wrap_SBTarget_GetCodeByteSize() argument
55990 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetCodeByteSize",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetCodeByteSize()
55992 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetCodeByteSize()
55997 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetCodeByteSize()
56002 lua_error(L); in _wrap_SBTarget_GetCodeByteSize()
56007 static int _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay(lua_State* L) { in _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay() argument
56014 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetMaximumNumberOfChildrenToDisplay",1,"ll… in _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay()
56016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay()
56021 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay()
56026 lua_error(L); in _wrap_SBTarget_GetMaximumNumberOfChildrenToDisplay()
56031 static int _wrap_SBTarget_SetSectionLoadAddress(lua_State* L) { in _wrap_SBTarget_SetSectionLoadAddress() argument
56041 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetSectionLoadAddress",1,"lldb::SBTarget *… in _wrap_SBTarget_SetSectionLoadAddress()
56042 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::SetSectionLoadAddress",2,"lldb::SBSection"… in _wrap_SBTarget_SetSectionLoadAddress()
56043 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::SetSectionLoadAddress",3,"lldb::addr_t"); in _wrap_SBTarget_SetSectionLoadAddress()
56045 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_SetSectionLoadAddress()
56050 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBTarget_SetSectionLoadAddress()
56055 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBTarget_SetSectionLoadAddress()
56059 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_SetSectionLoadAddress()
56065 lua_error(L); in _wrap_SBTarget_SetSectionLoadAddress()
56070 static int _wrap_SBTarget_ClearSectionLoadAddress(lua_State* L) { in _wrap_SBTarget_ClearSectionLoadAddress() argument
56079 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ClearSectionLoadAddress",1,"lldb::SBTarget… in _wrap_SBTarget_ClearSectionLoadAddress()
56080 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ClearSectionLoadAddress",2,"lldb::SBSectio… in _wrap_SBTarget_ClearSectionLoadAddress()
56082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ClearSectionLoadAddress()
56087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBSection,0))){ in _wrap_SBTarget_ClearSectionLoadAddress()
56095 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_ClearSectionLoadAddress()
56101 lua_error(L); in _wrap_SBTarget_ClearSectionLoadAddress()
56106 static int _wrap_SBTarget_SetModuleLoadAddress(lua_State* L) { in _wrap_SBTarget_SetModuleLoadAddress() argument
56116 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetModuleLoadAddress",1,"lldb::SBTarget *"… in _wrap_SBTarget_SetModuleLoadAddress()
56117 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::SetModuleLoadAddress",2,"lldb::SBModule"); in _wrap_SBTarget_SetModuleLoadAddress()
56118 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::SetModuleLoadAddress",3,"uint64_t"); in _wrap_SBTarget_SetModuleLoadAddress()
56120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_SetModuleLoadAddress()
56125 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBTarget_SetModuleLoadAddress()
56130 arg3 = (uint64_t)lua_tointeger(L, 3); in _wrap_SBTarget_SetModuleLoadAddress()
56134 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_SetModuleLoadAddress()
56140 lua_error(L); in _wrap_SBTarget_SetModuleLoadAddress()
56145 static int _wrap_SBTarget_ClearModuleLoadAddress(lua_State* L) { in _wrap_SBTarget_ClearModuleLoadAddress() argument
56154 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ClearModuleLoadAddress",1,"lldb::SBTarget … in _wrap_SBTarget_ClearModuleLoadAddress()
56155 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ClearModuleLoadAddress",2,"lldb::SBModule"… in _wrap_SBTarget_ClearModuleLoadAddress()
56157 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ClearModuleLoadAddress()
56162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBTarget_ClearModuleLoadAddress()
56170 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_ClearModuleLoadAddress()
56176 lua_error(L); in _wrap_SBTarget_ClearModuleLoadAddress()
56181 static int _wrap_SBTarget_FindFunctions__SWIG_0(lua_State* L) { in _wrap_SBTarget_FindFunctions__SWIG_0() argument
56190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindFunctions__SWIG_0()
56191 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",2,"char const *"); in _wrap_SBTarget_FindFunctions__SWIG_0()
56192 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",3,"uint32_t"); in _wrap_SBTarget_FindFunctions__SWIG_0()
56194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindFunctions__SWIG_0()
56198 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindFunctions__SWIG_0()
56199 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_FindFunctions__SWIG_0()
56203 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBTarget_FindFunctions__SWIG_0()
56209 lua_error(L); in _wrap_SBTarget_FindFunctions__SWIG_0()
56214 static int _wrap_SBTarget_FindFunctions__SWIG_1(lua_State* L) { in _wrap_SBTarget_FindFunctions__SWIG_1() argument
56222 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindFunctions__SWIG_1()
56223 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFunctions",2,"char const *"); in _wrap_SBTarget_FindFunctions__SWIG_1()
56225 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindFunctions__SWIG_1()
56229 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindFunctions__SWIG_1()
56233 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBTarget_FindFunctions__SWIG_1()
56239 lua_error(L); in _wrap_SBTarget_FindFunctions__SWIG_1()
56244 static int _wrap_SBTarget_FindFunctions(lua_State* L) { in _wrap_SBTarget_FindFunctions() argument
56250 argc = lua_gettop(L); in _wrap_SBTarget_FindFunctions()
56255 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_FindFunctions()
56263 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_FindFunctions()
56266 return _wrap_SBTarget_FindFunctions__SWIG_1(L); in _wrap_SBTarget_FindFunctions()
56274 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_FindFunctions()
56282 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_FindFunctions()
56286 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_FindFunctions()
56289 return _wrap_SBTarget_FindFunctions__SWIG_0(L); in _wrap_SBTarget_FindFunctions()
56295 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_FindFunctions'\n" in _wrap_SBTarget_FindFunctions()
56299 lua_error(L);return 0; in _wrap_SBTarget_FindFunctions()
56303 static int _wrap_SBTarget_FindGlobalVariables__SWIG_0(lua_State* L) { in _wrap_SBTarget_FindGlobalVariables__SWIG_0() argument
56312 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56313 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",2,"char const *… in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56314 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",3,"uint32_t"); in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56316 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56320 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56321 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56325 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56331 lua_error(L); in _wrap_SBTarget_FindGlobalVariables__SWIG_0()
56336 static int _wrap_SBTarget_FindFirstGlobalVariable(lua_State* L) { in _wrap_SBTarget_FindFirstGlobalVariable() argument
56344 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFirstGlobalVariable",1,"lldb::SBTarget… in _wrap_SBTarget_FindFirstGlobalVariable()
56345 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFirstGlobalVariable",2,"char con… in _wrap_SBTarget_FindFirstGlobalVariable()
56347 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindFirstGlobalVariable()
56351 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindFirstGlobalVariable()
56355 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTarget_FindFirstGlobalVariable()
56361 lua_error(L); in _wrap_SBTarget_FindFirstGlobalVariable()
56366 static int _wrap_SBTarget_FindGlobalVariables__SWIG_1(lua_State* L) { in _wrap_SBTarget_FindGlobalVariables__SWIG_1() argument
56376 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56377 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",2,"char const *… in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56378 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",3,"uint32_t"); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56379 … if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::FindGlobalVariables",4,"lldb::MatchType"); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56381 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56385 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56386 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56387 arg4 = (lldb::MatchType)lua_tointeger(L, 4); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56391 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56397 lua_error(L); in _wrap_SBTarget_FindGlobalVariables__SWIG_1()
56402 static int _wrap_SBTarget_FindGlobalVariables(lua_State* L) { in _wrap_SBTarget_FindGlobalVariables() argument
56408 argc = lua_gettop(L); in _wrap_SBTarget_FindGlobalVariables()
56413 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_FindGlobalVariables()
56421 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_FindGlobalVariables()
56425 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_FindGlobalVariables()
56428 return _wrap_SBTarget_FindGlobalVariables__SWIG_0(L); in _wrap_SBTarget_FindGlobalVariables()
56437 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_FindGlobalVariables()
56445 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_FindGlobalVariables()
56449 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_FindGlobalVariables()
56453 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_FindGlobalVariables()
56456 return _wrap_SBTarget_FindGlobalVariables__SWIG_1(L); in _wrap_SBTarget_FindGlobalVariables()
56463 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_FindGlobalVariables'\n" in _wrap_SBTarget_FindGlobalVariables()
56467 lua_error(L);return 0; in _wrap_SBTarget_FindGlobalVariables()
56471 static int _wrap_SBTarget_FindGlobalFunctions(lua_State* L) { in _wrap_SBTarget_FindGlobalFunctions() argument
56481 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindGlobalFunctions()
56482 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",2,"char const *… in _wrap_SBTarget_FindGlobalFunctions()
56483 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",3,"uint32_t"); in _wrap_SBTarget_FindGlobalFunctions()
56484 … if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::FindGlobalFunctions",4,"lldb::MatchType"); in _wrap_SBTarget_FindGlobalFunctions()
56486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindGlobalFunctions()
56490 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindGlobalFunctions()
56491 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_FindGlobalFunctions()
56492 arg4 = (lldb::MatchType)lua_tointeger(L, 4); in _wrap_SBTarget_FindGlobalFunctions()
56496 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBTarget_FindGlobalFunctions()
56502 lua_error(L); in _wrap_SBTarget_FindGlobalFunctions()
56507 static int _wrap_SBTarget_Clear(lua_State* L) { in _wrap_SBTarget_Clear() argument
56513 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::Clear",1,"lldb::SBTarget *"); in _wrap_SBTarget_Clear()
56515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_Clear()
56525 lua_error(L); in _wrap_SBTarget_Clear()
56530 static int _wrap_SBTarget_ResolveFileAddress(lua_State* L) { in _wrap_SBTarget_ResolveFileAddress() argument
56538 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolveFileAddress",1,"lldb::SBTarget *"); in _wrap_SBTarget_ResolveFileAddress()
56539 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolveFileAddress",2,"lldb::addr_t"); in _wrap_SBTarget_ResolveFileAddress()
56541 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ResolveFileAddress()
56545 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBTarget_ResolveFileAddress()
56549 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBTarget_ResolveFileAddress()
56555 lua_error(L); in _wrap_SBTarget_ResolveFileAddress()
56560 static int _wrap_SBTarget_ResolveLoadAddress(lua_State* L) { in _wrap_SBTarget_ResolveLoadAddress() argument
56568 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolveLoadAddress",1,"lldb::SBTarget *"); in _wrap_SBTarget_ResolveLoadAddress()
56569 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolveLoadAddress",2,"lldb::addr_t"); in _wrap_SBTarget_ResolveLoadAddress()
56571 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ResolveLoadAddress()
56575 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBTarget_ResolveLoadAddress()
56579 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBTarget_ResolveLoadAddress()
56585 lua_error(L); in _wrap_SBTarget_ResolveLoadAddress()
56590 static int _wrap_SBTarget_ResolvePastLoadAddress(lua_State* L) { in _wrap_SBTarget_ResolvePastLoadAddress() argument
56599 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolvePastLoadAddress",1,"lldb::SBTarget … in _wrap_SBTarget_ResolvePastLoadAddress()
56600 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolvePastLoadAddress",2,"uint32_t"); in _wrap_SBTarget_ResolvePastLoadAddress()
56601 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ResolvePastLoadAddress",3,"lldb::addr_t"); in _wrap_SBTarget_ResolvePastLoadAddress()
56603 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ResolvePastLoadAddress()
56607 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTarget_ResolvePastLoadAddress()
56608 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBTarget_ResolvePastLoadAddress()
56612 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBTarget_ResolvePastLoadAddress()
56618 lua_error(L); in _wrap_SBTarget_ResolvePastLoadAddress()
56623 static int _wrap_SBTarget_ResolveSymbolContextForAddress(lua_State* L) { in _wrap_SBTarget_ResolveSymbolContextForAddress() argument
56632 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ResolveSymbolContextForAddress",1,"lldb::S… in _wrap_SBTarget_ResolveSymbolContextForAddress()
56633 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ResolveSymbolContextForAddress",2,"lldb::S… in _wrap_SBTarget_ResolveSymbolContextForAddress()
56634 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ResolveSymbolContextForAddress",3,"uint32_t… in _wrap_SBTarget_ResolveSymbolContextForAddress()
56636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ResolveSymbolContextForAddress()
56641 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_ResolveSymbolContextForAddress()
56645 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_ResolveSymbolContextForAddress()
56649 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContext,1); SWIG_arg++; in _wrap_SBTarget_ResolveSymbolContextForAddress()
56655 lua_error(L); in _wrap_SBTarget_ResolveSymbolContextForAddress()
56660 static int _wrap_SBTarget_ReadMemory(lua_State* L) { in _wrap_SBTarget_ReadMemory() argument
56672 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadMemory",1,"lldb::SBTarget *"); in _wrap_SBTarget_ReadMemory()
56673 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadMemory",2,"lldb::SBAddress const"); in _wrap_SBTarget_ReadMemory()
56674 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::ReadMemory",4,"lldb::SBError &"); in _wrap_SBTarget_ReadMemory()
56676 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ReadMemory()
56681 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_ReadMemory()
56687 arg4 = luaL_checkinteger(L, 3); in _wrap_SBTarget_ReadMemory()
56689 return luaL_error(L, "Positive integer expected"); in _wrap_SBTarget_ReadMemory()
56694 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_ReadMemory()
56699 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_ReadMemory()
56701 lua_pop(L, 1); // Blow away the previous result in _wrap_SBTarget_ReadMemory()
56703 lua_pushliteral(L, ""); in _wrap_SBTarget_ReadMemory()
56705 lua_pushlstring(L, (const char *)arg3, result); in _wrap_SBTarget_ReadMemory()
56714 lua_error(L); in _wrap_SBTarget_ReadMemory()
56719 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0() argument
56728 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56729 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"char … in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56730 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56736 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56737 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56741 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56747 lua_error(L); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0()
56752 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1() argument
56761 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56762 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56763 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56765 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56770 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56774 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56778 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56784 lua_error(L); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1()
56789 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2() argument
56799 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56800 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56801 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56802 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"lldb::addr_t… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56804 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56809 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56813 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56814 arg4 = (lldb::addr_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56818 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56824 lua_error(L); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2()
56829 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3() argument
56840 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56841 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56842 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56843 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"lldb::addr_t… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56844 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",5,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56846 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56851 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56855 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56856 arg4 = (lldb::addr_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56858 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56865 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56871 lua_error(L); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3()
56876 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4() argument
56888 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56889 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56890 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56891 … if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56892 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",5,"lldb::addr_t… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56893 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",6,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56895 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56904 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56905 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56906 arg5 = (lldb::addr_t)lua_tointeger(L, 5); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56908 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56915 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56921 lua_error(L); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4()
56926 static int _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5() argument
56939 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56940 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",2,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56941 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56942 … if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",4,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56943 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",5,"lldb::addr_t… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56944 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",6,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56945 if(!lua_isboolean(L,7)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByLocation",7,"bool"); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56947 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56956 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56957 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56958 arg5 = (lldb::addr_t)lua_tointeger(L, 5); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56964 arg7 = (lua_toboolean(L, 7)!=0); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56968 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56974 lua_error(L); in _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5()
56979 static int _wrap_SBTarget_BreakpointCreateByLocation(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByLocation() argument
56985 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointCreateByLocation()
56990 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
56999 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57007 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByLocation()
57010 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_1(L); in _wrap_SBTarget_BreakpointCreateByLocation()
57019 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57027 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByLocation()
57031 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByLocation()
57034 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_0(L); in _wrap_SBTarget_BreakpointCreateByLocation()
57043 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57052 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57060 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByLocation()
57064 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByLocation()
57067 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_2(L); in _wrap_SBTarget_BreakpointCreateByLocation()
57077 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57086 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57094 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByLocation()
57098 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByLocation()
57103 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57110 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_3(L); in _wrap_SBTarget_BreakpointCreateByLocation()
57121 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57130 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57138 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByLocation()
57142 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByLocation()
57146 _v = lua_isnumber(L,argv[4]); in _wrap_SBTarget_BreakpointCreateByLocation()
57151 …if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57158 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_4(L); in _wrap_SBTarget_BreakpointCreateByLocation()
57170 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57179 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57187 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByLocation()
57191 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByLocation()
57195 _v = lua_isnumber(L,argv[4]); in _wrap_SBTarget_BreakpointCreateByLocation()
57200 …if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByLocation()
57208 _v = lua_isboolean(L,argv[6]); in _wrap_SBTarget_BreakpointCreateByLocation()
57211 return _wrap_SBTarget_BreakpointCreateByLocation__SWIG_5(L); in _wrap_SBTarget_BreakpointCreateByLocation()
57221 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByLoca… in _wrap_SBTarget_BreakpointCreateByLocation()
57229 lua_error(L);return 0; in _wrap_SBTarget_BreakpointCreateByLocation()
57233 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByName__SWIG_0() argument
57242 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57243 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char cons… in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57244 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"char cons… in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57246 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57250 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57251 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57255 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57261 lua_error(L); in _wrap_SBTarget_BreakpointCreateByName__SWIG_0()
57266 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByName__SWIG_1() argument
57274 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointCreateByName__SWIG_1()
57275 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char cons… in _wrap_SBTarget_BreakpointCreateByName__SWIG_1()
57277 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_1()
57281 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByName__SWIG_1()
57285 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByName__SWIG_1()
57291 lua_error(L); in _wrap_SBTarget_BreakpointCreateByName__SWIG_1()
57296 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_2(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByName__SWIG_2() argument
57306 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57307 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char cons… in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57308 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57309 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",4,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57311 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57315 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57317 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57322 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57329 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57335 lua_error(L); in _wrap_SBTarget_BreakpointCreateByName__SWIG_2()
57340 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_3(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByName__SWIG_3() argument
57351 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57352 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char cons… in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57353 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57354 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",4,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57355 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",5,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57357 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57361 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57362 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57376 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57382 lua_error(L); in _wrap_SBTarget_BreakpointCreateByName__SWIG_3()
57387 static int _wrap_SBTarget_BreakpointCreateByName__SWIG_4(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByName__SWIG_4() argument
57399 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57400 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",2,"char cons… in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57401 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57402 …if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",4,"lldb::LanguageTy… in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57403 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",5,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57404 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByName",6,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57406 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57410 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57411 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57412 arg4 = (lldb::LanguageType)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57414 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57419 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57426 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57432 lua_error(L); in _wrap_SBTarget_BreakpointCreateByName__SWIG_4()
57437 static int _wrap_SBTarget_BreakpointCreateByName(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByName() argument
57443 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointCreateByName()
57448 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57456 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByName()
57459 return _wrap_SBTarget_BreakpointCreateByName__SWIG_1(L); in _wrap_SBTarget_BreakpointCreateByName()
57467 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57475 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByName()
57479 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByName()
57482 return _wrap_SBTarget_BreakpointCreateByName__SWIG_0(L); in _wrap_SBTarget_BreakpointCreateByName()
57491 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57499 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByName()
57504 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57513 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57520 return _wrap_SBTarget_BreakpointCreateByName__SWIG_2(L); in _wrap_SBTarget_BreakpointCreateByName()
57530 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57538 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByName()
57542 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByName()
57547 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57556 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57563 return _wrap_SBTarget_BreakpointCreateByName__SWIG_3(L); in _wrap_SBTarget_BreakpointCreateByName()
57574 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57582 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByName()
57586 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByName()
57590 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByName()
57595 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57604 …if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByName()
57611 return _wrap_SBTarget_BreakpointCreateByName__SWIG_4(L); in _wrap_SBTarget_BreakpointCreateByName()
57620 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByName… in _wrap_SBTarget_BreakpointCreateByName()
57627 lua_error(L);return 0; in _wrap_SBTarget_BreakpointCreateByName()
57631 static int _wrap_SBTarget_BreakpointCreateByNames__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0() argument
57643 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57644 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57645 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",4,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57646 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",5,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57647 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",6,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57654 if (lua_istable(L, 2)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57655 size_t size = lua_rawlen(L, 2); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57659 lua_rawgeti(L, 2, i); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57660 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57662 lua_pop(L, 1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57663 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57665 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57666 lua_pop(L, 1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57669 } else if (lua_isnil(L, 2)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57673 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57676 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57677 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57679 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57691 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57703 lua_error(L); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_0()
57708 static int _wrap_SBTarget_BreakpointCreateByNames__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1() argument
57721 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57722 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57723 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",4,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57724 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",5,"lldb::LanguageT… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57725 …if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",6,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57726 …if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",7,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57728 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57733 if (lua_istable(L, 2)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57734 size_t size = lua_rawlen(L, 2); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57738 lua_rawgeti(L, 2, i); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57739 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57741 lua_pop(L, 1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57742 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57744 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57745 lua_pop(L, 1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57748 } else if (lua_isnil(L, 2)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57752 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57755 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57756 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57757 arg5 = (lldb::LanguageType)lua_tointeger(L, 5); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57759 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57764 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57771 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57783 lua_error(L); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_1()
57788 static int _wrap_SBTarget_BreakpointCreateByNames__SWIG_2(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2() argument
57802 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57803 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",3,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57804 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",4,"uint32_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57805 …if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",5,"lldb::LanguageT… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57806 … if(!lua_isinteger(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",6,"lldb::addr_t"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57807 …if(!lua_isuserdata(L,7)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",7,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57808 …if(!lua_isuserdata(L,8)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByNames",8,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57810 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57815 if (lua_istable(L, 2)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57816 size_t size = lua_rawlen(L, 2); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57820 lua_rawgeti(L, 2, i); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57821 if (!lua_isstring(L, -1)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57823 lua_pop(L, 1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57824 return luaL_error(L, "List should only contain strings"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57826 arg2[j++] = (char *)lua_tostring(L, -1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57827 lua_pop(L, 1); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57830 } else if (lua_isnil(L, 2)) { in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57834 return luaL_error(L, "A list of strings expected"); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57837 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57838 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57839 arg5 = (lldb::LanguageType)lua_tointeger(L, 5); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57840 arg6 = (lldb::addr_t)lua_tointeger(L, 6); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,7,(void**)&arg7,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57847 if (!SWIG_IsOK(SWIG_ConvertPtr(L,8,(void**)&arg8,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57854 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57866 lua_error(L); in _wrap_SBTarget_BreakpointCreateByNames__SWIG_2()
57871 static int _wrap_SBTarget_BreakpointCreateByNames(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByNames() argument
57877 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointCreateByNames()
57882 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57890 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1])); in _wrap_SBTarget_BreakpointCreateByNames()
57894 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByNames()
57898 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByNames()
57903 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57912 …if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57919 return _wrap_SBTarget_BreakpointCreateByNames__SWIG_0(L); in _wrap_SBTarget_BreakpointCreateByNames()
57931 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57939 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1])); in _wrap_SBTarget_BreakpointCreateByNames()
57943 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByNames()
57947 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByNames()
57951 _v = lua_isnumber(L,argv[4]); in _wrap_SBTarget_BreakpointCreateByNames()
57956 …if (lua_isuserdata(L,argv[5])==0 || SWIG_ConvertPtr(L,argv[5], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57965 …if (lua_isuserdata(L,argv[6])==0 || SWIG_ConvertPtr(L,argv[6], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57972 return _wrap_SBTarget_BreakpointCreateByNames__SWIG_1(L); in _wrap_SBTarget_BreakpointCreateByNames()
57985 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
57993 _v = (lua_istable(L, argv[1]) || lua_isnil(L, argv[1])); in _wrap_SBTarget_BreakpointCreateByNames()
57997 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByNames()
58001 _v = lua_isnumber(L,argv[3]); in _wrap_SBTarget_BreakpointCreateByNames()
58005 _v = lua_isnumber(L,argv[4]); in _wrap_SBTarget_BreakpointCreateByNames()
58009 _v = lua_isnumber(L,argv[5]); in _wrap_SBTarget_BreakpointCreateByNames()
58014 …if (lua_isuserdata(L,argv[6])==0 || SWIG_ConvertPtr(L,argv[6], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
58023 …if (lua_isuserdata(L,argv[7])==0 || SWIG_ConvertPtr(L,argv[7], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByNames()
58030 return _wrap_SBTarget_BreakpointCreateByNames__SWIG_2(L); in _wrap_SBTarget_BreakpointCreateByNames()
58041 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByName… in _wrap_SBTarget_BreakpointCreateByNames()
58046 lua_error(L);return 0; in _wrap_SBTarget_BreakpointCreateByNames()
58050 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0() argument
58059 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58060 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char con… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58061 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",3,"char con… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58063 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58067 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58068 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58072 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58078 lua_error(L); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0()
58083 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1() argument
58091 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1()
58092 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char con… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1()
58094 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1()
58098 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1()
58102 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1()
58108 lua_error(L); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1()
58113 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2() argument
58123 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58124 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char con… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58125 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",3,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58126 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",4,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58128 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58132 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58152 lua_error(L); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2()
58157 static int _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3() argument
58168 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",1,"lldb::SBTarget… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58169 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",2,"char con… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58170 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",3,"lldb::LanguageT… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58171 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",4,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58172 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByRegex",5,"lldb::SBFileSp… in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58178 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58179 arg3 = (lldb::LanguageType)lua_tointeger(L, 3); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58181 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58186 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58193 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58199 lua_error(L); in _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3()
58204 static int _wrap_SBTarget_BreakpointCreateByRegex(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByRegex() argument
58210 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointCreateByRegex()
58215 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58223 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByRegex()
58226 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_1(L); in _wrap_SBTarget_BreakpointCreateByRegex()
58234 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58242 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByRegex()
58246 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByRegex()
58249 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_0(L); in _wrap_SBTarget_BreakpointCreateByRegex()
58258 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58266 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByRegex()
58271 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58280 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58287 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_2(L); in _wrap_SBTarget_BreakpointCreateByRegex()
58297 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58305 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateByRegex()
58309 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_BreakpointCreateByRegex()
58314 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58323 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateByRegex()
58330 return _wrap_SBTarget_BreakpointCreateByRegex__SWIG_3(L); in _wrap_SBTarget_BreakpointCreateByRegex()
58338 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateByRege… in _wrap_SBTarget_BreakpointCreateByRegex()
58344 lua_error(L);return 0; in _wrap_SBTarget_BreakpointCreateByRegex()
58348 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0() argument
58358 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58359 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"ch… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58360 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58361 …if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",4,"ch… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58363 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58367 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58373 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58377 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58383 lua_error(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0()
58388 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1() argument
58397 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58398 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"ch… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58399 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58401 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58405 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58414 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58420 lua_error(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1()
58425 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2(lua_State* L) { in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2() argument
58435 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58436 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"ch… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58437 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58438 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",4,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58444 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58446 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58451 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58458 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58464 lua_error(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2()
58469 static int _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3(lua_State* L) { in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3() argument
58480 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",1,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58481 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",2,"ch… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58482 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",3,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58483 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",4,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58484 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySourceRegex",5,"lldb::SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58486 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58490 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58492 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58497 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58502 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58509 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58515 lua_error(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3()
58520 static int _wrap_SBTarget_BreakpointCreateBySourceRegex(lua_State* L) { in _wrap_SBTarget_BreakpointCreateBySourceRegex() argument
58526 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58531 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58539 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58544 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58551 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_1(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58560 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58568 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58573 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58581 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58584 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_0(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58594 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58602 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58607 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58616 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58623 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_2(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58633 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58641 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58646 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58655 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58664 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58671 return _wrap_SBTarget_BreakpointCreateBySourceRegex__SWIG_3(L); in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58679 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateBySour… in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58685 lua_error(L);return 0; in _wrap_SBTarget_BreakpointCreateBySourceRegex()
58689 static int _wrap_SBTarget_BreakpointCreateForException(lua_State* L) { in _wrap_SBTarget_BreakpointCreateForException() argument
58699 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",1,"lldb::SBT… in _wrap_SBTarget_BreakpointCreateForException()
58700 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",2,"lldb::Lang… in _wrap_SBTarget_BreakpointCreateForException()
58701 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",3,"bool"); in _wrap_SBTarget_BreakpointCreateForException()
58702 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateForException",4,"bool"); in _wrap_SBTarget_BreakpointCreateForException()
58704 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateForException()
58708 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBTarget_BreakpointCreateForException()
58709 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBTarget_BreakpointCreateForException()
58710 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBTarget_BreakpointCreateForException()
58714 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateForException()
58720 lua_error(L); in _wrap_SBTarget_BreakpointCreateForException()
58725 static int _wrap_SBTarget_BreakpointCreateByAddress(lua_State* L) { in _wrap_SBTarget_BreakpointCreateByAddress() argument
58733 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByAddress",1,"lldb::SBTarg… in _wrap_SBTarget_BreakpointCreateByAddress()
58734 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateByAddress",2,"lldb::addr_t"… in _wrap_SBTarget_BreakpointCreateByAddress()
58736 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateByAddress()
58740 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBTarget_BreakpointCreateByAddress()
58744 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateByAddress()
58750 lua_error(L); in _wrap_SBTarget_BreakpointCreateByAddress()
58755 static int _wrap_SBTarget_BreakpointCreateBySBAddress(lua_State* L) { in _wrap_SBTarget_BreakpointCreateBySBAddress() argument
58763 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySBAddress",1,"lldb::SBTa… in _wrap_SBTarget_BreakpointCreateBySBAddress()
58764 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateBySBAddress",2,"lldb::SBAd… in _wrap_SBTarget_BreakpointCreateBySBAddress()
58766 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateBySBAddress()
58771 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_BreakpointCreateBySBAddress()
58778 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateBySBAddress()
58784 lua_error(L); in _wrap_SBTarget_BreakpointCreateBySBAddress()
58789 static int _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0() argument
58801 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58802 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",2,"char … in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58803 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",3,"lldb::SBStr… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58804 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",4,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58805 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",5,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58806 if(!lua_isboolean(L,6)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",6,"bool"); in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58808 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58812 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58814 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58824 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58828 arg6 = (lua_toboolean(L, 6)!=0); in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58832 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58838 lua_error(L); in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0()
58843 static int _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1() argument
58854 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",1,"lldb::SBTar… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58855 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",2,"char … in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58856 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",3,"lldb::SBStr… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58857 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",4,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58858 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::BreakpointCreateFromScript",5,"lldb::SBFil… in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58864 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58871 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58876 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBFileSpecList,0))){ in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58883 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58889 lua_error(L); in _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1()
58894 static int _wrap_SBTarget_BreakpointCreateFromScript(lua_State* L) { in _wrap_SBTarget_BreakpointCreateFromScript() argument
58900 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointCreateFromScript()
58905 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58913 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateFromScript()
58918 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58927 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58936 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58943 return _wrap_SBTarget_BreakpointCreateFromScript__SWIG_1(L); in _wrap_SBTarget_BreakpointCreateFromScript()
58954 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58962 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_BreakpointCreateFromScript()
58967 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58976 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58985 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointCreateFromScript()
58993 _v = lua_isboolean(L,argv[5]); in _wrap_SBTarget_BreakpointCreateFromScript()
58996 return _wrap_SBTarget_BreakpointCreateFromScript__SWIG_0(L); in _wrap_SBTarget_BreakpointCreateFromScript()
59005 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointCreateFromSc… in _wrap_SBTarget_BreakpointCreateFromScript()
59009 lua_error(L);return 0; in _wrap_SBTarget_BreakpointCreateFromScript()
59013 static int _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0() argument
59022 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",1,"lldb::SBTarg… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59023 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",2,"lldb::SBFile… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59024 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",3,"lldb::SBBrea… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59026 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59031 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59036 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59043 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59049 lua_error(L); in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0()
59054 static int _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1() argument
59064 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",1,"lldb::SBTarg… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59065 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",2,"lldb::SBFile… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59066 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",3,"lldb::SBStri… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59067 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointsCreateFromFile",4,"lldb::SBBrea… in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59069 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59084 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59091 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59097 lua_error(L); in _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1()
59102 static int _wrap_SBTarget_BreakpointsCreateFromFile(lua_State* L) { in _wrap_SBTarget_BreakpointsCreateFromFile() argument
59108 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointsCreateFromFile()
59113 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59122 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59131 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59138 return _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_0(L); in _wrap_SBTarget_BreakpointsCreateFromFile()
59147 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59156 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59165 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59174 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsCreateFromFile()
59181 return _wrap_SBTarget_BreakpointsCreateFromFile__SWIG_1(L); in _wrap_SBTarget_BreakpointsCreateFromFile()
59188 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointsCreateFromF… in _wrap_SBTarget_BreakpointsCreateFromFile()
59192 lua_error(L);return 0; in _wrap_SBTarget_BreakpointsCreateFromFile()
59196 static int _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0(lua_State* L) { in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0() argument
59204 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0()
59205 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",2,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0()
59207 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0()
59212 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0()
59219 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0()
59225 lua_error(L); in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0()
59230 static int _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1(lua_State* L) { in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1() argument
59240 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59241 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",2,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59242 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",3,"lldb::SBBreakpo… in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59243 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",4,"bool"); in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59245 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59250 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59255 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59259 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59263 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59269 lua_error(L); in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1()
59274 static int _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2(lua_State* L) { in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2() argument
59283 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",1,"lldb::SBTarget … in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59284 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",2,"lldb::SBFileSpe… in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59285 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::BreakpointsWriteToFile",3,"lldb::SBBreakpo… in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59287 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59297 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59304 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59310 lua_error(L); in _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2()
59315 static int _wrap_SBTarget_BreakpointsWriteToFile(lua_State* L) { in _wrap_SBTarget_BreakpointsWriteToFile() argument
59321 argc = lua_gettop(L); in _wrap_SBTarget_BreakpointsWriteToFile()
59326 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59335 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59342 return _wrap_SBTarget_BreakpointsWriteToFile__SWIG_0(L); in _wrap_SBTarget_BreakpointsWriteToFile()
59350 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59359 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59368 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59375 return _wrap_SBTarget_BreakpointsWriteToFile__SWIG_2(L); in _wrap_SBTarget_BreakpointsWriteToFile()
59384 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59393 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59402 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_BreakpointsWriteToFile()
59410 _v = lua_isboolean(L,argv[3]); in _wrap_SBTarget_BreakpointsWriteToFile()
59413 return _wrap_SBTarget_BreakpointsWriteToFile__SWIG_1(L); in _wrap_SBTarget_BreakpointsWriteToFile()
59420 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_BreakpointsWriteToFile… in _wrap_SBTarget_BreakpointsWriteToFile()
59425 lua_error(L);return 0; in _wrap_SBTarget_BreakpointsWriteToFile()
59429 static int _wrap_SBTarget_GetNumBreakpoints(lua_State* L) { in _wrap_SBTarget_GetNumBreakpoints() argument
59436 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumBreakpoints",1,"lldb::SBTarget const… in _wrap_SBTarget_GetNumBreakpoints()
59438 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetNumBreakpoints()
59443 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetNumBreakpoints()
59448 lua_error(L); in _wrap_SBTarget_GetNumBreakpoints()
59453 static int _wrap_SBTarget_GetBreakpointAtIndex(lua_State* L) { in _wrap_SBTarget_GetBreakpointAtIndex() argument
59461 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointAtIndex",1,"lldb::SBTarget co… in _wrap_SBTarget_GetBreakpointAtIndex()
59462 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointAtIndex",2,"uint32_t"); in _wrap_SBTarget_GetBreakpointAtIndex()
59464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetBreakpointAtIndex()
59468 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTarget_GetBreakpointAtIndex()
59472 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_GetBreakpointAtIndex()
59478 lua_error(L); in _wrap_SBTarget_GetBreakpointAtIndex()
59483 static int _wrap_SBTarget_BreakpointDelete(lua_State* L) { in _wrap_SBTarget_BreakpointDelete() argument
59491 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::BreakpointDelete",1,"lldb::SBTarget *"); in _wrap_SBTarget_BreakpointDelete()
59492 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::BreakpointDelete",2,"lldb::break_id_t"); in _wrap_SBTarget_BreakpointDelete()
59494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_BreakpointDelete()
59498 arg2 = (lldb::break_id_t)lua_tointeger(L, 2); in _wrap_SBTarget_BreakpointDelete()
59500 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_BreakpointDelete()
59505 lua_error(L); in _wrap_SBTarget_BreakpointDelete()
59510 static int _wrap_SBTarget_FindBreakpointByID(lua_State* L) { in _wrap_SBTarget_FindBreakpointByID() argument
59518 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointByID",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindBreakpointByID()
59519 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointByID",2,"lldb::break_id_t"); in _wrap_SBTarget_FindBreakpointByID()
59521 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindBreakpointByID()
59525 arg2 = (lldb::break_id_t)lua_tointeger(L, 2); in _wrap_SBTarget_FindBreakpointByID()
59529 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBreakpoint,1); SWIG_arg++; in _wrap_SBTarget_FindBreakpointByID()
59535 lua_error(L); in _wrap_SBTarget_FindBreakpointByID()
59540 static int _wrap_SBTarget_FindBreakpointsByName(lua_State* L) { in _wrap_SBTarget_FindBreakpointsByName() argument
59549 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointsByName",1,"lldb::SBTarget *… in _wrap_SBTarget_FindBreakpointsByName()
59550 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointsByName",2,"char const… in _wrap_SBTarget_FindBreakpointsByName()
59551 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::FindBreakpointsByName",3,"lldb::SBBreakpoi… in _wrap_SBTarget_FindBreakpointsByName()
59553 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindBreakpointsByName()
59557 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindBreakpointsByName()
59559 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBBreakpointList,0))){ in _wrap_SBTarget_FindBreakpointsByName()
59564 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_FindBreakpointsByName()
59569 lua_error(L); in _wrap_SBTarget_FindBreakpointsByName()
59574 static int _wrap_SBTarget_GetBreakpointNames(lua_State* L) { in _wrap_SBTarget_GetBreakpointNames() argument
59581 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointNames",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetBreakpointNames()
59582 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetBreakpointNames",2,"lldb::SBStringList … in _wrap_SBTarget_GetBreakpointNames()
59584 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetBreakpointNames()
59589 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStringList,0))){ in _wrap_SBTarget_GetBreakpointNames()
59599 lua_error(L); in _wrap_SBTarget_GetBreakpointNames()
59604 static int _wrap_SBTarget_DeleteBreakpointName(lua_State* L) { in _wrap_SBTarget_DeleteBreakpointName() argument
59611 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteBreakpointName",1,"lldb::SBTarget *"… in _wrap_SBTarget_DeleteBreakpointName()
59612 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::DeleteBreakpointName",2,"char const … in _wrap_SBTarget_DeleteBreakpointName()
59614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_DeleteBreakpointName()
59618 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_DeleteBreakpointName()
59625 lua_error(L); in _wrap_SBTarget_DeleteBreakpointName()
59630 static int _wrap_SBTarget_EnableAllBreakpoints(lua_State* L) { in _wrap_SBTarget_EnableAllBreakpoints() argument
59637 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EnableAllBreakpoints",1,"lldb::SBTarget *"… in _wrap_SBTarget_EnableAllBreakpoints()
59639 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_EnableAllBreakpoints()
59644 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_EnableAllBreakpoints()
59649 lua_error(L); in _wrap_SBTarget_EnableAllBreakpoints()
59654 static int _wrap_SBTarget_DisableAllBreakpoints(lua_State* L) { in _wrap_SBTarget_DisableAllBreakpoints() argument
59661 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DisableAllBreakpoints",1,"lldb::SBTarget *… in _wrap_SBTarget_DisableAllBreakpoints()
59663 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_DisableAllBreakpoints()
59668 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_DisableAllBreakpoints()
59673 lua_error(L); in _wrap_SBTarget_DisableAllBreakpoints()
59678 static int _wrap_SBTarget_DeleteAllBreakpoints(lua_State* L) { in _wrap_SBTarget_DeleteAllBreakpoints() argument
59685 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteAllBreakpoints",1,"lldb::SBTarget *"… in _wrap_SBTarget_DeleteAllBreakpoints()
59687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_DeleteAllBreakpoints()
59692 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_DeleteAllBreakpoints()
59697 lua_error(L); in _wrap_SBTarget_DeleteAllBreakpoints()
59702 static int _wrap_SBTarget_GetNumWatchpoints(lua_State* L) { in _wrap_SBTarget_GetNumWatchpoints() argument
59709 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetNumWatchpoints",1,"lldb::SBTarget const… in _wrap_SBTarget_GetNumWatchpoints()
59711 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetNumWatchpoints()
59716 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetNumWatchpoints()
59721 lua_error(L); in _wrap_SBTarget_GetNumWatchpoints()
59726 static int _wrap_SBTarget_GetWatchpointAtIndex(lua_State* L) { in _wrap_SBTarget_GetWatchpointAtIndex() argument
59734 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetWatchpointAtIndex",1,"lldb::SBTarget co… in _wrap_SBTarget_GetWatchpointAtIndex()
59735 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetWatchpointAtIndex",2,"uint32_t"); in _wrap_SBTarget_GetWatchpointAtIndex()
59737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetWatchpointAtIndex()
59741 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTarget_GetWatchpointAtIndex()
59745 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBTarget_GetWatchpointAtIndex()
59751 lua_error(L); in _wrap_SBTarget_GetWatchpointAtIndex()
59756 static int _wrap_SBTarget_DeleteWatchpoint(lua_State* L) { in _wrap_SBTarget_DeleteWatchpoint() argument
59764 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteWatchpoint",1,"lldb::SBTarget *"); in _wrap_SBTarget_DeleteWatchpoint()
59765 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::DeleteWatchpoint",2,"lldb::watch_id_t"); in _wrap_SBTarget_DeleteWatchpoint()
59767 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_DeleteWatchpoint()
59771 arg2 = (lldb::watch_id_t)lua_tointeger(L, 2); in _wrap_SBTarget_DeleteWatchpoint()
59773 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_DeleteWatchpoint()
59778 lua_error(L); in _wrap_SBTarget_DeleteWatchpoint()
59783 static int _wrap_SBTarget_FindWatchpointByID(lua_State* L) { in _wrap_SBTarget_FindWatchpointByID() argument
59791 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindWatchpointByID",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindWatchpointByID()
59792 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::FindWatchpointByID",2,"lldb::watch_id_t"); in _wrap_SBTarget_FindWatchpointByID()
59794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindWatchpointByID()
59798 arg2 = (lldb::watch_id_t)lua_tointeger(L, 2); in _wrap_SBTarget_FindWatchpointByID()
59802 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBTarget_FindWatchpointByID()
59808 lua_error(L); in _wrap_SBTarget_FindWatchpointByID()
59813 static int _wrap_SBTarget_WatchAddress(lua_State* L) { in _wrap_SBTarget_WatchAddress() argument
59825 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",1,"lldb::SBTarget *"); in _wrap_SBTarget_WatchAddress()
59826 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",2,"lldb::addr_t"); in _wrap_SBTarget_WatchAddress()
59827 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",3,"size_t"); in _wrap_SBTarget_WatchAddress()
59828 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",4,"bool"); in _wrap_SBTarget_WatchAddress()
59829 if(!lua_isboolean(L,5)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",5,"bool"); in _wrap_SBTarget_WatchAddress()
59830 if(!lua_isuserdata(L,6)) SWIG_fail_arg("lldb::SBTarget::WatchAddress",6,"lldb::SBError &"); in _wrap_SBTarget_WatchAddress()
59832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_WatchAddress()
59836 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBTarget_WatchAddress()
59837 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBTarget_WatchAddress()
59838 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBTarget_WatchAddress()
59839 arg5 = (lua_toboolean(L, 5)!=0); in _wrap_SBTarget_WatchAddress()
59841 if (!SWIG_IsOK(SWIG_ConvertPtr(L,6,(void**)&arg6,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_WatchAddress()
59848 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBTarget_WatchAddress()
59854 lua_error(L); in _wrap_SBTarget_WatchAddress()
59859 static int _wrap_SBTarget_WatchpointCreateByAddress(lua_State* L) { in _wrap_SBTarget_WatchpointCreateByAddress() argument
59871 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",1,"lldb::SBTarg… in _wrap_SBTarget_WatchpointCreateByAddress()
59872 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",2,"lldb::addr_t"… in _wrap_SBTarget_WatchpointCreateByAddress()
59873 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",3,"size_t"); in _wrap_SBTarget_WatchpointCreateByAddress()
59874 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",4,"lldb::SBWatc… in _wrap_SBTarget_WatchpointCreateByAddress()
59875 …if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBTarget::WatchpointCreateByAddress",5,"lldb::SBErro… in _wrap_SBTarget_WatchpointCreateByAddress()
59877 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_WatchpointCreateByAddress()
59881 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBTarget_WatchpointCreateByAddress()
59882 arg3 = (size_t)lua_tointeger(L, 3); in _wrap_SBTarget_WatchpointCreateByAddress()
59884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){ in _wrap_SBTarget_WatchpointCreateByAddress()
59890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_WatchpointCreateByAddress()
59897 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBTarget_WatchpointCreateByAddress()
59903 lua_error(L); in _wrap_SBTarget_WatchpointCreateByAddress()
59908 static int _wrap_SBTarget_EnableAllWatchpoints(lua_State* L) { in _wrap_SBTarget_EnableAllWatchpoints() argument
59915 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EnableAllWatchpoints",1,"lldb::SBTarget *"… in _wrap_SBTarget_EnableAllWatchpoints()
59917 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_EnableAllWatchpoints()
59922 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_EnableAllWatchpoints()
59927 lua_error(L); in _wrap_SBTarget_EnableAllWatchpoints()
59932 static int _wrap_SBTarget_DisableAllWatchpoints(lua_State* L) { in _wrap_SBTarget_DisableAllWatchpoints() argument
59939 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DisableAllWatchpoints",1,"lldb::SBTarget *… in _wrap_SBTarget_DisableAllWatchpoints()
59941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_DisableAllWatchpoints()
59946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_DisableAllWatchpoints()
59951 lua_error(L); in _wrap_SBTarget_DisableAllWatchpoints()
59956 static int _wrap_SBTarget_DeleteAllWatchpoints(lua_State* L) { in _wrap_SBTarget_DeleteAllWatchpoints() argument
59963 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::DeleteAllWatchpoints",1,"lldb::SBTarget *"… in _wrap_SBTarget_DeleteAllWatchpoints()
59965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_DeleteAllWatchpoints()
59970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_DeleteAllWatchpoints()
59975 lua_error(L); in _wrap_SBTarget_DeleteAllWatchpoints()
59980 static int _wrap_SBTarget_GetBroadcaster(lua_State* L) { in _wrap_SBTarget_GetBroadcaster() argument
59987 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBroadcaster",1,"lldb::SBTarget const *"… in _wrap_SBTarget_GetBroadcaster()
59989 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetBroadcaster()
59996 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBBroadcaster,1); SWIG_arg++; in _wrap_SBTarget_GetBroadcaster()
60002 lua_error(L); in _wrap_SBTarget_GetBroadcaster()
60007 static int _wrap_SBTarget_FindFirstType(lua_State* L) { in _wrap_SBTarget_FindFirstType() argument
60015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindFirstType",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindFirstType()
60016 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindFirstType",2,"char const *"); in _wrap_SBTarget_FindFirstType()
60018 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindFirstType()
60022 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindFirstType()
60026 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTarget_FindFirstType()
60032 lua_error(L); in _wrap_SBTarget_FindFirstType()
60037 static int _wrap_SBTarget_FindTypes(lua_State* L) { in _wrap_SBTarget_FindTypes() argument
60045 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindTypes",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindTypes()
60046 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindTypes",2,"char const *"); in _wrap_SBTarget_FindTypes()
60048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindTypes()
60052 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindTypes()
60056 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBTarget_FindTypes()
60062 lua_error(L); in _wrap_SBTarget_FindTypes()
60067 static int _wrap_SBTarget_GetBasicType(lua_State* L) { in _wrap_SBTarget_GetBasicType() argument
60075 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetBasicType",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetBasicType()
60076 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTarget::GetBasicType",2,"lldb::BasicType"); in _wrap_SBTarget_GetBasicType()
60078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetBasicType()
60082 arg2 = (lldb::BasicType)lua_tointeger(L, 2); in _wrap_SBTarget_GetBasicType()
60086 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTarget_GetBasicType()
60092 lua_error(L); in _wrap_SBTarget_GetBasicType()
60097 static int _wrap_SBTarget_CreateValueFromAddress(lua_State* L) { in _wrap_SBTarget_CreateValueFromAddress() argument
60109 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",1,"lldb::SBTarget … in _wrap_SBTarget_CreateValueFromAddress()
60110 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",2,"char cons… in _wrap_SBTarget_CreateValueFromAddress()
60111 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",3,"lldb::SBAddress… in _wrap_SBTarget_CreateValueFromAddress()
60112 … if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromAddress",4,"lldb::SBType"); in _wrap_SBTarget_CreateValueFromAddress()
60114 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_CreateValueFromAddress()
60118 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_CreateValueFromAddress()
60120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_CreateValueFromAddress()
60126 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBTarget_CreateValueFromAddress()
60134 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTarget_CreateValueFromAddress()
60140 lua_error(L); in _wrap_SBTarget_CreateValueFromAddress()
60145 static int _wrap_SBTarget_CreateValueFromData(lua_State* L) { in _wrap_SBTarget_CreateValueFromData() argument
60157 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",1,"lldb::SBTarget *"); in _wrap_SBTarget_CreateValueFromData()
60158 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",2,"char const *… in _wrap_SBTarget_CreateValueFromData()
60159 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",3,"lldb::SBData"); in _wrap_SBTarget_CreateValueFromData()
60160 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromData",4,"lldb::SBType"); in _wrap_SBTarget_CreateValueFromData()
60162 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_CreateValueFromData()
60166 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_CreateValueFromData()
60168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBTarget_CreateValueFromData()
60174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBTarget_CreateValueFromData()
60182 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTarget_CreateValueFromData()
60188 lua_error(L); in _wrap_SBTarget_CreateValueFromData()
60193 static int _wrap_SBTarget_CreateValueFromExpression(lua_State* L) { in _wrap_SBTarget_CreateValueFromExpression() argument
60202 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromExpression",1,"lldb::SBTarg… in _wrap_SBTarget_CreateValueFromExpression()
60203 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromExpression",2,"char c… in _wrap_SBTarget_CreateValueFromExpression()
60204 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::CreateValueFromExpression",3,"char c… in _wrap_SBTarget_CreateValueFromExpression()
60206 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_CreateValueFromExpression()
60210 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_CreateValueFromExpression()
60211 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_CreateValueFromExpression()
60215 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTarget_CreateValueFromExpression()
60221 lua_error(L); in _wrap_SBTarget_CreateValueFromExpression()
60226 static int _wrap_SBTarget_GetSourceManager(lua_State* L) { in _wrap_SBTarget_GetSourceManager() argument
60233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetSourceManager",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetSourceManager()
60235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetSourceManager()
60242 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSourceManager,1); SWIG_arg++; in _wrap_SBTarget_GetSourceManager()
60248 lua_error(L); in _wrap_SBTarget_GetSourceManager()
60253 static int _wrap_SBTarget_ReadInstructions__SWIG_0(lua_State* L) { in _wrap_SBTarget_ReadInstructions__SWIG_0() argument
60263 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",1,"lldb::SBTarget *"); in _wrap_SBTarget_ReadInstructions__SWIG_0()
60264 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",2,"lldb::SBAddress"); in _wrap_SBTarget_ReadInstructions__SWIG_0()
60265 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",3,"uint32_t"); in _wrap_SBTarget_ReadInstructions__SWIG_0()
60267 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_0()
60272 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_0()
60277 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_ReadInstructions__SWIG_0()
60281 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBTarget_ReadInstructions__SWIG_0()
60287 lua_error(L); in _wrap_SBTarget_ReadInstructions__SWIG_0()
60292 static int _wrap_SBTarget_ReadInstructions__SWIG_1(lua_State* L) { in _wrap_SBTarget_ReadInstructions__SWIG_1() argument
60303 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",1,"lldb::SBTarget *"); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60304 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",2,"lldb::SBAddress"); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60305 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",3,"uint32_t"); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60306 … if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",4,"char const *"); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_1()
60313 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_1()
60318 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60319 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60323 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBTarget_ReadInstructions__SWIG_1()
60329 lua_error(L); in _wrap_SBTarget_ReadInstructions__SWIG_1()
60334 static int _wrap_SBTarget_ReadInstructions__SWIG_2(lua_State* L) { in _wrap_SBTarget_ReadInstructions__SWIG_2() argument
60346 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",1,"lldb::SBTarget *"); in _wrap_SBTarget_ReadInstructions__SWIG_2()
60347 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",2,"lldb::SBAddress"); in _wrap_SBTarget_ReadInstructions__SWIG_2()
60348 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",3,"lldb::SBAddress"); in _wrap_SBTarget_ReadInstructions__SWIG_2()
60349 … if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBTarget::ReadInstructions",4,"char const *"); in _wrap_SBTarget_ReadInstructions__SWIG_2()
60351 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_2()
60356 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_2()
60362 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_ReadInstructions__SWIG_2()
60367 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBTarget_ReadInstructions__SWIG_2()
60371 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBTarget_ReadInstructions__SWIG_2()
60377 lua_error(L); in _wrap_SBTarget_ReadInstructions__SWIG_2()
60382 static int _wrap_SBTarget_ReadInstructions(lua_State* L) { in _wrap_SBTarget_ReadInstructions() argument
60388 argc = lua_gettop(L); in _wrap_SBTarget_ReadInstructions()
60393 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60402 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60410 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_ReadInstructions()
60413 return _wrap_SBTarget_ReadInstructions__SWIG_0(L); in _wrap_SBTarget_ReadInstructions()
60422 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60431 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60440 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60448 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBTarget_ReadInstructions()
60451 return _wrap_SBTarget_ReadInstructions__SWIG_2(L); in _wrap_SBTarget_ReadInstructions()
60461 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60470 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_ReadInstructions()
60478 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_ReadInstructions()
60482 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBTarget_ReadInstructions()
60485 return _wrap_SBTarget_ReadInstructions__SWIG_1(L); in _wrap_SBTarget_ReadInstructions()
60492 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_ReadInstructions'\n" in _wrap_SBTarget_ReadInstructions()
60497 lua_error(L);return 0; in _wrap_SBTarget_ReadInstructions()
60501 static int _wrap_SBTarget_GetInstructions(lua_State* L) { in _wrap_SBTarget_GetInstructions() argument
60512 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetInstructions",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetInstructions()
60513 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetInstructions",2,"lldb::SBAddress"); in _wrap_SBTarget_GetInstructions()
60515 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetInstructions()
60520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_GetInstructions()
60526 arg3 = (void *)luaL_checklstring(L, 3, &arg4); in _wrap_SBTarget_GetInstructions()
60531 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBTarget_GetInstructions()
60537 lua_error(L); in _wrap_SBTarget_GetInstructions()
60542 static int _wrap_SBTarget_GetInstructionsWithFlavor(lua_State* L) { in _wrap_SBTarget_GetInstructionsWithFlavor() argument
60554 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetInstructionsWithFlavor",1,"lldb::SBTarg… in _wrap_SBTarget_GetInstructionsWithFlavor()
60555 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetInstructionsWithFlavor",2,"lldb::SBAddr… in _wrap_SBTarget_GetInstructionsWithFlavor()
60556 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTarget::GetInstructionsWithFlavor",3,"char c… in _wrap_SBTarget_GetInstructionsWithFlavor()
60558 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetInstructionsWithFlavor()
60563 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBTarget_GetInstructionsWithFlavor()
60568 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTarget_GetInstructionsWithFlavor()
60570 arg4 = (void *)luaL_checklstring(L, 4, &arg5); in _wrap_SBTarget_GetInstructionsWithFlavor()
60575 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBInstructionList,1); SWIG_arg++; in _wrap_SBTarget_GetInstructionsWithFlavor()
60581 lua_error(L); in _wrap_SBTarget_GetInstructionsWithFlavor()
60586 static int _wrap_SBTarget_FindSymbols__SWIG_0(lua_State* L) { in _wrap_SBTarget_FindSymbols__SWIG_0() argument
60595 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindSymbols__SWIG_0()
60596 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",2,"char const *"); in _wrap_SBTarget_FindSymbols__SWIG_0()
60597 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",3,"lldb::SymbolType"); in _wrap_SBTarget_FindSymbols__SWIG_0()
60599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindSymbols__SWIG_0()
60603 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindSymbols__SWIG_0()
60604 arg3 = (lldb::SymbolType)lua_tointeger(L, 3); in _wrap_SBTarget_FindSymbols__SWIG_0()
60608 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBTarget_FindSymbols__SWIG_0()
60614 lua_error(L); in _wrap_SBTarget_FindSymbols__SWIG_0()
60619 static int _wrap_SBTarget_FindSymbols__SWIG_1(lua_State* L) { in _wrap_SBTarget_FindSymbols__SWIG_1() argument
60627 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",1,"lldb::SBTarget *"); in _wrap_SBTarget_FindSymbols__SWIG_1()
60628 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::FindSymbols",2,"char const *"); in _wrap_SBTarget_FindSymbols__SWIG_1()
60630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_FindSymbols__SWIG_1()
60634 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_FindSymbols__SWIG_1()
60638 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBSymbolContextList,1); SWIG_arg++; in _wrap_SBTarget_FindSymbols__SWIG_1()
60644 lua_error(L); in _wrap_SBTarget_FindSymbols__SWIG_1()
60649 static int _wrap_SBTarget_FindSymbols(lua_State* L) { in _wrap_SBTarget_FindSymbols() argument
60655 argc = lua_gettop(L); in _wrap_SBTarget_FindSymbols()
60660 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_FindSymbols()
60668 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_FindSymbols()
60671 return _wrap_SBTarget_FindSymbols__SWIG_1(L); in _wrap_SBTarget_FindSymbols()
60679 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_FindSymbols()
60687 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_FindSymbols()
60691 _v = lua_isnumber(L,argv[2]); in _wrap_SBTarget_FindSymbols()
60694 return _wrap_SBTarget_FindSymbols__SWIG_0(L); in _wrap_SBTarget_FindSymbols()
60700 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_FindSymbols'\n" in _wrap_SBTarget_FindSymbols()
60704 lua_error(L);return 0; in _wrap_SBTarget_FindSymbols()
60708 static int _wrap_SBTarget___eq(lua_State* L) { in _wrap_SBTarget___eq() argument
60716 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::operator ==",1,"lldb::SBTarget const *"); in _wrap_SBTarget___eq()
60717 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::operator ==",2,"lldb::SBTarget const &"); in _wrap_SBTarget___eq()
60719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget___eq()
60724 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget___eq()
60729 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget___eq()
60734 lua_error(L); in _wrap_SBTarget___eq()
60739 static int _wrap_SBTarget_GetDescription(lua_State* L) { in _wrap_SBTarget_GetDescription() argument
60748 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetDescription",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetDescription()
60749 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::GetDescription",2,"lldb::SBStream &"); in _wrap_SBTarget_GetDescription()
60750 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTarget::GetDescription",3,"lldb::DescriptionLevel"); in _wrap_SBTarget_GetDescription()
60752 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetDescription()
60757 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTarget_GetDescription()
60761 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTarget_GetDescription()
60763 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_GetDescription()
60768 lua_error(L); in _wrap_SBTarget_GetDescription()
60773 static int _wrap_SBTarget_EvaluateExpression__SWIG_0(lua_State* L) { in _wrap_SBTarget_EvaluateExpression__SWIG_0() argument
60781 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",1,"lldb::SBTarget *"); in _wrap_SBTarget_EvaluateExpression__SWIG_0()
60782 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",2,"char const *"… in _wrap_SBTarget_EvaluateExpression__SWIG_0()
60784 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_EvaluateExpression__SWIG_0()
60788 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_EvaluateExpression__SWIG_0()
60792 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTarget_EvaluateExpression__SWIG_0()
60798 lua_error(L); in _wrap_SBTarget_EvaluateExpression__SWIG_0()
60803 static int _wrap_SBTarget_EvaluateExpression__SWIG_1(lua_State* L) { in _wrap_SBTarget_EvaluateExpression__SWIG_1() argument
60812 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",1,"lldb::SBTarget *"); in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60813 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",2,"char const *"… in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60814 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTarget::EvaluateExpression",3,"lldb::SBExpressionO… in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60816 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60820 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60822 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60829 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60835 lua_error(L); in _wrap_SBTarget_EvaluateExpression__SWIG_1()
60840 static int _wrap_SBTarget_EvaluateExpression(lua_State* L) { in _wrap_SBTarget_EvaluateExpression() argument
60846 argc = lua_gettop(L); in _wrap_SBTarget_EvaluateExpression()
60851 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_EvaluateExpression()
60859 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_EvaluateExpression()
60862 return _wrap_SBTarget_EvaluateExpression__SWIG_0(L); in _wrap_SBTarget_EvaluateExpression()
60870 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_EvaluateExpression()
60878 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBTarget_EvaluateExpression()
60883 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTarget_EvaluateExpression()
60890 return _wrap_SBTarget_EvaluateExpression__SWIG_1(L); in _wrap_SBTarget_EvaluateExpression()
60896 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTarget_EvaluateExpression'\n" in _wrap_SBTarget_EvaluateExpression()
60900 lua_error(L);return 0; in _wrap_SBTarget_EvaluateExpression()
60904 static int _wrap_SBTarget_GetStackRedZoneSize(lua_State* L) { in _wrap_SBTarget_GetStackRedZoneSize() argument
60911 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetStackRedZoneSize",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetStackRedZoneSize()
60913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetStackRedZoneSize()
60918 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTarget_GetStackRedZoneSize()
60923 lua_error(L); in _wrap_SBTarget_GetStackRedZoneSize()
60928 static int _wrap_SBTarget_IsLoaded(lua_State* L) { in _wrap_SBTarget_IsLoaded() argument
60936 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::IsLoaded",1,"lldb::SBTarget const *"); in _wrap_SBTarget_IsLoaded()
60937 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::IsLoaded",2,"lldb::SBModule const &"); in _wrap_SBTarget_IsLoaded()
60939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_IsLoaded()
60944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBModule,0))){ in _wrap_SBTarget_IsLoaded()
60949 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTarget_IsLoaded()
60954 lua_error(L); in _wrap_SBTarget_IsLoaded()
60959 static int _wrap_SBTarget_GetLaunchInfo(lua_State* L) { in _wrap_SBTarget_GetLaunchInfo() argument
60966 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetLaunchInfo",1,"lldb::SBTarget const *"); in _wrap_SBTarget_GetLaunchInfo()
60968 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetLaunchInfo()
60975 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBLaunchInfo,1); SWIG_arg++; in _wrap_SBTarget_GetLaunchInfo()
60981 lua_error(L); in _wrap_SBTarget_GetLaunchInfo()
60986 static int _wrap_SBTarget_SetLaunchInfo(lua_State* L) { in _wrap_SBTarget_SetLaunchInfo() argument
60993 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::SetLaunchInfo",1,"lldb::SBTarget *"); in _wrap_SBTarget_SetLaunchInfo()
60994 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::SetLaunchInfo",2,"lldb::SBLaunchInfo const… in _wrap_SBTarget_SetLaunchInfo()
60996 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_SetLaunchInfo()
61001 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBLaunchInfo,0))){ in _wrap_SBTarget_SetLaunchInfo()
61011 lua_error(L); in _wrap_SBTarget_SetLaunchInfo()
61016 static int _wrap_SBTarget_GetTrace(lua_State* L) { in _wrap_SBTarget_GetTrace() argument
61023 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::GetTrace",1,"lldb::SBTarget *"); in _wrap_SBTarget_GetTrace()
61025 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_GetTrace()
61032 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++; in _wrap_SBTarget_GetTrace()
61038 lua_error(L); in _wrap_SBTarget_GetTrace()
61043 static int _wrap_SBTarget_CreateTrace(lua_State* L) { in _wrap_SBTarget_CreateTrace() argument
61051 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::CreateTrace",1,"lldb::SBTarget *"); in _wrap_SBTarget_CreateTrace()
61052 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTarget::CreateTrace",2,"lldb::SBError &"); in _wrap_SBTarget_CreateTrace()
61054 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget_CreateTrace()
61059 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTarget_CreateTrace()
61066 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++; in _wrap_SBTarget_CreateTrace()
61072 lua_error(L); in _wrap_SBTarget_CreateTrace()
61077 static int _wrap_SBTarget___tostring(lua_State* L) { in _wrap_SBTarget___tostring() argument
61084 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTarget::__repr__",1,"lldb::SBTarget *"); in _wrap_SBTarget___tostring()
61086 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTarget___tostring()
61091 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTarget___tostring()
61096 lua_error(L); in _wrap_SBTarget___tostring()
61105 static int _proxy__wrap_new_SBTarget(lua_State *L) { in _proxy__wrap_new_SBTarget() argument
61106 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTarget()
61107 lua_pushcfunction(L,_wrap_new_SBTarget); in _proxy__wrap_new_SBTarget()
61108 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTarget()
61109 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTarget()
61110 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTarget()
61260 static int _wrap_SBThread_GetBroadcasterClassName(lua_State* L) { in _wrap_SBThread_GetBroadcasterClassName() argument
61267 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBThread_GetBroadcasterClassName()
61272 lua_error(L); in _wrap_SBThread_GetBroadcasterClassName()
61277 static int _wrap_new_SBThread__SWIG_0(lua_State* L) { in _wrap_new_SBThread__SWIG_0() argument
61284 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_new_SBThread__SWIG_0()
61289 lua_error(L); in _wrap_new_SBThread__SWIG_0()
61294 static int _wrap_new_SBThread__SWIG_1(lua_State* L) { in _wrap_new_SBThread__SWIG_1() argument
61301 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::SBThread",1,"lldb::SBThread const &"); in _wrap_new_SBThread__SWIG_1()
61303 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_new_SBThread__SWIG_1()
61308 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_new_SBThread__SWIG_1()
61313 lua_error(L); in _wrap_new_SBThread__SWIG_1()
61318 static int _wrap_new_SBThread(lua_State* L) { in _wrap_new_SBThread() argument
61324 argc = lua_gettop(L); in _wrap_new_SBThread()
61326 return _wrap_new_SBThread__SWIG_0(L); in _wrap_new_SBThread()
61332 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBThread()
61339 return _wrap_new_SBThread__SWIG_1(L); in _wrap_new_SBThread()
61343 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBThread'\n" in _wrap_new_SBThread()
61347 lua_error(L);return 0; in _wrap_new_SBThread()
61351 static int _wrap_SBThread_GetQueue(lua_State* L) { in _wrap_SBThread_GetQueue() argument
61358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetQueue",1,"lldb::SBThread const *"); in _wrap_SBThread_GetQueue()
61360 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetQueue()
61367 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBQueue,1); SWIG_arg++; in _wrap_SBThread_GetQueue()
61373 lua_error(L); in _wrap_SBThread_GetQueue()
61378 static int _wrap_SBThread_IsValid(lua_State* L) { in _wrap_SBThread_IsValid() argument
61385 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::IsValid",1,"lldb::SBThread const *"); in _wrap_SBThread_IsValid()
61387 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_IsValid()
61392 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_IsValid()
61397 lua_error(L); in _wrap_SBThread_IsValid()
61402 static int _wrap_SBThread_Clear(lua_State* L) { in _wrap_SBThread_Clear() argument
61408 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Clear",1,"lldb::SBThread *"); in _wrap_SBThread_Clear()
61410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_Clear()
61420 lua_error(L); in _wrap_SBThread_Clear()
61425 static int _wrap_SBThread_GetStopReason(lua_State* L) { in _wrap_SBThread_GetStopReason() argument
61432 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReason",1,"lldb::SBThread *"); in _wrap_SBThread_GetStopReason()
61434 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopReason()
61439 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetStopReason()
61444 lua_error(L); in _wrap_SBThread_GetStopReason()
61449 static int _wrap_SBThread_GetStopReasonDataCount(lua_State* L) { in _wrap_SBThread_GetStopReasonDataCount() argument
61456 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonDataCount",1,"lldb::SBThread … in _wrap_SBThread_GetStopReasonDataCount()
61458 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopReasonDataCount()
61463 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetStopReasonDataCount()
61468 lua_error(L); in _wrap_SBThread_GetStopReasonDataCount()
61473 static int _wrap_SBThread_GetStopReasonDataAtIndex(lua_State* L) { in _wrap_SBThread_GetStopReasonDataAtIndex() argument
61481 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonDataAtIndex",1,"lldb::SBThrea… in _wrap_SBThread_GetStopReasonDataAtIndex()
61482 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::GetStopReasonDataAtIndex",2,"uint32_t"); in _wrap_SBThread_GetStopReasonDataAtIndex()
61484 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopReasonDataAtIndex()
61488 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThread_GetStopReasonDataAtIndex()
61490 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetStopReasonDataAtIndex()
61495 lua_error(L); in _wrap_SBThread_GetStopReasonDataAtIndex()
61500 static int _wrap_SBThread_GetStopReasonExtendedInfoAsJSON(lua_State* L) { in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON() argument
61508 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedInfoAsJSON",1,"lldb::… in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON()
61509 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedInfoAsJSON",2,"lldb::… in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON()
61511 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON()
61516 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON()
61521 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON()
61526 lua_error(L); in _wrap_SBThread_GetStopReasonExtendedInfoAsJSON()
61531 static int _wrap_SBThread_GetStopReasonExtendedBacktraces(lua_State* L) { in _wrap_SBThread_GetStopReasonExtendedBacktraces() argument
61539 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedBacktraces",1,"lldb::… in _wrap_SBThread_GetStopReasonExtendedBacktraces()
61540 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::GetStopReasonExtendedBacktraces",2,"lldb::I… in _wrap_SBThread_GetStopReasonExtendedBacktraces()
61542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopReasonExtendedBacktraces()
61546 arg2 = (lldb::InstrumentationRuntimeType)lua_tointeger(L, 2); in _wrap_SBThread_GetStopReasonExtendedBacktraces()
61550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++; in _wrap_SBThread_GetStopReasonExtendedBacktraces()
61556 lua_error(L); in _wrap_SBThread_GetStopReasonExtendedBacktraces()
61561 static int _wrap_SBThread_GetStopDescription(lua_State* L) { in _wrap_SBThread_GetStopDescription() argument
61570 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopDescription",1,"lldb::SBThread *"); in _wrap_SBThread_GetStopDescription()
61572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopDescription()
61577 arg3 = luaL_checkinteger(L, 2); in _wrap_SBThread_GetStopDescription()
61579 return luaL_error(L, "Positive integer expected"); in _wrap_SBThread_GetStopDescription()
61584 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetStopDescription()
61586 lua_pop(L, 1); // Blow away the previous result in _wrap_SBThread_GetStopDescription()
61587 lua_pushlstring(L, (const char *)arg2, result); in _wrap_SBThread_GetStopDescription()
61595 lua_error(L); in _wrap_SBThread_GetStopDescription()
61600 static int _wrap_SBThread_GetStopReturnValue(lua_State* L) { in _wrap_SBThread_GetStopReturnValue() argument
61607 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStopReturnValue",1,"lldb::SBThread *"); in _wrap_SBThread_GetStopReturnValue()
61609 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStopReturnValue()
61616 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBThread_GetStopReturnValue()
61622 lua_error(L); in _wrap_SBThread_GetStopReturnValue()
61627 static int _wrap_SBThread_GetThreadID(lua_State* L) { in _wrap_SBThread_GetThreadID() argument
61634 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetThreadID",1,"lldb::SBThread const *"); in _wrap_SBThread_GetThreadID()
61636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetThreadID()
61641 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetThreadID()
61646 lua_error(L); in _wrap_SBThread_GetThreadID()
61651 static int _wrap_SBThread_GetIndexID(lua_State* L) { in _wrap_SBThread_GetIndexID() argument
61658 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetIndexID",1,"lldb::SBThread const *"); in _wrap_SBThread_GetIndexID()
61660 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetIndexID()
61665 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetIndexID()
61670 lua_error(L); in _wrap_SBThread_GetIndexID()
61675 static int _wrap_SBThread_GetName(lua_State* L) { in _wrap_SBThread_GetName() argument
61682 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetName",1,"lldb::SBThread const *"); in _wrap_SBThread_GetName()
61684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetName()
61689 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBThread_GetName()
61694 lua_error(L); in _wrap_SBThread_GetName()
61699 static int _wrap_SBThread_GetQueueName(lua_State* L) { in _wrap_SBThread_GetQueueName() argument
61706 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetQueueName",1,"lldb::SBThread const *"); in _wrap_SBThread_GetQueueName()
61708 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetQueueName()
61713 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBThread_GetQueueName()
61718 lua_error(L); in _wrap_SBThread_GetQueueName()
61723 static int _wrap_SBThread_GetQueueID(lua_State* L) { in _wrap_SBThread_GetQueueID() argument
61730 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetQueueID",1,"lldb::SBThread const *"); in _wrap_SBThread_GetQueueID()
61732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetQueueID()
61737 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetQueueID()
61742 lua_error(L); in _wrap_SBThread_GetQueueID()
61747 static int _wrap_SBThread_GetInfoItemByPathAsString(lua_State* L) { in _wrap_SBThread_GetInfoItemByPathAsString() argument
61756 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetInfoItemByPathAsString",1,"lldb::SBThre… in _wrap_SBThread_GetInfoItemByPathAsString()
61757 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::GetInfoItemByPathAsString",2,"char c… in _wrap_SBThread_GetInfoItemByPathAsString()
61758 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::GetInfoItemByPathAsString",3,"lldb::SBStre… in _wrap_SBThread_GetInfoItemByPathAsString()
61760 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetInfoItemByPathAsString()
61764 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_GetInfoItemByPathAsString()
61766 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThread_GetInfoItemByPathAsString()
61771 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_GetInfoItemByPathAsString()
61776 lua_error(L); in _wrap_SBThread_GetInfoItemByPathAsString()
61781 static int _wrap_SBThread_StepOver__SWIG_0(lua_State* L) { in _wrap_SBThread_StepOver__SWIG_0() argument
61788 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOver",1,"lldb::SBThread *"); in _wrap_SBThread_StepOver__SWIG_0()
61789 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::StepOver",2,"lldb::RunMode"); in _wrap_SBThread_StepOver__SWIG_0()
61791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOver__SWIG_0()
61795 arg2 = (lldb::RunMode)lua_tointeger(L, 2); in _wrap_SBThread_StepOver__SWIG_0()
61802 lua_error(L); in _wrap_SBThread_StepOver__SWIG_0()
61807 static int _wrap_SBThread_StepOver__SWIG_1(lua_State* L) { in _wrap_SBThread_StepOver__SWIG_1() argument
61813 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOver",1,"lldb::SBThread *"); in _wrap_SBThread_StepOver__SWIG_1()
61815 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOver__SWIG_1()
61825 lua_error(L); in _wrap_SBThread_StepOver__SWIG_1()
61830 static int _wrap_SBThread_StepOver__SWIG_2(lua_State* L) { in _wrap_SBThread_StepOver__SWIG_2() argument
61838 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOver",1,"lldb::SBThread *"); in _wrap_SBThread_StepOver__SWIG_2()
61839 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::StepOver",2,"lldb::RunMode"); in _wrap_SBThread_StepOver__SWIG_2()
61840 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepOver",3,"lldb::SBError &"); in _wrap_SBThread_StepOver__SWIG_2()
61842 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOver__SWIG_2()
61846 arg2 = (lldb::RunMode)lua_tointeger(L, 2); in _wrap_SBThread_StepOver__SWIG_2()
61848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_StepOver__SWIG_2()
61858 lua_error(L); in _wrap_SBThread_StepOver__SWIG_2()
61863 static int _wrap_SBThread_StepOver(lua_State* L) { in _wrap_SBThread_StepOver() argument
61869 argc = lua_gettop(L); in _wrap_SBThread_StepOver()
61874 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOver()
61881 return _wrap_SBThread_StepOver__SWIG_1(L); in _wrap_SBThread_StepOver()
61888 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOver()
61896 _v = lua_isnumber(L,argv[1]); in _wrap_SBThread_StepOver()
61899 return _wrap_SBThread_StepOver__SWIG_0(L); in _wrap_SBThread_StepOver()
61907 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOver()
61915 _v = lua_isnumber(L,argv[1]); in _wrap_SBThread_StepOver()
61920 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOver()
61927 return _wrap_SBThread_StepOver__SWIG_2(L); in _wrap_SBThread_StepOver()
61933 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepOver'\n" in _wrap_SBThread_StepOver()
61938 lua_error(L);return 0; in _wrap_SBThread_StepOver()
61942 static int _wrap_SBThread_StepInto__SWIG_0(lua_State* L) { in _wrap_SBThread_StepInto__SWIG_0() argument
61949 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *"); in _wrap_SBThread_StepInto__SWIG_0()
61950 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"lldb::RunMode"); in _wrap_SBThread_StepInto__SWIG_0()
61952 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInto__SWIG_0()
61956 arg2 = (lldb::RunMode)lua_tointeger(L, 2); in _wrap_SBThread_StepInto__SWIG_0()
61963 lua_error(L); in _wrap_SBThread_StepInto__SWIG_0()
61968 static int _wrap_SBThread_StepInto__SWIG_1(lua_State* L) { in _wrap_SBThread_StepInto__SWIG_1() argument
61974 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *"); in _wrap_SBThread_StepInto__SWIG_1()
61976 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInto__SWIG_1()
61986 lua_error(L); in _wrap_SBThread_StepInto__SWIG_1()
61991 static int _wrap_SBThread_StepInto__SWIG_2(lua_State* L) { in _wrap_SBThread_StepInto__SWIG_2() argument
61999 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *"); in _wrap_SBThread_StepInto__SWIG_2()
62000 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *"); in _wrap_SBThread_StepInto__SWIG_2()
62001 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::StepInto",3,"lldb::RunMode"); in _wrap_SBThread_StepInto__SWIG_2()
62003 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInto__SWIG_2()
62007 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepInto__SWIG_2()
62008 arg3 = (lldb::RunMode)lua_tointeger(L, 3); in _wrap_SBThread_StepInto__SWIG_2()
62015 lua_error(L); in _wrap_SBThread_StepInto__SWIG_2()
62020 static int _wrap_SBThread_StepInto__SWIG_3(lua_State* L) { in _wrap_SBThread_StepInto__SWIG_3() argument
62027 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *"); in _wrap_SBThread_StepInto__SWIG_3()
62028 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *"); in _wrap_SBThread_StepInto__SWIG_3()
62030 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInto__SWIG_3()
62034 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepInto__SWIG_3()
62041 lua_error(L); in _wrap_SBThread_StepInto__SWIG_3()
62046 static int _wrap_SBThread_StepInto__SWIG_4(lua_State* L) { in _wrap_SBThread_StepInto__SWIG_4() argument
62056 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *"); in _wrap_SBThread_StepInto__SWIG_4()
62057 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *"); in _wrap_SBThread_StepInto__SWIG_4()
62058 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::StepInto",3,"uint32_t"); in _wrap_SBThread_StepInto__SWIG_4()
62059 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThread::StepInto",4,"lldb::SBError &"); in _wrap_SBThread_StepInto__SWIG_4()
62060 if(!lua_isinteger(L,5)) SWIG_fail_arg("lldb::SBThread::StepInto",5,"lldb::RunMode"); in _wrap_SBThread_StepInto__SWIG_4()
62062 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInto__SWIG_4()
62066 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepInto__SWIG_4()
62067 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBThread_StepInto__SWIG_4()
62069 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_StepInto__SWIG_4()
62073 arg5 = (lldb::RunMode)lua_tointeger(L, 5); in _wrap_SBThread_StepInto__SWIG_4()
62080 lua_error(L); in _wrap_SBThread_StepInto__SWIG_4()
62085 static int _wrap_SBThread_StepInto__SWIG_5(lua_State* L) { in _wrap_SBThread_StepInto__SWIG_5() argument
62094 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInto",1,"lldb::SBThread *"); in _wrap_SBThread_StepInto__SWIG_5()
62095 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepInto",2,"char const *"); in _wrap_SBThread_StepInto__SWIG_5()
62096 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::StepInto",3,"uint32_t"); in _wrap_SBThread_StepInto__SWIG_5()
62097 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThread::StepInto",4,"lldb::SBError &"); in _wrap_SBThread_StepInto__SWIG_5()
62099 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInto__SWIG_5()
62103 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepInto__SWIG_5()
62104 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBThread_StepInto__SWIG_5()
62106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_StepInto__SWIG_5()
62116 lua_error(L); in _wrap_SBThread_StepInto__SWIG_5()
62121 static int _wrap_SBThread_StepInto(lua_State* L) { in _wrap_SBThread_StepInto() argument
62127 argc = lua_gettop(L); in _wrap_SBThread_StepInto()
62132 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62139 return _wrap_SBThread_StepInto__SWIG_1(L); in _wrap_SBThread_StepInto()
62146 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62154 _v = lua_isnumber(L,argv[1]); in _wrap_SBThread_StepInto()
62157 return _wrap_SBThread_StepInto__SWIG_0(L); in _wrap_SBThread_StepInto()
62165 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62173 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepInto()
62176 return _wrap_SBThread_StepInto__SWIG_3(L); in _wrap_SBThread_StepInto()
62184 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62192 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepInto()
62196 _v = lua_isnumber(L,argv[2]); in _wrap_SBThread_StepInto()
62199 return _wrap_SBThread_StepInto__SWIG_2(L); in _wrap_SBThread_StepInto()
62208 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62216 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepInto()
62220 _v = lua_isnumber(L,argv[2]); in _wrap_SBThread_StepInto()
62225 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62232 return _wrap_SBThread_StepInto__SWIG_5(L); in _wrap_SBThread_StepInto()
62242 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62250 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepInto()
62254 _v = lua_isnumber(L,argv[2]); in _wrap_SBThread_StepInto()
62259 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInto()
62267 _v = lua_isnumber(L,argv[4]); in _wrap_SBThread_StepInto()
62270 return _wrap_SBThread_StepInto__SWIG_4(L); in _wrap_SBThread_StepInto()
62278 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepInto'\n" in _wrap_SBThread_StepInto()
62286 lua_error(L);return 0; in _wrap_SBThread_StepInto()
62290 static int _wrap_SBThread_StepOut__SWIG_0(lua_State* L) { in _wrap_SBThread_StepOut__SWIG_0() argument
62296 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOut",1,"lldb::SBThread *"); in _wrap_SBThread_StepOut__SWIG_0()
62298 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOut__SWIG_0()
62308 lua_error(L); in _wrap_SBThread_StepOut__SWIG_0()
62313 static int _wrap_SBThread_StepOut__SWIG_1(lua_State* L) { in _wrap_SBThread_StepOut__SWIG_1() argument
62320 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOut",1,"lldb::SBThread *"); in _wrap_SBThread_StepOut__SWIG_1()
62321 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOut",2,"lldb::SBError &"); in _wrap_SBThread_StepOut__SWIG_1()
62323 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOut__SWIG_1()
62328 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_StepOut__SWIG_1()
62338 lua_error(L); in _wrap_SBThread_StepOut__SWIG_1()
62343 static int _wrap_SBThread_StepOut(lua_State* L) { in _wrap_SBThread_StepOut() argument
62349 argc = lua_gettop(L); in _wrap_SBThread_StepOut()
62354 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOut()
62361 return _wrap_SBThread_StepOut__SWIG_0(L); in _wrap_SBThread_StepOut()
62368 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOut()
62377 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOut()
62384 return _wrap_SBThread_StepOut__SWIG_1(L); in _wrap_SBThread_StepOut()
62389 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepOut'\n" in _wrap_SBThread_StepOut()
62393 lua_error(L);return 0; in _wrap_SBThread_StepOut()
62397 static int _wrap_SBThread_StepOutOfFrame__SWIG_0(lua_State* L) { in _wrap_SBThread_StepOutOfFrame__SWIG_0() argument
62404 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",1,"lldb::SBThread *"); in _wrap_SBThread_StepOutOfFrame__SWIG_0()
62405 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",2,"lldb::SBFrame &"); in _wrap_SBThread_StepOutOfFrame__SWIG_0()
62407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOutOfFrame__SWIG_0()
62412 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBThread_StepOutOfFrame__SWIG_0()
62422 lua_error(L); in _wrap_SBThread_StepOutOfFrame__SWIG_0()
62427 static int _wrap_SBThread_StepOutOfFrame__SWIG_1(lua_State* L) { in _wrap_SBThread_StepOutOfFrame__SWIG_1() argument
62435 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",1,"lldb::SBThread *"); in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62436 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",2,"lldb::SBFrame &"); in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62437 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepOutOfFrame",3,"lldb::SBError &"); in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62439 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62444 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62449 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62459 lua_error(L); in _wrap_SBThread_StepOutOfFrame__SWIG_1()
62464 static int _wrap_SBThread_StepOutOfFrame(lua_State* L) { in _wrap_SBThread_StepOutOfFrame() argument
62470 argc = lua_gettop(L); in _wrap_SBThread_StepOutOfFrame()
62475 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOutOfFrame()
62484 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOutOfFrame()
62491 return _wrap_SBThread_StepOutOfFrame__SWIG_0(L); in _wrap_SBThread_StepOutOfFrame()
62499 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOutOfFrame()
62508 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOutOfFrame()
62517 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepOutOfFrame()
62524 return _wrap_SBThread_StepOutOfFrame__SWIG_1(L); in _wrap_SBThread_StepOutOfFrame()
62530 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepOutOfFrame'\n" in _wrap_SBThread_StepOutOfFrame()
62534 lua_error(L);return 0; in _wrap_SBThread_StepOutOfFrame()
62538 static int _wrap_SBThread_StepInstruction__SWIG_0(lua_State* L) { in _wrap_SBThread_StepInstruction__SWIG_0() argument
62545 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInstruction",1,"lldb::SBThread *"); in _wrap_SBThread_StepInstruction__SWIG_0()
62546 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThread::StepInstruction",2,"bool"); in _wrap_SBThread_StepInstruction__SWIG_0()
62548 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInstruction__SWIG_0()
62552 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBThread_StepInstruction__SWIG_0()
62559 lua_error(L); in _wrap_SBThread_StepInstruction__SWIG_0()
62564 static int _wrap_SBThread_StepInstruction__SWIG_1(lua_State* L) { in _wrap_SBThread_StepInstruction__SWIG_1() argument
62572 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepInstruction",1,"lldb::SBThread *"); in _wrap_SBThread_StepInstruction__SWIG_1()
62573 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThread::StepInstruction",2,"bool"); in _wrap_SBThread_StepInstruction__SWIG_1()
62574 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepInstruction",3,"lldb::SBError &"); in _wrap_SBThread_StepInstruction__SWIG_1()
62576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepInstruction__SWIG_1()
62580 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBThread_StepInstruction__SWIG_1()
62582 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_StepInstruction__SWIG_1()
62592 lua_error(L); in _wrap_SBThread_StepInstruction__SWIG_1()
62597 static int _wrap_SBThread_StepInstruction(lua_State* L) { in _wrap_SBThread_StepInstruction() argument
62603 argc = lua_gettop(L); in _wrap_SBThread_StepInstruction()
62608 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInstruction()
62616 _v = lua_isboolean(L,argv[1]); in _wrap_SBThread_StepInstruction()
62619 return _wrap_SBThread_StepInstruction__SWIG_0(L); in _wrap_SBThread_StepInstruction()
62627 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInstruction()
62635 _v = lua_isboolean(L,argv[1]); in _wrap_SBThread_StepInstruction()
62640 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepInstruction()
62647 return _wrap_SBThread_StepInstruction__SWIG_1(L); in _wrap_SBThread_StepInstruction()
62653 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepInstruction'\n" in _wrap_SBThread_StepInstruction()
62657 lua_error(L);return 0; in _wrap_SBThread_StepInstruction()
62661 static int _wrap_SBThread_StepOverUntil(lua_State* L) { in _wrap_SBThread_StepOverUntil() argument
62671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",1,"lldb::SBThread *"); in _wrap_SBThread_StepOverUntil()
62672 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",2,"lldb::SBFrame &"); in _wrap_SBThread_StepOverUntil()
62673 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",3,"lldb::SBFileSpec &"); in _wrap_SBThread_StepOverUntil()
62674 if(!lua_isinteger(L,4)) SWIG_fail_arg("lldb::SBThread::StepOverUntil",4,"uint32_t"); in _wrap_SBThread_StepOverUntil()
62676 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepOverUntil()
62681 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBThread_StepOverUntil()
62686 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBThread_StepOverUntil()
62690 arg4 = (uint32_t)lua_tointeger(L, 4); in _wrap_SBThread_StepOverUntil()
62694 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_StepOverUntil()
62700 lua_error(L); in _wrap_SBThread_StepOverUntil()
62705 static int _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0(lua_State* L) { in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0() argument
62713 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",1,"lldb::SBTh… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0()
62714 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",2,"char… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0()
62716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0()
62720 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0()
62724 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0()
62730 lua_error(L); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0()
62735 static int _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1(lua_State* L) { in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1() argument
62744 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",1,"lldb::SBTh… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62745 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",2,"char… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62746 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",3,"bool"); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62748 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62752 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62753 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62757 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62763 lua_error(L); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1()
62768 static int _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2(lua_State* L) { in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2() argument
62778 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",1,"lldb::SBTh… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62779 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",2,"char… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62780 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",3,"lldb::SBSt… in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62781 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBThread::StepUsingScriptedThreadPlan",4,"bool"); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62783 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62787 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62789 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62793 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62797 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62803 lua_error(L); in _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2()
62808 static int _wrap_SBThread_StepUsingScriptedThreadPlan(lua_State* L) { in _wrap_SBThread_StepUsingScriptedThreadPlan() argument
62814 argc = lua_gettop(L); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62819 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepUsingScriptedThreadPlan()
62827 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62830 return _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_0(L); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62838 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepUsingScriptedThreadPlan()
62846 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62850 _v = lua_isboolean(L,argv[2]); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62853 return _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_1(L); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62862 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepUsingScriptedThreadPlan()
62870 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62875 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_StepUsingScriptedThreadPlan()
62883 _v = lua_isboolean(L,argv[3]); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62886 return _wrap_SBThread_StepUsingScriptedThreadPlan__SWIG_2(L); in _wrap_SBThread_StepUsingScriptedThreadPlan()
62893 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_StepUsingScriptedThrea… in _wrap_SBThread_StepUsingScriptedThreadPlan()
62898 lua_error(L);return 0; in _wrap_SBThread_StepUsingScriptedThreadPlan()
62902 static int _wrap_SBThread_JumpToLine(lua_State* L) { in _wrap_SBThread_JumpToLine() argument
62911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::JumpToLine",1,"lldb::SBThread *"); in _wrap_SBThread_JumpToLine()
62912 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::JumpToLine",2,"lldb::SBFileSpec &"); in _wrap_SBThread_JumpToLine()
62913 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThread::JumpToLine",3,"uint32_t"); in _wrap_SBThread_JumpToLine()
62915 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_JumpToLine()
62920 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBThread_JumpToLine()
62924 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBThread_JumpToLine()
62928 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_JumpToLine()
62934 lua_error(L); in _wrap_SBThread_JumpToLine()
62939 static int _wrap_SBThread_RunToAddress__SWIG_0(lua_State* L) { in _wrap_SBThread_RunToAddress__SWIG_0() argument
62946 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::RunToAddress",1,"lldb::SBThread *"); in _wrap_SBThread_RunToAddress__SWIG_0()
62947 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::RunToAddress",2,"lldb::addr_t"); in _wrap_SBThread_RunToAddress__SWIG_0()
62949 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_RunToAddress__SWIG_0()
62953 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBThread_RunToAddress__SWIG_0()
62960 lua_error(L); in _wrap_SBThread_RunToAddress__SWIG_0()
62965 static int _wrap_SBThread_RunToAddress__SWIG_1(lua_State* L) { in _wrap_SBThread_RunToAddress__SWIG_1() argument
62973 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::RunToAddress",1,"lldb::SBThread *"); in _wrap_SBThread_RunToAddress__SWIG_1()
62974 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::RunToAddress",2,"lldb::addr_t"); in _wrap_SBThread_RunToAddress__SWIG_1()
62975 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::RunToAddress",3,"lldb::SBError &"); in _wrap_SBThread_RunToAddress__SWIG_1()
62977 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_RunToAddress__SWIG_1()
62981 arg2 = (lldb::addr_t)lua_tointeger(L, 2); in _wrap_SBThread_RunToAddress__SWIG_1()
62983 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_RunToAddress__SWIG_1()
62993 lua_error(L); in _wrap_SBThread_RunToAddress__SWIG_1()
62998 static int _wrap_SBThread_RunToAddress(lua_State* L) { in _wrap_SBThread_RunToAddress() argument
63004 argc = lua_gettop(L); in _wrap_SBThread_RunToAddress()
63009 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_RunToAddress()
63017 _v = lua_isnumber(L,argv[1]); in _wrap_SBThread_RunToAddress()
63020 return _wrap_SBThread_RunToAddress__SWIG_0(L); in _wrap_SBThread_RunToAddress()
63028 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_RunToAddress()
63036 _v = lua_isnumber(L,argv[1]); in _wrap_SBThread_RunToAddress()
63041 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_RunToAddress()
63048 return _wrap_SBThread_RunToAddress__SWIG_1(L); in _wrap_SBThread_RunToAddress()
63054 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_RunToAddress'\n" in _wrap_SBThread_RunToAddress()
63058 lua_error(L);return 0; in _wrap_SBThread_RunToAddress()
63062 static int _wrap_SBThread_ReturnFromFrame(lua_State* L) { in _wrap_SBThread_ReturnFromFrame() argument
63071 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::ReturnFromFrame",1,"lldb::SBThread *"); in _wrap_SBThread_ReturnFromFrame()
63072 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::ReturnFromFrame",2,"lldb::SBFrame &"); in _wrap_SBThread_ReturnFromFrame()
63073 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::ReturnFromFrame",3,"lldb::SBValue &"); in _wrap_SBThread_ReturnFromFrame()
63075 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_ReturnFromFrame()
63080 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFrame,0))){ in _wrap_SBThread_ReturnFromFrame()
63085 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBThread_ReturnFromFrame()
63092 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_ReturnFromFrame()
63098 lua_error(L); in _wrap_SBThread_ReturnFromFrame()
63103 static int _wrap_SBThread_UnwindInnermostExpression(lua_State* L) { in _wrap_SBThread_UnwindInnermostExpression() argument
63110 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::UnwindInnermostExpression",1,"lldb::SBThre… in _wrap_SBThread_UnwindInnermostExpression()
63112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_UnwindInnermostExpression()
63119 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_UnwindInnermostExpression()
63125 lua_error(L); in _wrap_SBThread_UnwindInnermostExpression()
63130 static int _wrap_SBThread_Suspend__SWIG_0(lua_State* L) { in _wrap_SBThread_Suspend__SWIG_0() argument
63137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Suspend",1,"lldb::SBThread *"); in _wrap_SBThread_Suspend__SWIG_0()
63139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_Suspend__SWIG_0()
63144 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_Suspend__SWIG_0()
63149 lua_error(L); in _wrap_SBThread_Suspend__SWIG_0()
63154 static int _wrap_SBThread_Suspend__SWIG_1(lua_State* L) { in _wrap_SBThread_Suspend__SWIG_1() argument
63162 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Suspend",1,"lldb::SBThread *"); in _wrap_SBThread_Suspend__SWIG_1()
63163 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::Suspend",2,"lldb::SBError &"); in _wrap_SBThread_Suspend__SWIG_1()
63165 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_Suspend__SWIG_1()
63170 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_Suspend__SWIG_1()
63175 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_Suspend__SWIG_1()
63180 lua_error(L); in _wrap_SBThread_Suspend__SWIG_1()
63185 static int _wrap_SBThread_Suspend(lua_State* L) { in _wrap_SBThread_Suspend() argument
63191 argc = lua_gettop(L); in _wrap_SBThread_Suspend()
63196 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_Suspend()
63203 return _wrap_SBThread_Suspend__SWIG_0(L); in _wrap_SBThread_Suspend()
63210 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_Suspend()
63219 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_Suspend()
63226 return _wrap_SBThread_Suspend__SWIG_1(L); in _wrap_SBThread_Suspend()
63231 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_Suspend'\n" in _wrap_SBThread_Suspend()
63235 lua_error(L);return 0; in _wrap_SBThread_Suspend()
63239 static int _wrap_SBThread_Resume__SWIG_0(lua_State* L) { in _wrap_SBThread_Resume__SWIG_0() argument
63246 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Resume",1,"lldb::SBThread *"); in _wrap_SBThread_Resume__SWIG_0()
63248 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_Resume__SWIG_0()
63253 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_Resume__SWIG_0()
63258 lua_error(L); in _wrap_SBThread_Resume__SWIG_0()
63263 static int _wrap_SBThread_Resume__SWIG_1(lua_State* L) { in _wrap_SBThread_Resume__SWIG_1() argument
63271 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::Resume",1,"lldb::SBThread *"); in _wrap_SBThread_Resume__SWIG_1()
63272 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::Resume",2,"lldb::SBError &"); in _wrap_SBThread_Resume__SWIG_1()
63274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_Resume__SWIG_1()
63279 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThread_Resume__SWIG_1()
63284 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_Resume__SWIG_1()
63289 lua_error(L); in _wrap_SBThread_Resume__SWIG_1()
63294 static int _wrap_SBThread_Resume(lua_State* L) { in _wrap_SBThread_Resume() argument
63300 argc = lua_gettop(L); in _wrap_SBThread_Resume()
63305 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_Resume()
63312 return _wrap_SBThread_Resume__SWIG_0(L); in _wrap_SBThread_Resume()
63319 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_Resume()
63328 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_Resume()
63335 return _wrap_SBThread_Resume__SWIG_1(L); in _wrap_SBThread_Resume()
63340 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_Resume'\n" in _wrap_SBThread_Resume()
63344 lua_error(L);return 0; in _wrap_SBThread_Resume()
63348 static int _wrap_SBThread_IsSuspended(lua_State* L) { in _wrap_SBThread_IsSuspended() argument
63355 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::IsSuspended",1,"lldb::SBThread *"); in _wrap_SBThread_IsSuspended()
63357 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_IsSuspended()
63362 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_IsSuspended()
63367 lua_error(L); in _wrap_SBThread_IsSuspended()
63372 static int _wrap_SBThread_IsStopped(lua_State* L) { in _wrap_SBThread_IsStopped() argument
63379 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::IsStopped",1,"lldb::SBThread *"); in _wrap_SBThread_IsStopped()
63381 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_IsStopped()
63386 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_IsStopped()
63391 lua_error(L); in _wrap_SBThread_IsStopped()
63396 static int _wrap_SBThread_GetNumFrames(lua_State* L) { in _wrap_SBThread_GetNumFrames() argument
63403 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetNumFrames",1,"lldb::SBThread *"); in _wrap_SBThread_GetNumFrames()
63405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetNumFrames()
63410 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetNumFrames()
63415 lua_error(L); in _wrap_SBThread_GetNumFrames()
63420 static int _wrap_SBThread_GetFrameAtIndex(lua_State* L) { in _wrap_SBThread_GetFrameAtIndex() argument
63428 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetFrameAtIndex",1,"lldb::SBThread *"); in _wrap_SBThread_GetFrameAtIndex()
63429 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::GetFrameAtIndex",2,"uint32_t"); in _wrap_SBThread_GetFrameAtIndex()
63431 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetFrameAtIndex()
63435 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThread_GetFrameAtIndex()
63439 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_SBThread_GetFrameAtIndex()
63445 lua_error(L); in _wrap_SBThread_GetFrameAtIndex()
63450 static int _wrap_SBThread_GetSelectedFrame(lua_State* L) { in _wrap_SBThread_GetSelectedFrame() argument
63457 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetSelectedFrame",1,"lldb::SBThread *"); in _wrap_SBThread_GetSelectedFrame()
63459 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetSelectedFrame()
63466 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_SBThread_GetSelectedFrame()
63472 lua_error(L); in _wrap_SBThread_GetSelectedFrame()
63477 static int _wrap_SBThread_SetSelectedFrame(lua_State* L) { in _wrap_SBThread_SetSelectedFrame() argument
63485 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::SetSelectedFrame",1,"lldb::SBThread *"); in _wrap_SBThread_SetSelectedFrame()
63486 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThread::SetSelectedFrame",2,"uint32_t"); in _wrap_SBThread_SetSelectedFrame()
63488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_SetSelectedFrame()
63492 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThread_SetSelectedFrame()
63496 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_SBThread_SetSelectedFrame()
63502 lua_error(L); in _wrap_SBThread_SetSelectedFrame()
63507 static int _wrap_SBThread_EventIsThreadEvent(lua_State* L) { in _wrap_SBThread_EventIsThreadEvent() argument
63514 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::EventIsThreadEvent",1,"lldb::SBEvent const… in _wrap_SBThread_EventIsThreadEvent()
63516 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBThread_EventIsThreadEvent()
63521 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_EventIsThreadEvent()
63526 lua_error(L); in _wrap_SBThread_EventIsThreadEvent()
63531 static int _wrap_SBThread_GetStackFrameFromEvent(lua_State* L) { in _wrap_SBThread_GetStackFrameFromEvent() argument
63538 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::GetStackFrameFromEvent",1,"lldb::SBEvent c… in _wrap_SBThread_GetStackFrameFromEvent()
63540 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBThread_GetStackFrameFromEvent()
63547 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_SBThread_GetStackFrameFromEvent()
63553 lua_error(L); in _wrap_SBThread_GetStackFrameFromEvent()
63558 static int _wrap_SBThread_GetThreadFromEvent(lua_State* L) { in _wrap_SBThread_GetThreadFromEvent() argument
63565 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThread::GetThreadFromEvent",1,"lldb::SBEvent const… in _wrap_SBThread_GetThreadFromEvent()
63567 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBThread_GetThreadFromEvent()
63574 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBThread_GetThreadFromEvent()
63580 lua_error(L); in _wrap_SBThread_GetThreadFromEvent()
63585 static int _wrap_SBThread_GetProcess(lua_State* L) { in _wrap_SBThread_GetProcess() argument
63592 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetProcess",1,"lldb::SBThread *"); in _wrap_SBThread_GetProcess()
63594 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetProcess()
63601 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBThread_GetProcess()
63607 lua_error(L); in _wrap_SBThread_GetProcess()
63612 static int _wrap_SBThread___eq(lua_State* L) { in _wrap_SBThread___eq() argument
63620 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::operator ==",1,"lldb::SBThread const *"); in _wrap_SBThread___eq()
63621 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::operator ==",2,"lldb::SBThread const &"); in _wrap_SBThread___eq()
63623 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread___eq()
63628 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread___eq()
63633 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread___eq()
63638 lua_error(L); in _wrap_SBThread___eq()
63643 static int _wrap_SBThread_GetDescription__SWIG_0(lua_State* L) { in _wrap_SBThread_GetDescription__SWIG_0() argument
63651 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetDescription",1,"lldb::SBThread const *"… in _wrap_SBThread_GetDescription__SWIG_0()
63652 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetDescription",2,"lldb::SBStream &"); in _wrap_SBThread_GetDescription__SWIG_0()
63654 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetDescription__SWIG_0()
63659 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThread_GetDescription__SWIG_0()
63664 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_GetDescription__SWIG_0()
63669 lua_error(L); in _wrap_SBThread_GetDescription__SWIG_0()
63674 static int _wrap_SBThread_GetDescription__SWIG_1(lua_State* L) { in _wrap_SBThread_GetDescription__SWIG_1() argument
63683 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetDescription",1,"lldb::SBThread const *"… in _wrap_SBThread_GetDescription__SWIG_1()
63684 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetDescription",2,"lldb::SBStream &"); in _wrap_SBThread_GetDescription__SWIG_1()
63685 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThread::GetDescription",3,"bool"); in _wrap_SBThread_GetDescription__SWIG_1()
63687 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetDescription__SWIG_1()
63692 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThread_GetDescription__SWIG_1()
63696 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBThread_GetDescription__SWIG_1()
63698 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_GetDescription__SWIG_1()
63703 lua_error(L); in _wrap_SBThread_GetDescription__SWIG_1()
63708 static int _wrap_SBThread_GetDescription(lua_State* L) { in _wrap_SBThread_GetDescription() argument
63714 argc = lua_gettop(L); in _wrap_SBThread_GetDescription()
63719 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_GetDescription()
63728 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_GetDescription()
63735 return _wrap_SBThread_GetDescription__SWIG_0(L); in _wrap_SBThread_GetDescription()
63743 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_GetDescription()
63752 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThread_GetDescription()
63760 _v = lua_isboolean(L,argv[2]); in _wrap_SBThread_GetDescription()
63763 return _wrap_SBThread_GetDescription__SWIG_1(L); in _wrap_SBThread_GetDescription()
63769 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThread_GetDescription'\n" in _wrap_SBThread_GetDescription()
63773 lua_error(L);return 0; in _wrap_SBThread_GetDescription()
63777 static int _wrap_SBThread_GetDescriptionWithFormat(lua_State* L) { in _wrap_SBThread_GetDescriptionWithFormat() argument
63786 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetDescriptionWithFormat",1,"lldb::SBThrea… in _wrap_SBThread_GetDescriptionWithFormat()
63787 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetDescriptionWithFormat",2,"lldb::SBForma… in _wrap_SBThread_GetDescriptionWithFormat()
63788 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThread::GetDescriptionWithFormat",3,"lldb::SBStrea… in _wrap_SBThread_GetDescriptionWithFormat()
63790 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetDescriptionWithFormat()
63795 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBFormat,0))){ in _wrap_SBThread_GetDescriptionWithFormat()
63800 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThread_GetDescriptionWithFormat()
63807 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBThread_GetDescriptionWithFormat()
63813 lua_error(L); in _wrap_SBThread_GetDescriptionWithFormat()
63818 static int _wrap_SBThread_GetStatus(lua_State* L) { in _wrap_SBThread_GetStatus() argument
63826 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetStatus",1,"lldb::SBThread const *"); in _wrap_SBThread_GetStatus()
63827 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThread::GetStatus",2,"lldb::SBStream &"); in _wrap_SBThread_GetStatus()
63829 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetStatus()
63834 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThread_GetStatus()
63839 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_GetStatus()
63844 lua_error(L); in _wrap_SBThread_GetStatus()
63849 static int _wrap_SBThread_GetExtendedBacktraceThread(lua_State* L) { in _wrap_SBThread_GetExtendedBacktraceThread() argument
63857 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetExtendedBacktraceThread",1,"lldb::SBThr… in _wrap_SBThread_GetExtendedBacktraceThread()
63858 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThread::GetExtendedBacktraceThread",2,"char … in _wrap_SBThread_GetExtendedBacktraceThread()
63860 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetExtendedBacktraceThread()
63864 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThread_GetExtendedBacktraceThread()
63868 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBThread_GetExtendedBacktraceThread()
63874 lua_error(L); in _wrap_SBThread_GetExtendedBacktraceThread()
63879 static int _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID(lua_State* L) { in _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID() argument
63886 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetExtendedBacktraceOriginatingIndexID",1,… in _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID()
63888 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID()
63893 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID()
63898 lua_error(L); in _wrap_SBThread_GetExtendedBacktraceOriginatingIndexID()
63903 static int _wrap_SBThread_GetCurrentException(lua_State* L) { in _wrap_SBThread_GetCurrentException() argument
63910 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetCurrentException",1,"lldb::SBThread *"); in _wrap_SBThread_GetCurrentException()
63912 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetCurrentException()
63919 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBThread_GetCurrentException()
63925 lua_error(L); in _wrap_SBThread_GetCurrentException()
63930 static int _wrap_SBThread_GetCurrentExceptionBacktrace(lua_State* L) { in _wrap_SBThread_GetCurrentExceptionBacktrace() argument
63937 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetCurrentExceptionBacktrace",1,"lldb::SBT… in _wrap_SBThread_GetCurrentExceptionBacktrace()
63939 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetCurrentExceptionBacktrace()
63946 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBThread_GetCurrentExceptionBacktrace()
63952 lua_error(L); in _wrap_SBThread_GetCurrentExceptionBacktrace()
63957 static int _wrap_SBThread_SafeToCallFunctions(lua_State* L) { in _wrap_SBThread_SafeToCallFunctions() argument
63964 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::SafeToCallFunctions",1,"lldb::SBThread *"); in _wrap_SBThread_SafeToCallFunctions()
63966 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_SafeToCallFunctions()
63971 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThread_SafeToCallFunctions()
63976 lua_error(L); in _wrap_SBThread_SafeToCallFunctions()
63981 static int _wrap_SBThread_GetSiginfo(lua_State* L) { in _wrap_SBThread_GetSiginfo() argument
63988 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::GetSiginfo",1,"lldb::SBThread *"); in _wrap_SBThread_GetSiginfo()
63990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread_GetSiginfo()
63997 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBThread_GetSiginfo()
64003 lua_error(L); in _wrap_SBThread_GetSiginfo()
64008 static int _wrap_SBThread___tostring(lua_State* L) { in _wrap_SBThread___tostring() argument
64015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThread::__repr__",1,"lldb::SBThread *"); in _wrap_SBThread___tostring()
64017 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBThread___tostring()
64022 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBThread___tostring()
64027 lua_error(L); in _wrap_SBThread___tostring()
64036 static int _proxy__wrap_new_SBThread(lua_State *L) { in _proxy__wrap_new_SBThread() argument
64037 assert(lua_istable(L,1)); in _proxy__wrap_new_SBThread()
64038 lua_pushcfunction(L,_wrap_new_SBThread); in _proxy__wrap_new_SBThread()
64039 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBThread()
64040 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBThread()
64041 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBThread()
64137 static int _wrap_new_SBThreadCollection__SWIG_0(lua_State* L) { in _wrap_new_SBThreadCollection__SWIG_0() argument
64144 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++; in _wrap_new_SBThreadCollection__SWIG_0()
64149 lua_error(L); in _wrap_new_SBThreadCollection__SWIG_0()
64154 static int _wrap_new_SBThreadCollection__SWIG_1(lua_State* L) { in _wrap_new_SBThreadCollection__SWIG_1() argument
64161 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::SBThreadCollection",1,"lldb::SBT… in _wrap_new_SBThreadCollection__SWIG_1()
64163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){ in _wrap_new_SBThreadCollection__SWIG_1()
64168 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadCollection,1); SWIG_arg++; in _wrap_new_SBThreadCollection__SWIG_1()
64173 lua_error(L); in _wrap_new_SBThreadCollection__SWIG_1()
64178 static int _wrap_new_SBThreadCollection(lua_State* L) { in _wrap_new_SBThreadCollection() argument
64184 argc = lua_gettop(L); in _wrap_new_SBThreadCollection()
64186 return _wrap_new_SBThreadCollection__SWIG_0(L); in _wrap_new_SBThreadCollection()
64192 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBThreadCollection()
64199 return _wrap_new_SBThreadCollection__SWIG_1(L); in _wrap_new_SBThreadCollection()
64203 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBThreadCollection'\n" in _wrap_new_SBThreadCollection()
64207 lua_error(L);return 0; in _wrap_new_SBThreadCollection()
64211 static int _wrap_SBThreadCollection_IsValid(lua_State* L) { in _wrap_SBThreadCollection_IsValid() argument
64218 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::IsValid",1,"lldb::SBThreadCollec… in _wrap_SBThreadCollection_IsValid()
64220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){ in _wrap_SBThreadCollection_IsValid()
64225 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadCollection_IsValid()
64230 lua_error(L); in _wrap_SBThreadCollection_IsValid()
64235 static int _wrap_SBThreadCollection_GetSize(lua_State* L) { in _wrap_SBThreadCollection_GetSize() argument
64242 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::GetSize",1,"lldb::SBThreadCollec… in _wrap_SBThreadCollection_GetSize()
64244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){ in _wrap_SBThreadCollection_GetSize()
64249 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThreadCollection_GetSize()
64254 lua_error(L); in _wrap_SBThreadCollection_GetSize()
64259 static int _wrap_SBThreadCollection_GetThreadAtIndex(lua_State* L) { in _wrap_SBThreadCollection_GetThreadAtIndex() argument
64267 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadCollection::GetThreadAtIndex",1,"lldb::SBThr… in _wrap_SBThreadCollection_GetThreadAtIndex()
64268 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadCollection::GetThreadAtIndex",2,"size_t"); in _wrap_SBThreadCollection_GetThreadAtIndex()
64270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadCollection,0))){ in _wrap_SBThreadCollection_GetThreadAtIndex()
64274 arg2 = (size_t)lua_tointeger(L, 2); in _wrap_SBThreadCollection_GetThreadAtIndex()
64278 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBThreadCollection_GetThreadAtIndex()
64284 lua_error(L); in _wrap_SBThreadCollection_GetThreadAtIndex()
64293 static int _proxy__wrap_new_SBThreadCollection(lua_State *L) { in _proxy__wrap_new_SBThreadCollection() argument
64294 assert(lua_istable(L,1)); in _proxy__wrap_new_SBThreadCollection()
64295 lua_pushcfunction(L,_wrap_new_SBThreadCollection); in _proxy__wrap_new_SBThreadCollection()
64296 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBThreadCollection()
64297 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBThreadCollection()
64298 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBThreadCollection()
64339 static int _wrap_new_SBThreadPlan__SWIG_0(lua_State* L) { in _wrap_new_SBThreadPlan__SWIG_0() argument
64346 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_new_SBThreadPlan__SWIG_0()
64351 lua_error(L); in _wrap_new_SBThreadPlan__SWIG_0()
64356 static int _wrap_new_SBThreadPlan__SWIG_1(lua_State* L) { in _wrap_new_SBThreadPlan__SWIG_1() argument
64363 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",1,"lldb::SBThreadPlan co… in _wrap_new_SBThreadPlan__SWIG_1()
64365 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_new_SBThreadPlan__SWIG_1()
64370 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_new_SBThreadPlan__SWIG_1()
64375 lua_error(L); in _wrap_new_SBThreadPlan__SWIG_1()
64380 static int _wrap_new_SBThreadPlan__SWIG_2(lua_State* L) { in _wrap_new_SBThreadPlan__SWIG_2() argument
64388 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",1,"lldb::SBThread &"); in _wrap_new_SBThreadPlan__SWIG_2()
64389 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",2,"char const *"); in _wrap_new_SBThreadPlan__SWIG_2()
64391 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_new_SBThreadPlan__SWIG_2()
64395 arg2 = (char *)lua_tostring(L, 2); in _wrap_new_SBThreadPlan__SWIG_2()
64397 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_new_SBThreadPlan__SWIG_2()
64402 lua_error(L); in _wrap_new_SBThreadPlan__SWIG_2()
64407 static int _wrap_new_SBThreadPlan__SWIG_3(lua_State* L) { in _wrap_new_SBThreadPlan__SWIG_3() argument
64416 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",1,"lldb::SBThread &"); in _wrap_new_SBThreadPlan__SWIG_3()
64417 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",2,"char const *"); in _wrap_new_SBThreadPlan__SWIG_3()
64418 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::SBThreadPlan",3,"lldb::SBStructuredDat… in _wrap_new_SBThreadPlan__SWIG_3()
64420 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_new_SBThreadPlan__SWIG_3()
64424 arg2 = (char *)lua_tostring(L, 2); in _wrap_new_SBThreadPlan__SWIG_3()
64426 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_new_SBThreadPlan__SWIG_3()
64431 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_new_SBThreadPlan__SWIG_3()
64436 lua_error(L); in _wrap_new_SBThreadPlan__SWIG_3()
64441 static int _wrap_new_SBThreadPlan(lua_State* L) { in _wrap_new_SBThreadPlan() argument
64447 argc = lua_gettop(L); in _wrap_new_SBThreadPlan()
64449 return _wrap_new_SBThreadPlan__SWIG_0(L); in _wrap_new_SBThreadPlan()
64455 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBThreadPlan()
64462 return _wrap_new_SBThreadPlan__SWIG_1(L); in _wrap_new_SBThreadPlan()
64469 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBThreadPlan()
64477 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBThreadPlan()
64480 return _wrap_new_SBThreadPlan__SWIG_2(L); in _wrap_new_SBThreadPlan()
64488 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBThreadPlan()
64496 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_new_SBThreadPlan()
64501 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBThreadPlan()
64508 return _wrap_new_SBThreadPlan__SWIG_3(L); in _wrap_new_SBThreadPlan()
64514 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBThreadPlan'\n" in _wrap_new_SBThreadPlan()
64520 lua_error(L);return 0; in _wrap_new_SBThreadPlan()
64524 static int _wrap_SBThreadPlan_IsValid__SWIG_0(lua_State* L) { in _wrap_SBThreadPlan_IsValid__SWIG_0() argument
64531 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsValid",1,"lldb::SBThreadPlan const *… in _wrap_SBThreadPlan_IsValid__SWIG_0()
64533 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_IsValid__SWIG_0()
64538 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadPlan_IsValid__SWIG_0()
64543 lua_error(L); in _wrap_SBThreadPlan_IsValid__SWIG_0()
64548 static int _wrap_SBThreadPlan_Clear(lua_State* L) { in _wrap_SBThreadPlan_Clear() argument
64554 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::Clear",1,"lldb::SBThreadPlan *"); in _wrap_SBThreadPlan_Clear()
64556 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_Clear()
64566 lua_error(L); in _wrap_SBThreadPlan_Clear()
64571 static int _wrap_SBThreadPlan_GetStopReason(lua_State* L) { in _wrap_SBThreadPlan_GetStopReason() argument
64578 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReason",1,"lldb::SBThreadPlan *… in _wrap_SBThreadPlan_GetStopReason()
64580 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_GetStopReason()
64585 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThreadPlan_GetStopReason()
64590 lua_error(L); in _wrap_SBThreadPlan_GetStopReason()
64595 static int _wrap_SBThreadPlan_GetStopReasonDataCount(lua_State* L) { in _wrap_SBThreadPlan_GetStopReasonDataCount() argument
64602 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReasonDataCount",1,"lldb::SBThr… in _wrap_SBThreadPlan_GetStopReasonDataCount()
64604 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_GetStopReasonDataCount()
64609 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThreadPlan_GetStopReasonDataCount()
64614 lua_error(L); in _wrap_SBThreadPlan_GetStopReasonDataCount()
64619 static int _wrap_SBThreadPlan_GetStopReasonDataAtIndex(lua_State* L) { in _wrap_SBThreadPlan_GetStopReasonDataAtIndex() argument
64627 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReasonDataAtIndex",1,"lldb::SBT… in _wrap_SBThreadPlan_GetStopReasonDataAtIndex()
64628 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopReasonDataAtIndex",2,"uint32_t"); in _wrap_SBThreadPlan_GetStopReasonDataAtIndex()
64630 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_GetStopReasonDataAtIndex()
64634 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThreadPlan_GetStopReasonDataAtIndex()
64636 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBThreadPlan_GetStopReasonDataAtIndex()
64641 lua_error(L); in _wrap_SBThreadPlan_GetStopReasonDataAtIndex()
64646 static int _wrap_SBThreadPlan_GetThread(lua_State* L) { in _wrap_SBThreadPlan_GetThread() argument
64653 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetThread",1,"lldb::SBThreadPlan const… in _wrap_SBThreadPlan_GetThread()
64655 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_GetThread()
64662 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBThreadPlan_GetThread()
64668 lua_error(L); in _wrap_SBThreadPlan_GetThread()
64673 static int _wrap_SBThreadPlan_GetDescription(lua_State* L) { in _wrap_SBThreadPlan_GetDescription() argument
64681 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetDescription",1,"lldb::SBThreadPlan … in _wrap_SBThreadPlan_GetDescription()
64682 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::GetDescription",2,"lldb::SBStream &"); in _wrap_SBThreadPlan_GetDescription()
64684 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_GetDescription()
64689 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBThreadPlan_GetDescription()
64694 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadPlan_GetDescription()
64699 lua_error(L); in _wrap_SBThreadPlan_GetDescription()
64704 static int _wrap_SBThreadPlan_SetPlanComplete(lua_State* L) { in _wrap_SBThreadPlan_SetPlanComplete() argument
64711 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SetPlanComplete",1,"lldb::SBThreadPlan… in _wrap_SBThreadPlan_SetPlanComplete()
64712 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SetPlanComplete",2,"bool"); in _wrap_SBThreadPlan_SetPlanComplete()
64714 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_SetPlanComplete()
64718 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBThreadPlan_SetPlanComplete()
64725 lua_error(L); in _wrap_SBThreadPlan_SetPlanComplete()
64730 static int _wrap_SBThreadPlan_IsPlanComplete(lua_State* L) { in _wrap_SBThreadPlan_IsPlanComplete() argument
64737 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsPlanComplete",1,"lldb::SBThreadPlan … in _wrap_SBThreadPlan_IsPlanComplete()
64739 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_IsPlanComplete()
64744 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadPlan_IsPlanComplete()
64749 lua_error(L); in _wrap_SBThreadPlan_IsPlanComplete()
64754 static int _wrap_SBThreadPlan_IsPlanStale(lua_State* L) { in _wrap_SBThreadPlan_IsPlanStale() argument
64761 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsPlanStale",1,"lldb::SBThreadPlan *"); in _wrap_SBThreadPlan_IsPlanStale()
64763 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_IsPlanStale()
64768 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadPlan_IsPlanStale()
64773 lua_error(L); in _wrap_SBThreadPlan_IsPlanStale()
64778 static int _wrap_SBThreadPlan_IsValid__SWIG_1(lua_State* L) { in _wrap_SBThreadPlan_IsValid__SWIG_1() argument
64785 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::IsValid",1,"lldb::SBThreadPlan *"); in _wrap_SBThreadPlan_IsValid__SWIG_1()
64787 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_IsValid__SWIG_1()
64792 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadPlan_IsValid__SWIG_1()
64797 lua_error(L); in _wrap_SBThreadPlan_IsValid__SWIG_1()
64802 static int _wrap_SBThreadPlan_IsValid(lua_State* L) { in _wrap_SBThreadPlan_IsValid() argument
64808 argc = lua_gettop(L); in _wrap_SBThreadPlan_IsValid()
64813 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_IsValid()
64820 return _wrap_SBThreadPlan_IsValid__SWIG_1(L); in _wrap_SBThreadPlan_IsValid()
64827 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_IsValid()
64834 return _wrap_SBThreadPlan_IsValid__SWIG_0(L); in _wrap_SBThreadPlan_IsValid()
64838 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_IsValid'\n" in _wrap_SBThreadPlan_IsValid()
64842 lua_error(L);return 0; in _wrap_SBThreadPlan_IsValid()
64846 static int _wrap_SBThreadPlan_GetStopOthers(lua_State* L) { in _wrap_SBThreadPlan_GetStopOthers() argument
64853 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::GetStopOthers",1,"lldb::SBThreadPlan *… in _wrap_SBThreadPlan_GetStopOthers()
64855 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_GetStopOthers()
64860 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBThreadPlan_GetStopOthers()
64865 lua_error(L); in _wrap_SBThreadPlan_GetStopOthers()
64870 static int _wrap_SBThreadPlan_SetStopOthers(lua_State* L) { in _wrap_SBThreadPlan_SetStopOthers() argument
64877 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::SetStopOthers",1,"lldb::SBThreadPlan *… in _wrap_SBThreadPlan_SetStopOthers()
64878 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::SetStopOthers",2,"bool"); in _wrap_SBThreadPlan_SetStopOthers()
64880 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_SetStopOthers()
64884 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBThreadPlan_SetStopOthers()
64891 lua_error(L); in _wrap_SBThreadPlan_SetStopOthers()
64896 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0() argument
64905 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",1,"ll… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64906 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",2,"ll… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64907 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",3,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64909 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64914 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64918 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64922 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64928 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0()
64933 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1() argument
64943 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",1,"ll… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64944 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",2,"ll… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64945 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",3,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64946 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOverRange",4,"ll… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64948 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64953 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64957 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64959 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64966 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64972 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1()
64977 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange() argument
64983 argc = lua_gettop(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
64988 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
64997 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65005 _v = lua_isnumber(L,argv[2]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65008 return _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_0(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65017 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65026 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65034 _v = lua_isnumber(L,argv[2]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65039 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65046 return _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange__SWIG_1(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65053 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanFor… in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65057 lua_error(L);return 0; in _wrap_SBThreadPlan_QueueThreadPlanForStepOverRange()
65061 static int _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0() argument
65070 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",1,"lldb… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65071 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",2,"lldb… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65072 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",3,"lldb:… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65074 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65083 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65087 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65093 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0()
65098 static int _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1() argument
65108 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",1,"lldb… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65109 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",2,"lldb… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65110 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",3,"lldb:… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65111 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepInRange",4,"lldb… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65113 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65118 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65122 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65131 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65137 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1()
65142 static int _wrap_SBThreadPlan_QueueThreadPlanForStepInRange(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange() argument
65148 argc = lua_gettop(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65153 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65162 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65170 _v = lua_isnumber(L,argv[2]); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65173 return _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_0(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65182 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65191 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65199 _v = lua_isnumber(L,argv[2]); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65204 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65211 return _wrap_SBThreadPlan_QueueThreadPlanForStepInRange__SWIG_1(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65218 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanFor… in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65222 lua_error(L);return 0; in _wrap_SBThreadPlan_QueueThreadPlanForStepInRange()
65226 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0() argument
65235 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",1,"lldb::SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65236 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",2,"uint32_t"… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65237 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",3,"bool"); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65239 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65243 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65244 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65248 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65254 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0()
65259 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1() argument
65267 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",1,"lldb::SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1()
65268 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",2,"uint32_t"… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1()
65270 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1()
65274 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1()
65278 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1()
65284 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1()
65289 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2() argument
65299 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",1,"lldb::SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65300 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",2,"uint32_t"… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65301 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",3,"bool"); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65302 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepOut",4,"lldb::SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65304 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65308 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65309 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65311 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65318 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65324 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2()
65329 static int _wrap_SBThreadPlan_QueueThreadPlanForStepOut(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepOut() argument
65335 argc = lua_gettop(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65340 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65348 _v = lua_isnumber(L,argv[1]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65351 return _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_1(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65359 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65367 _v = lua_isnumber(L,argv[1]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65371 _v = lua_isboolean(L,argv[2]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65374 return _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_0(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65383 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65391 _v = lua_isnumber(L,argv[1]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65395 _v = lua_isboolean(L,argv[2]); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65400 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65407 return _wrap_SBThreadPlan_QueueThreadPlanForStepOut__SWIG_2(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65414 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanFor… in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65419 lua_error(L);return 0; in _wrap_SBThreadPlan_QueueThreadPlanForStepOut()
65423 static int _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0() argument
65432 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",1,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0()
65433 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",2,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0()
65435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0()
65440 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0()
65448 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0()
65454 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0()
65459 static int _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1() argument
65469 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",1,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65470 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",2,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65471 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForRunToAddress",3,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65473 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBAddress,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65484 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65491 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65497 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1()
65502 static int _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress() argument
65508 argc = lua_gettop(L); in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65513 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65522 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65529 return _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_0(L); in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65537 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65546 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65555 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65562 return _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress__SWIG_1(L); in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65568 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanFor… in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65572 lua_error(L);return 0; in _wrap_SBThreadPlan_QueueThreadPlanForRunToAddress()
65576 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0() argument
65584 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",1,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0()
65585 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0()
65587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0()
65591 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0()
65595 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0()
65601 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0()
65606 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1() argument
65615 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",1,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65616 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65617 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",3,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65623 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65625 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65632 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65638 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1()
65643 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2() argument
65653 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",1,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65654 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65655 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",3,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65656 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBThreadPlan::QueueThreadPlanForStepScripted",4,"lld… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65658 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBThreadPlan,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65662 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65669 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65676 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThreadPlan,1); SWIG_arg++; in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65682 lua_error(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2()
65687 static int _wrap_SBThreadPlan_QueueThreadPlanForStepScripted(lua_State* L) { in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted() argument
65693 argc = lua_gettop(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65698 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65706 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65709 return _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_0(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65717 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65725 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65730 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65737 return _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_1(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65746 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65754 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65759 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65768 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65775 return _wrap_SBThreadPlan_QueueThreadPlanForStepScripted__SWIG_2(L); in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65782 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBThreadPlan_QueueThreadPlanFor… in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65787 lua_error(L);return 0; in _wrap_SBThreadPlan_QueueThreadPlanForStepScripted()
65795 static int _proxy__wrap_new_SBThreadPlan(lua_State *L) { in _proxy__wrap_new_SBThreadPlan() argument
65796 assert(lua_istable(L,1)); in _proxy__wrap_new_SBThreadPlan()
65797 lua_pushcfunction(L,_wrap_new_SBThreadPlan); in _proxy__wrap_new_SBThreadPlan()
65798 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBThreadPlan()
65799 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBThreadPlan()
65800 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBThreadPlan()
65855 static int _wrap_new_SBTrace(lua_State* L) { in _wrap_new_SBTrace() argument
65862 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++; in _wrap_new_SBTrace()
65867 lua_error(L); in _wrap_new_SBTrace()
65872 static int _wrap_SBTrace_LoadTraceFromFile(lua_State* L) { in _wrap_SBTrace_LoadTraceFromFile() argument
65881 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTrace::LoadTraceFromFile",1,"lldb::SBError &"); in _wrap_SBTrace_LoadTraceFromFile()
65882 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::LoadTraceFromFile",2,"lldb::SBDebugger &"); in _wrap_SBTrace_LoadTraceFromFile()
65883 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::LoadTraceFromFile",3,"lldb::SBFileSpec cons… in _wrap_SBTrace_LoadTraceFromFile()
65885 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTrace_LoadTraceFromFile()
65890 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBDebugger,0))){ in _wrap_SBTrace_LoadTraceFromFile()
65895 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTrace_LoadTraceFromFile()
65902 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTrace,1); SWIG_arg++; in _wrap_SBTrace_LoadTraceFromFile()
65908 lua_error(L); in _wrap_SBTrace_LoadTraceFromFile()
65913 static int _wrap_SBTrace_CreateNewCursor(lua_State* L) { in _wrap_SBTrace_CreateNewCursor() argument
65922 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::CreateNewCursor",1,"lldb::SBTrace *"); in _wrap_SBTrace_CreateNewCursor()
65923 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::CreateNewCursor",2,"lldb::SBError &"); in _wrap_SBTrace_CreateNewCursor()
65924 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::CreateNewCursor",3,"lldb::SBThread &"); in _wrap_SBTrace_CreateNewCursor()
65926 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_CreateNewCursor()
65931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTrace_CreateNewCursor()
65936 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBTrace_CreateNewCursor()
65943 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTraceCursor,1); SWIG_arg++; in _wrap_SBTrace_CreateNewCursor()
65949 lua_error(L); in _wrap_SBTrace_CreateNewCursor()
65954 static int _wrap_SBTrace_SaveToDisk__SWIG_0(lua_State* L) { in _wrap_SBTrace_SaveToDisk__SWIG_0() argument
65964 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",1,"lldb::SBTrace *"); in _wrap_SBTrace_SaveToDisk__SWIG_0()
65965 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",2,"lldb::SBError &"); in _wrap_SBTrace_SaveToDisk__SWIG_0()
65966 … if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",3,"lldb::SBFileSpec const &"); in _wrap_SBTrace_SaveToDisk__SWIG_0()
65967 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",4,"bool"); in _wrap_SBTrace_SaveToDisk__SWIG_0()
65969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_SaveToDisk__SWIG_0()
65974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTrace_SaveToDisk__SWIG_0()
65979 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTrace_SaveToDisk__SWIG_0()
65983 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBTrace_SaveToDisk__SWIG_0()
65987 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBTrace_SaveToDisk__SWIG_0()
65993 lua_error(L); in _wrap_SBTrace_SaveToDisk__SWIG_0()
65998 static int _wrap_SBTrace_SaveToDisk__SWIG_1(lua_State* L) { in _wrap_SBTrace_SaveToDisk__SWIG_1() argument
66007 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",1,"lldb::SBTrace *"); in _wrap_SBTrace_SaveToDisk__SWIG_1()
66008 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",2,"lldb::SBError &"); in _wrap_SBTrace_SaveToDisk__SWIG_1()
66009 … if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::SaveToDisk",3,"lldb::SBFileSpec const &"); in _wrap_SBTrace_SaveToDisk__SWIG_1()
66011 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_SaveToDisk__SWIG_1()
66016 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBTrace_SaveToDisk__SWIG_1()
66021 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBFileSpec,0))){ in _wrap_SBTrace_SaveToDisk__SWIG_1()
66028 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFileSpec,1); SWIG_arg++; in _wrap_SBTrace_SaveToDisk__SWIG_1()
66034 lua_error(L); in _wrap_SBTrace_SaveToDisk__SWIG_1()
66039 static int _wrap_SBTrace_SaveToDisk(lua_State* L) { in _wrap_SBTrace_SaveToDisk() argument
66045 argc = lua_gettop(L); in _wrap_SBTrace_SaveToDisk()
66050 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_SaveToDisk()
66059 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_SaveToDisk()
66068 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_SaveToDisk()
66075 return _wrap_SBTrace_SaveToDisk__SWIG_1(L); in _wrap_SBTrace_SaveToDisk()
66084 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_SaveToDisk()
66093 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_SaveToDisk()
66102 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_SaveToDisk()
66110 _v = lua_isboolean(L,argv[3]); in _wrap_SBTrace_SaveToDisk()
66113 return _wrap_SBTrace_SaveToDisk__SWIG_0(L); in _wrap_SBTrace_SaveToDisk()
66120 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTrace_SaveToDisk'\n" in _wrap_SBTrace_SaveToDisk()
66124 lua_error(L);return 0; in _wrap_SBTrace_SaveToDisk()
66128 static int _wrap_SBTrace_GetStartConfigurationHelp(lua_State* L) { in _wrap_SBTrace_GetStartConfigurationHelp() argument
66135 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::GetStartConfigurationHelp",1,"lldb::SBTrace… in _wrap_SBTrace_GetStartConfigurationHelp()
66137 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_GetStartConfigurationHelp()
66142 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTrace_GetStartConfigurationHelp()
66147 lua_error(L); in _wrap_SBTrace_GetStartConfigurationHelp()
66152 static int _wrap_SBTrace_Start__SWIG_0(lua_State* L) { in _wrap_SBTrace_Start__SWIG_0() argument
66160 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Start",1,"lldb::SBTrace *"); in _wrap_SBTrace_Start__SWIG_0()
66161 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::Start",2,"lldb::SBStructuredData const &"); in _wrap_SBTrace_Start__SWIG_0()
66163 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_Start__SWIG_0()
66168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBTrace_Start__SWIG_0()
66175 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTrace_Start__SWIG_0()
66181 lua_error(L); in _wrap_SBTrace_Start__SWIG_0()
66186 static int _wrap_SBTrace_Start__SWIG_1(lua_State* L) { in _wrap_SBTrace_Start__SWIG_1() argument
66195 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Start",1,"lldb::SBTrace *"); in _wrap_SBTrace_Start__SWIG_1()
66196 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::Start",2,"lldb::SBThread const &"); in _wrap_SBTrace_Start__SWIG_1()
66197 … if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTrace::Start",3,"lldb::SBStructuredData const &"); in _wrap_SBTrace_Start__SWIG_1()
66199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_Start__SWIG_1()
66204 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBTrace_Start__SWIG_1()
66209 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBStructuredData,0))){ in _wrap_SBTrace_Start__SWIG_1()
66216 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTrace_Start__SWIG_1()
66222 lua_error(L); in _wrap_SBTrace_Start__SWIG_1()
66227 static int _wrap_SBTrace_Start(lua_State* L) { in _wrap_SBTrace_Start() argument
66233 argc = lua_gettop(L); in _wrap_SBTrace_Start()
66238 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Start()
66247 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Start()
66254 return _wrap_SBTrace_Start__SWIG_0(L); in _wrap_SBTrace_Start()
66262 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Start()
66271 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Start()
66280 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Start()
66287 return _wrap_SBTrace_Start__SWIG_1(L); in _wrap_SBTrace_Start()
66293 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTrace_Start'\n" in _wrap_SBTrace_Start()
66297 lua_error(L);return 0; in _wrap_SBTrace_Start()
66301 static int _wrap_SBTrace_Stop__SWIG_0(lua_State* L) { in _wrap_SBTrace_Stop__SWIG_0() argument
66308 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Stop",1,"lldb::SBTrace *"); in _wrap_SBTrace_Stop__SWIG_0()
66310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_Stop__SWIG_0()
66317 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTrace_Stop__SWIG_0()
66323 lua_error(L); in _wrap_SBTrace_Stop__SWIG_0()
66328 static int _wrap_SBTrace_Stop__SWIG_1(lua_State* L) { in _wrap_SBTrace_Stop__SWIG_1() argument
66336 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::Stop",1,"lldb::SBTrace *"); in _wrap_SBTrace_Stop__SWIG_1()
66337 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTrace::Stop",2,"lldb::SBThread const &"); in _wrap_SBTrace_Stop__SWIG_1()
66339 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_Stop__SWIG_1()
66344 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBThread,0))){ in _wrap_SBTrace_Stop__SWIG_1()
66351 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBTrace_Stop__SWIG_1()
66357 lua_error(L); in _wrap_SBTrace_Stop__SWIG_1()
66362 static int _wrap_SBTrace_Stop(lua_State* L) { in _wrap_SBTrace_Stop() argument
66368 argc = lua_gettop(L); in _wrap_SBTrace_Stop()
66373 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Stop()
66380 return _wrap_SBTrace_Stop__SWIG_0(L); in _wrap_SBTrace_Stop()
66387 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Stop()
66396 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBTrace_Stop()
66403 return _wrap_SBTrace_Stop__SWIG_1(L); in _wrap_SBTrace_Stop()
66408 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTrace_Stop'\n" in _wrap_SBTrace_Stop()
66412 lua_error(L);return 0; in _wrap_SBTrace_Stop()
66416 static int _wrap_SBTrace_IsValid(lua_State* L) { in _wrap_SBTrace_IsValid() argument
66423 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTrace::IsValid",1,"lldb::SBTrace *"); in _wrap_SBTrace_IsValid()
66425 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTrace,0))){ in _wrap_SBTrace_IsValid()
66430 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTrace_IsValid()
66435 lua_error(L); in _wrap_SBTrace_IsValid()
66444 static int _proxy__wrap_new_SBTrace(lua_State *L) { in _proxy__wrap_new_SBTrace() argument
66445 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTrace()
66446 lua_pushcfunction(L,_wrap_new_SBTrace); in _proxy__wrap_new_SBTrace()
66447 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTrace()
66448 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTrace()
66449 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTrace()
66494 static int _wrap_new_SBTraceCursor(lua_State* L) { in _wrap_new_SBTraceCursor() argument
66501 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTraceCursor,1); SWIG_arg++; in _wrap_new_SBTraceCursor()
66506 lua_error(L); in _wrap_new_SBTraceCursor()
66511 static int _wrap_SBTraceCursor_SetForwards(lua_State* L) { in _wrap_SBTraceCursor_SetForwards() argument
66518 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::SetForwards",1,"lldb::SBTraceCursor *… in _wrap_SBTraceCursor_SetForwards()
66519 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::SetForwards",2,"bool"); in _wrap_SBTraceCursor_SetForwards()
66521 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_SetForwards()
66525 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBTraceCursor_SetForwards()
66532 lua_error(L); in _wrap_SBTraceCursor_SetForwards()
66537 static int _wrap_SBTraceCursor_IsForwards(lua_State* L) { in _wrap_SBTraceCursor_IsForwards() argument
66544 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsForwards",1,"lldb::SBTraceCursor co… in _wrap_SBTraceCursor_IsForwards()
66546 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_IsForwards()
66551 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_IsForwards()
66556 lua_error(L); in _wrap_SBTraceCursor_IsForwards()
66561 static int _wrap_SBTraceCursor_Next(lua_State* L) { in _wrap_SBTraceCursor_Next() argument
66567 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::Next",1,"lldb::SBTraceCursor *"); in _wrap_SBTraceCursor_Next()
66569 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_Next()
66579 lua_error(L); in _wrap_SBTraceCursor_Next()
66584 static int _wrap_SBTraceCursor_HasValue(lua_State* L) { in _wrap_SBTraceCursor_HasValue() argument
66591 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::HasValue",1,"lldb::SBTraceCursor cons… in _wrap_SBTraceCursor_HasValue()
66593 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_HasValue()
66598 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_HasValue()
66603 lua_error(L); in _wrap_SBTraceCursor_HasValue()
66608 static int _wrap_SBTraceCursor_GoToId(lua_State* L) { in _wrap_SBTraceCursor_GoToId() argument
66616 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GoToId",1,"lldb::SBTraceCursor *"); in _wrap_SBTraceCursor_GoToId()
66617 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::GoToId",2,"lldb::user_id_t"); in _wrap_SBTraceCursor_GoToId()
66619 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GoToId()
66623 arg2 = (lldb::user_id_t)lua_tointeger(L, 2); in _wrap_SBTraceCursor_GoToId()
66625 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_GoToId()
66630 lua_error(L); in _wrap_SBTraceCursor_GoToId()
66635 static int _wrap_SBTraceCursor_HasId(lua_State* L) { in _wrap_SBTraceCursor_HasId() argument
66643 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::HasId",1,"lldb::SBTraceCursor const *… in _wrap_SBTraceCursor_HasId()
66644 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::HasId",2,"lldb::user_id_t"); in _wrap_SBTraceCursor_HasId()
66646 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_HasId()
66650 arg2 = (lldb::user_id_t)lua_tointeger(L, 2); in _wrap_SBTraceCursor_HasId()
66652 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_HasId()
66657 lua_error(L); in _wrap_SBTraceCursor_HasId()
66662 static int _wrap_SBTraceCursor_GetId(lua_State* L) { in _wrap_SBTraceCursor_GetId() argument
66669 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetId",1,"lldb::SBTraceCursor const *… in _wrap_SBTraceCursor_GetId()
66671 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetId()
66676 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTraceCursor_GetId()
66681 lua_error(L); in _wrap_SBTraceCursor_GetId()
66686 static int _wrap_SBTraceCursor_Seek(lua_State* L) { in _wrap_SBTraceCursor_Seek() argument
66695 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::Seek",1,"lldb::SBTraceCursor *"); in _wrap_SBTraceCursor_Seek()
66696 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTraceCursor::Seek",2,"int64_t"); in _wrap_SBTraceCursor_Seek()
66697 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTraceCursor::Seek",3,"lldb::TraceCursorSeekType"); in _wrap_SBTraceCursor_Seek()
66699 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_Seek()
66703 arg2 = (int64_t)lua_tointeger(L, 2); in _wrap_SBTraceCursor_Seek()
66704 arg3 = (lldb::TraceCursorSeekType)lua_tointeger(L, 3); in _wrap_SBTraceCursor_Seek()
66706 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_Seek()
66711 lua_error(L); in _wrap_SBTraceCursor_Seek()
66716 static int _wrap_SBTraceCursor_GetItemKind(lua_State* L) { in _wrap_SBTraceCursor_GetItemKind() argument
66723 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetItemKind",1,"lldb::SBTraceCursor c… in _wrap_SBTraceCursor_GetItemKind()
66725 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetItemKind()
66730 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTraceCursor_GetItemKind()
66735 lua_error(L); in _wrap_SBTraceCursor_GetItemKind()
66740 static int _wrap_SBTraceCursor_IsError(lua_State* L) { in _wrap_SBTraceCursor_IsError() argument
66747 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsError",1,"lldb::SBTraceCursor const… in _wrap_SBTraceCursor_IsError()
66749 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_IsError()
66754 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_IsError()
66759 lua_error(L); in _wrap_SBTraceCursor_IsError()
66764 static int _wrap_SBTraceCursor_GetError(lua_State* L) { in _wrap_SBTraceCursor_GetError() argument
66771 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetError",1,"lldb::SBTraceCursor cons… in _wrap_SBTraceCursor_GetError()
66773 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetError()
66778 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTraceCursor_GetError()
66783 lua_error(L); in _wrap_SBTraceCursor_GetError()
66788 static int _wrap_SBTraceCursor_IsEvent(lua_State* L) { in _wrap_SBTraceCursor_IsEvent() argument
66795 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsEvent",1,"lldb::SBTraceCursor const… in _wrap_SBTraceCursor_IsEvent()
66797 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_IsEvent()
66802 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_IsEvent()
66807 lua_error(L); in _wrap_SBTraceCursor_IsEvent()
66812 static int _wrap_SBTraceCursor_GetEventType(lua_State* L) { in _wrap_SBTraceCursor_GetEventType() argument
66819 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetEventType",1,"lldb::SBTraceCursor … in _wrap_SBTraceCursor_GetEventType()
66821 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetEventType()
66826 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTraceCursor_GetEventType()
66831 lua_error(L); in _wrap_SBTraceCursor_GetEventType()
66836 static int _wrap_SBTraceCursor_GetEventTypeAsString(lua_State* L) { in _wrap_SBTraceCursor_GetEventTypeAsString() argument
66843 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetEventTypeAsString",1,"lldb::SBTrac… in _wrap_SBTraceCursor_GetEventTypeAsString()
66845 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetEventTypeAsString()
66850 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTraceCursor_GetEventTypeAsString()
66855 lua_error(L); in _wrap_SBTraceCursor_GetEventTypeAsString()
66860 static int _wrap_SBTraceCursor_IsInstruction(lua_State* L) { in _wrap_SBTraceCursor_IsInstruction() argument
66867 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsInstruction",1,"lldb::SBTraceCursor… in _wrap_SBTraceCursor_IsInstruction()
66869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_IsInstruction()
66874 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_IsInstruction()
66879 lua_error(L); in _wrap_SBTraceCursor_IsInstruction()
66884 static int _wrap_SBTraceCursor_GetLoadAddress(lua_State* L) { in _wrap_SBTraceCursor_GetLoadAddress() argument
66891 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetLoadAddress",1,"lldb::SBTraceCurso… in _wrap_SBTraceCursor_GetLoadAddress()
66893 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetLoadAddress()
66898 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTraceCursor_GetLoadAddress()
66903 lua_error(L); in _wrap_SBTraceCursor_GetLoadAddress()
66908 static int _wrap_SBTraceCursor_GetCPU(lua_State* L) { in _wrap_SBTraceCursor_GetCPU() argument
66915 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::GetCPU",1,"lldb::SBTraceCursor const … in _wrap_SBTraceCursor_GetCPU()
66917 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_GetCPU()
66922 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTraceCursor_GetCPU()
66927 lua_error(L); in _wrap_SBTraceCursor_GetCPU()
66932 static int _wrap_SBTraceCursor_IsValid(lua_State* L) { in _wrap_SBTraceCursor_IsValid() argument
66939 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTraceCursor::IsValid",1,"lldb::SBTraceCursor const… in _wrap_SBTraceCursor_IsValid()
66941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTraceCursor,0))){ in _wrap_SBTraceCursor_IsValid()
66946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTraceCursor_IsValid()
66951 lua_error(L); in _wrap_SBTraceCursor_IsValid()
66960 static int _proxy__wrap_new_SBTraceCursor(lua_State *L) { in _proxy__wrap_new_SBTraceCursor() argument
66961 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTraceCursor()
66962 lua_pushcfunction(L,_wrap_new_SBTraceCursor); in _proxy__wrap_new_SBTraceCursor()
66963 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTraceCursor()
66964 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTraceCursor()
66965 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTraceCursor()
67021 static int _wrap_new_SBTypeMember__SWIG_0(lua_State* L) { in _wrap_new_SBTypeMember__SWIG_0() argument
67028 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++; in _wrap_new_SBTypeMember__SWIG_0()
67033 lua_error(L); in _wrap_new_SBTypeMember__SWIG_0()
67038 static int _wrap_new_SBTypeMember__SWIG_1(lua_State* L) { in _wrap_new_SBTypeMember__SWIG_1() argument
67045 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeMember::SBTypeMember",1,"lldb::SBTypeMember co… in _wrap_new_SBTypeMember__SWIG_1()
67047 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_new_SBTypeMember__SWIG_1()
67052 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++; in _wrap_new_SBTypeMember__SWIG_1()
67057 lua_error(L); in _wrap_new_SBTypeMember__SWIG_1()
67062 static int _wrap_new_SBTypeMember(lua_State* L) { in _wrap_new_SBTypeMember() argument
67068 argc = lua_gettop(L); in _wrap_new_SBTypeMember()
67070 return _wrap_new_SBTypeMember__SWIG_0(L); in _wrap_new_SBTypeMember()
67076 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeMember()
67083 return _wrap_new_SBTypeMember__SWIG_1(L); in _wrap_new_SBTypeMember()
67087 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeMember'\n" in _wrap_new_SBTypeMember()
67091 lua_error(L);return 0; in _wrap_new_SBTypeMember()
67095 static int _wrap_SBTypeMember_IsValid(lua_State* L) { in _wrap_SBTypeMember_IsValid() argument
67102 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::IsValid",1,"lldb::SBTypeMember const *… in _wrap_SBTypeMember_IsValid()
67104 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_IsValid()
67109 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeMember_IsValid()
67114 lua_error(L); in _wrap_SBTypeMember_IsValid()
67119 static int _wrap_SBTypeMember_GetName(lua_State* L) { in _wrap_SBTypeMember_GetName() argument
67126 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetName",1,"lldb::SBTypeMember *"); in _wrap_SBTypeMember_GetName()
67128 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_GetName()
67133 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeMember_GetName()
67138 lua_error(L); in _wrap_SBTypeMember_GetName()
67143 static int _wrap_SBTypeMember_GetType(lua_State* L) { in _wrap_SBTypeMember_GetType() argument
67150 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetType",1,"lldb::SBTypeMember *"); in _wrap_SBTypeMember_GetType()
67152 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_GetType()
67159 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeMember_GetType()
67165 lua_error(L); in _wrap_SBTypeMember_GetType()
67170 static int _wrap_SBTypeMember_GetOffsetInBytes(lua_State* L) { in _wrap_SBTypeMember_GetOffsetInBytes() argument
67177 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetOffsetInBytes",1,"lldb::SBTypeMembe… in _wrap_SBTypeMember_GetOffsetInBytes()
67179 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_GetOffsetInBytes()
67184 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeMember_GetOffsetInBytes()
67189 lua_error(L); in _wrap_SBTypeMember_GetOffsetInBytes()
67194 static int _wrap_SBTypeMember_GetOffsetInBits(lua_State* L) { in _wrap_SBTypeMember_GetOffsetInBits() argument
67201 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetOffsetInBits",1,"lldb::SBTypeMember… in _wrap_SBTypeMember_GetOffsetInBits()
67203 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_GetOffsetInBits()
67208 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeMember_GetOffsetInBits()
67213 lua_error(L); in _wrap_SBTypeMember_GetOffsetInBits()
67218 static int _wrap_SBTypeMember_IsBitfield(lua_State* L) { in _wrap_SBTypeMember_IsBitfield() argument
67225 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::IsBitfield",1,"lldb::SBTypeMember *"); in _wrap_SBTypeMember_IsBitfield()
67227 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_IsBitfield()
67232 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeMember_IsBitfield()
67237 lua_error(L); in _wrap_SBTypeMember_IsBitfield()
67242 static int _wrap_SBTypeMember_GetBitfieldSizeInBits(lua_State* L) { in _wrap_SBTypeMember_GetBitfieldSizeInBits() argument
67249 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetBitfieldSizeInBits",1,"lldb::SBType… in _wrap_SBTypeMember_GetBitfieldSizeInBits()
67251 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_GetBitfieldSizeInBits()
67256 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeMember_GetBitfieldSizeInBits()
67261 lua_error(L); in _wrap_SBTypeMember_GetBitfieldSizeInBits()
67266 static int _wrap_SBTypeMember_GetDescription(lua_State* L) { in _wrap_SBTypeMember_GetDescription() argument
67275 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::GetDescription",1,"lldb::SBTypeMember … in _wrap_SBTypeMember_GetDescription()
67276 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeMember::GetDescription",2,"lldb::SBStream &"); in _wrap_SBTypeMember_GetDescription()
67277 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeMember::GetDescription",3,"lldb::DescriptionLev… in _wrap_SBTypeMember_GetDescription()
67279 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember_GetDescription()
67284 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeMember_GetDescription()
67288 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeMember_GetDescription()
67290 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeMember_GetDescription()
67295 lua_error(L); in _wrap_SBTypeMember_GetDescription()
67300 static int _wrap_SBTypeMember___tostring(lua_State* L) { in _wrap_SBTypeMember___tostring() argument
67307 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMember::__repr__",1,"lldb::SBTypeMember *"); in _wrap_SBTypeMember___tostring()
67309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMember,0))){ in _wrap_SBTypeMember___tostring()
67314 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeMember___tostring()
67319 lua_error(L); in _wrap_SBTypeMember___tostring()
67328 static int _proxy__wrap_new_SBTypeMember(lua_State *L) { in _proxy__wrap_new_SBTypeMember() argument
67329 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeMember()
67330 lua_pushcfunction(L,_wrap_new_SBTypeMember); in _proxy__wrap_new_SBTypeMember()
67331 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeMember()
67332 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeMember()
67333 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeMember()
67381 static int _wrap_new_SBTypeMemberFunction__SWIG_0(lua_State* L) { in _wrap_new_SBTypeMemberFunction__SWIG_0() argument
67388 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMemberFunction,1); SWIG_arg++; in _wrap_new_SBTypeMemberFunction__SWIG_0()
67393 lua_error(L); in _wrap_new_SBTypeMemberFunction__SWIG_0()
67398 static int _wrap_new_SBTypeMemberFunction__SWIG_1(lua_State* L) { in _wrap_new_SBTypeMemberFunction__SWIG_1() argument
67405 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::SBTypeMemberFunction",1,"lldb:… in _wrap_new_SBTypeMemberFunction__SWIG_1()
67407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_new_SBTypeMemberFunction__SWIG_1()
67412 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeMemberFunction,1); SWIG_arg++; in _wrap_new_SBTypeMemberFunction__SWIG_1()
67417 lua_error(L); in _wrap_new_SBTypeMemberFunction__SWIG_1()
67422 static int _wrap_new_SBTypeMemberFunction(lua_State* L) { in _wrap_new_SBTypeMemberFunction() argument
67428 argc = lua_gettop(L); in _wrap_new_SBTypeMemberFunction()
67430 return _wrap_new_SBTypeMemberFunction__SWIG_0(L); in _wrap_new_SBTypeMemberFunction()
67436 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeMemberFunction()
67443 return _wrap_new_SBTypeMemberFunction__SWIG_1(L); in _wrap_new_SBTypeMemberFunction()
67447 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeMemberFunction'\n" in _wrap_new_SBTypeMemberFunction()
67451 lua_error(L);return 0; in _wrap_new_SBTypeMemberFunction()
67455 static int _wrap_SBTypeMemberFunction_IsValid(lua_State* L) { in _wrap_SBTypeMemberFunction_IsValid() argument
67462 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::IsValid",1,"lldb::SBTypeMember… in _wrap_SBTypeMemberFunction_IsValid()
67464 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_IsValid()
67469 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeMemberFunction_IsValid()
67474 lua_error(L); in _wrap_SBTypeMemberFunction_IsValid()
67479 static int _wrap_SBTypeMemberFunction_GetName(lua_State* L) { in _wrap_SBTypeMemberFunction_GetName() argument
67486 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetName",1,"lldb::SBTypeMember… in _wrap_SBTypeMemberFunction_GetName()
67488 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetName()
67493 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetName()
67498 lua_error(L); in _wrap_SBTypeMemberFunction_GetName()
67503 static int _wrap_SBTypeMemberFunction_GetDemangledName(lua_State* L) { in _wrap_SBTypeMemberFunction_GetDemangledName() argument
67510 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDemangledName",1,"lldb::SBT… in _wrap_SBTypeMemberFunction_GetDemangledName()
67512 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetDemangledName()
67517 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetDemangledName()
67522 lua_error(L); in _wrap_SBTypeMemberFunction_GetDemangledName()
67527 static int _wrap_SBTypeMemberFunction_GetMangledName(lua_State* L) { in _wrap_SBTypeMemberFunction_GetMangledName() argument
67534 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetMangledName",1,"lldb::SBTyp… in _wrap_SBTypeMemberFunction_GetMangledName()
67536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetMangledName()
67541 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetMangledName()
67546 lua_error(L); in _wrap_SBTypeMemberFunction_GetMangledName()
67551 static int _wrap_SBTypeMemberFunction_GetType(lua_State* L) { in _wrap_SBTypeMemberFunction_GetType() argument
67558 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetType",1,"lldb::SBTypeMember… in _wrap_SBTypeMemberFunction_GetType()
67560 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetType()
67567 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetType()
67573 lua_error(L); in _wrap_SBTypeMemberFunction_GetType()
67578 static int _wrap_SBTypeMemberFunction_GetReturnType(lua_State* L) { in _wrap_SBTypeMemberFunction_GetReturnType() argument
67585 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetReturnType",1,"lldb::SBType… in _wrap_SBTypeMemberFunction_GetReturnType()
67587 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetReturnType()
67594 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetReturnType()
67600 lua_error(L); in _wrap_SBTypeMemberFunction_GetReturnType()
67605 static int _wrap_SBTypeMemberFunction_GetNumberOfArguments(lua_State* L) { in _wrap_SBTypeMemberFunction_GetNumberOfArguments() argument
67612 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetNumberOfArguments",1,"lldb:… in _wrap_SBTypeMemberFunction_GetNumberOfArguments()
67614 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetNumberOfArguments()
67619 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetNumberOfArguments()
67624 lua_error(L); in _wrap_SBTypeMemberFunction_GetNumberOfArguments()
67629 static int _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex(lua_State* L) { in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex() argument
67637 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetArgumentTypeAtIndex",1,"lld… in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex()
67638 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetArgumentTypeAtIndex",2,"uint… in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex()
67640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex()
67644 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex()
67648 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex()
67654 lua_error(L); in _wrap_SBTypeMemberFunction_GetArgumentTypeAtIndex()
67659 static int _wrap_SBTypeMemberFunction_GetKind(lua_State* L) { in _wrap_SBTypeMemberFunction_GetKind() argument
67666 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetKind",1,"lldb::SBTypeMember… in _wrap_SBTypeMemberFunction_GetKind()
67668 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetKind()
67673 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetKind()
67678 lua_error(L); in _wrap_SBTypeMemberFunction_GetKind()
67683 static int _wrap_SBTypeMemberFunction_GetDescription(lua_State* L) { in _wrap_SBTypeMemberFunction_GetDescription() argument
67692 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDescription",1,"lldb::SBTyp… in _wrap_SBTypeMemberFunction_GetDescription()
67693 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDescription",2,"lldb::SBStr… in _wrap_SBTypeMemberFunction_GetDescription()
67694 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeMemberFunction::GetDescription",3,"lldb::Descri… in _wrap_SBTypeMemberFunction_GetDescription()
67696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction_GetDescription()
67701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeMemberFunction_GetDescription()
67705 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeMemberFunction_GetDescription()
67707 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeMemberFunction_GetDescription()
67712 lua_error(L); in _wrap_SBTypeMemberFunction_GetDescription()
67717 static int _wrap_SBTypeMemberFunction___tostring(lua_State* L) { in _wrap_SBTypeMemberFunction___tostring() argument
67724 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeMemberFunction::__repr__",1,"lldb::SBTypeMembe… in _wrap_SBTypeMemberFunction___tostring()
67726 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeMemberFunction,0))){ in _wrap_SBTypeMemberFunction___tostring()
67731 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeMemberFunction___tostring()
67736 lua_error(L); in _wrap_SBTypeMemberFunction___tostring()
67745 static int _proxy__wrap_new_SBTypeMemberFunction(lua_State *L) { in _proxy__wrap_new_SBTypeMemberFunction() argument
67746 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeMemberFunction()
67747 lua_pushcfunction(L,_wrap_new_SBTypeMemberFunction); in _proxy__wrap_new_SBTypeMemberFunction()
67748 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeMemberFunction()
67749 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeMemberFunction()
67750 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeMemberFunction()
67800 static int _wrap_new_SBTypeStaticField__SWIG_0(lua_State* L) { in _wrap_new_SBTypeStaticField__SWIG_0() argument
67807 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeStaticField,1); SWIG_arg++; in _wrap_new_SBTypeStaticField__SWIG_0()
67812 lua_error(L); in _wrap_new_SBTypeStaticField__SWIG_0()
67817 static int _wrap_new_SBTypeStaticField__SWIG_1(lua_State* L) { in _wrap_new_SBTypeStaticField__SWIG_1() argument
67824 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::SBTypeStaticField",1,"lldb::SBTyp… in _wrap_new_SBTypeStaticField__SWIG_1()
67826 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){ in _wrap_new_SBTypeStaticField__SWIG_1()
67831 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeStaticField,1); SWIG_arg++; in _wrap_new_SBTypeStaticField__SWIG_1()
67836 lua_error(L); in _wrap_new_SBTypeStaticField__SWIG_1()
67841 static int _wrap_new_SBTypeStaticField(lua_State* L) { in _wrap_new_SBTypeStaticField() argument
67847 argc = lua_gettop(L); in _wrap_new_SBTypeStaticField()
67849 return _wrap_new_SBTypeStaticField__SWIG_0(L); in _wrap_new_SBTypeStaticField()
67855 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeStaticField()
67862 return _wrap_new_SBTypeStaticField__SWIG_1(L); in _wrap_new_SBTypeStaticField()
67866 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeStaticField'\n" in _wrap_new_SBTypeStaticField()
67870 lua_error(L);return 0; in _wrap_new_SBTypeStaticField()
67874 static int _wrap_SBTypeStaticField_IsValid(lua_State* L) { in _wrap_SBTypeStaticField_IsValid() argument
67881 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::IsValid",1,"lldb::SBTypeStaticFie… in _wrap_SBTypeStaticField_IsValid()
67883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){ in _wrap_SBTypeStaticField_IsValid()
67888 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeStaticField_IsValid()
67893 lua_error(L); in _wrap_SBTypeStaticField_IsValid()
67898 static int _wrap_SBTypeStaticField_GetName(lua_State* L) { in _wrap_SBTypeStaticField_GetName() argument
67905 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetName",1,"lldb::SBTypeStaticFie… in _wrap_SBTypeStaticField_GetName()
67907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){ in _wrap_SBTypeStaticField_GetName()
67912 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeStaticField_GetName()
67917 lua_error(L); in _wrap_SBTypeStaticField_GetName()
67922 static int _wrap_SBTypeStaticField_GetMangledName(lua_State* L) { in _wrap_SBTypeStaticField_GetMangledName() argument
67929 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetMangledName",1,"lldb::SBTypeSt… in _wrap_SBTypeStaticField_GetMangledName()
67931 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){ in _wrap_SBTypeStaticField_GetMangledName()
67936 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeStaticField_GetMangledName()
67941 lua_error(L); in _wrap_SBTypeStaticField_GetMangledName()
67946 static int _wrap_SBTypeStaticField_GetType(lua_State* L) { in _wrap_SBTypeStaticField_GetType() argument
67953 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetType",1,"lldb::SBTypeStaticFie… in _wrap_SBTypeStaticField_GetType()
67955 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){ in _wrap_SBTypeStaticField_GetType()
67962 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeStaticField_GetType()
67968 lua_error(L); in _wrap_SBTypeStaticField_GetType()
67973 static int _wrap_SBTypeStaticField_GetConstantValue(lua_State* L) { in _wrap_SBTypeStaticField_GetConstantValue() argument
67982 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeStaticField::GetConstantValue",1,"lldb::SBType… in _wrap_SBTypeStaticField_GetConstantValue()
67983 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeStaticField::GetConstantValue",2,"lldb::SBTarg… in _wrap_SBTypeStaticField_GetConstantValue()
67985 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeStaticField,0))){ in _wrap_SBTypeStaticField_GetConstantValue()
67990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBTypeStaticField_GetConstantValue()
67998 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBTypeStaticField_GetConstantValue()
68004 lua_error(L); in _wrap_SBTypeStaticField_GetConstantValue()
68013 static int _proxy__wrap_new_SBTypeStaticField(lua_State *L) { in _proxy__wrap_new_SBTypeStaticField() argument
68014 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeStaticField()
68015 lua_pushcfunction(L,_wrap_new_SBTypeStaticField); in _proxy__wrap_new_SBTypeStaticField()
68016 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeStaticField()
68017 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeStaticField()
68018 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeStaticField()
68061 static int _wrap_new_SBType__SWIG_0(lua_State* L) { in _wrap_new_SBType__SWIG_0() argument
68068 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_new_SBType__SWIG_0()
68073 lua_error(L); in _wrap_new_SBType__SWIG_0()
68078 static int _wrap_new_SBType__SWIG_1(lua_State* L) { in _wrap_new_SBType__SWIG_1() argument
68085 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBType::SBType",1,"lldb::SBType const &"); in _wrap_new_SBType__SWIG_1()
68087 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_new_SBType__SWIG_1()
68092 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_new_SBType__SWIG_1()
68097 lua_error(L); in _wrap_new_SBType__SWIG_1()
68102 static int _wrap_new_SBType(lua_State* L) { in _wrap_new_SBType() argument
68108 argc = lua_gettop(L); in _wrap_new_SBType()
68110 return _wrap_new_SBType__SWIG_0(L); in _wrap_new_SBType()
68116 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBType()
68123 return _wrap_new_SBType__SWIG_1(L); in _wrap_new_SBType()
68127 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBType'\n" in _wrap_new_SBType()
68131 lua_error(L);return 0; in _wrap_new_SBType()
68135 static int _wrap_SBType_IsValid(lua_State* L) { in _wrap_SBType_IsValid() argument
68142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsValid",1,"lldb::SBType const *"); in _wrap_SBType_IsValid()
68144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsValid()
68149 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsValid()
68154 lua_error(L); in _wrap_SBType_IsValid()
68159 static int _wrap_SBType_GetByteSize(lua_State* L) { in _wrap_SBType_GetByteSize() argument
68166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetByteSize",1,"lldb::SBType *"); in _wrap_SBType_GetByteSize()
68168 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetByteSize()
68173 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetByteSize()
68178 lua_error(L); in _wrap_SBType_GetByteSize()
68183 static int _wrap_SBType_GetByteAlign(lua_State* L) { in _wrap_SBType_GetByteAlign() argument
68190 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetByteAlign",1,"lldb::SBType *"); in _wrap_SBType_GetByteAlign()
68192 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetByteAlign()
68197 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetByteAlign()
68202 lua_error(L); in _wrap_SBType_GetByteAlign()
68207 static int _wrap_SBType_IsPointerType(lua_State* L) { in _wrap_SBType_IsPointerType() argument
68214 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsPointerType",1,"lldb::SBType *"); in _wrap_SBType_IsPointerType()
68216 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsPointerType()
68221 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsPointerType()
68226 lua_error(L); in _wrap_SBType_IsPointerType()
68231 static int _wrap_SBType_IsReferenceType(lua_State* L) { in _wrap_SBType_IsReferenceType() argument
68238 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsReferenceType",1,"lldb::SBType *"); in _wrap_SBType_IsReferenceType()
68240 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsReferenceType()
68245 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsReferenceType()
68250 lua_error(L); in _wrap_SBType_IsReferenceType()
68255 static int _wrap_SBType_IsFunctionType(lua_State* L) { in _wrap_SBType_IsFunctionType() argument
68262 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsFunctionType",1,"lldb::SBType *"); in _wrap_SBType_IsFunctionType()
68264 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsFunctionType()
68269 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsFunctionType()
68274 lua_error(L); in _wrap_SBType_IsFunctionType()
68279 static int _wrap_SBType_IsPolymorphicClass(lua_State* L) { in _wrap_SBType_IsPolymorphicClass() argument
68286 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsPolymorphicClass",1,"lldb::SBType *"); in _wrap_SBType_IsPolymorphicClass()
68288 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsPolymorphicClass()
68293 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsPolymorphicClass()
68298 lua_error(L); in _wrap_SBType_IsPolymorphicClass()
68303 static int _wrap_SBType_IsArrayType(lua_State* L) { in _wrap_SBType_IsArrayType() argument
68310 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsArrayType",1,"lldb::SBType *"); in _wrap_SBType_IsArrayType()
68312 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsArrayType()
68317 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsArrayType()
68322 lua_error(L); in _wrap_SBType_IsArrayType()
68327 static int _wrap_SBType_IsVectorType(lua_State* L) { in _wrap_SBType_IsVectorType() argument
68334 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsVectorType",1,"lldb::SBType *"); in _wrap_SBType_IsVectorType()
68336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsVectorType()
68341 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsVectorType()
68346 lua_error(L); in _wrap_SBType_IsVectorType()
68351 static int _wrap_SBType_IsTypedefType(lua_State* L) { in _wrap_SBType_IsTypedefType() argument
68358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsTypedefType",1,"lldb::SBType *"); in _wrap_SBType_IsTypedefType()
68360 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsTypedefType()
68365 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsTypedefType()
68370 lua_error(L); in _wrap_SBType_IsTypedefType()
68375 static int _wrap_SBType_IsAnonymousType(lua_State* L) { in _wrap_SBType_IsAnonymousType() argument
68382 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsAnonymousType",1,"lldb::SBType *"); in _wrap_SBType_IsAnonymousType()
68384 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsAnonymousType()
68389 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsAnonymousType()
68394 lua_error(L); in _wrap_SBType_IsAnonymousType()
68399 static int _wrap_SBType_IsScopedEnumerationType(lua_State* L) { in _wrap_SBType_IsScopedEnumerationType() argument
68406 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsScopedEnumerationType",1,"lldb::SBType *"); in _wrap_SBType_IsScopedEnumerationType()
68408 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsScopedEnumerationType()
68413 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsScopedEnumerationType()
68418 lua_error(L); in _wrap_SBType_IsScopedEnumerationType()
68423 static int _wrap_SBType_IsAggregateType(lua_State* L) { in _wrap_SBType_IsAggregateType() argument
68430 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsAggregateType",1,"lldb::SBType *"); in _wrap_SBType_IsAggregateType()
68432 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsAggregateType()
68437 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsAggregateType()
68442 lua_error(L); in _wrap_SBType_IsAggregateType()
68447 static int _wrap_SBType_GetPointerType(lua_State* L) { in _wrap_SBType_GetPointerType() argument
68454 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetPointerType",1,"lldb::SBType *"); in _wrap_SBType_GetPointerType()
68456 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetPointerType()
68463 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetPointerType()
68469 lua_error(L); in _wrap_SBType_GetPointerType()
68474 static int _wrap_SBType_GetPointeeType(lua_State* L) { in _wrap_SBType_GetPointeeType() argument
68481 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetPointeeType",1,"lldb::SBType *"); in _wrap_SBType_GetPointeeType()
68483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetPointeeType()
68490 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetPointeeType()
68496 lua_error(L); in _wrap_SBType_GetPointeeType()
68501 static int _wrap_SBType_GetReferenceType(lua_State* L) { in _wrap_SBType_GetReferenceType() argument
68508 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetReferenceType",1,"lldb::SBType *"); in _wrap_SBType_GetReferenceType()
68510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetReferenceType()
68517 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetReferenceType()
68523 lua_error(L); in _wrap_SBType_GetReferenceType()
68528 static int _wrap_SBType_GetTypedefedType(lua_State* L) { in _wrap_SBType_GetTypedefedType() argument
68535 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTypedefedType",1,"lldb::SBType *"); in _wrap_SBType_GetTypedefedType()
68537 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetTypedefedType()
68544 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetTypedefedType()
68550 lua_error(L); in _wrap_SBType_GetTypedefedType()
68555 static int _wrap_SBType_GetDereferencedType(lua_State* L) { in _wrap_SBType_GetDereferencedType() argument
68562 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDereferencedType",1,"lldb::SBType *"); in _wrap_SBType_GetDereferencedType()
68564 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetDereferencedType()
68571 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetDereferencedType()
68577 lua_error(L); in _wrap_SBType_GetDereferencedType()
68582 static int _wrap_SBType_GetUnqualifiedType(lua_State* L) { in _wrap_SBType_GetUnqualifiedType() argument
68589 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetUnqualifiedType",1,"lldb::SBType *"); in _wrap_SBType_GetUnqualifiedType()
68591 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetUnqualifiedType()
68598 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetUnqualifiedType()
68604 lua_error(L); in _wrap_SBType_GetUnqualifiedType()
68609 static int _wrap_SBType_GetArrayElementType(lua_State* L) { in _wrap_SBType_GetArrayElementType() argument
68616 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetArrayElementType",1,"lldb::SBType *"); in _wrap_SBType_GetArrayElementType()
68618 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetArrayElementType()
68625 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetArrayElementType()
68631 lua_error(L); in _wrap_SBType_GetArrayElementType()
68636 static int _wrap_SBType_GetArrayType(lua_State* L) { in _wrap_SBType_GetArrayType() argument
68644 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetArrayType",1,"lldb::SBType *"); in _wrap_SBType_GetArrayType()
68645 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetArrayType",2,"uint64_t"); in _wrap_SBType_GetArrayType()
68647 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetArrayType()
68651 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBType_GetArrayType()
68655 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetArrayType()
68661 lua_error(L); in _wrap_SBType_GetArrayType()
68666 static int _wrap_SBType_GetVectorElementType(lua_State* L) { in _wrap_SBType_GetVectorElementType() argument
68673 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetVectorElementType",1,"lldb::SBType *"); in _wrap_SBType_GetVectorElementType()
68675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetVectorElementType()
68682 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetVectorElementType()
68688 lua_error(L); in _wrap_SBType_GetVectorElementType()
68693 static int _wrap_SBType_GetCanonicalType(lua_State* L) { in _wrap_SBType_GetCanonicalType() argument
68700 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetCanonicalType",1,"lldb::SBType *"); in _wrap_SBType_GetCanonicalType()
68702 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetCanonicalType()
68709 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetCanonicalType()
68715 lua_error(L); in _wrap_SBType_GetCanonicalType()
68720 static int _wrap_SBType_GetEnumerationIntegerType(lua_State* L) { in _wrap_SBType_GetEnumerationIntegerType() argument
68727 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetEnumerationIntegerType",1,"lldb::SBType *… in _wrap_SBType_GetEnumerationIntegerType()
68729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetEnumerationIntegerType()
68736 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetEnumerationIntegerType()
68742 lua_error(L); in _wrap_SBType_GetEnumerationIntegerType()
68747 static int _wrap_SBType_GetBasicType__SWIG_0(lua_State* L) { in _wrap_SBType_GetBasicType__SWIG_0() argument
68754 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetBasicType",1,"lldb::SBType *"); in _wrap_SBType_GetBasicType__SWIG_0()
68756 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetBasicType__SWIG_0()
68761 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetBasicType__SWIG_0()
68766 lua_error(L); in _wrap_SBType_GetBasicType__SWIG_0()
68771 static int _wrap_SBType_GetBasicType__SWIG_1(lua_State* L) { in _wrap_SBType_GetBasicType__SWIG_1() argument
68779 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetBasicType",1,"lldb::SBType *"); in _wrap_SBType_GetBasicType__SWIG_1()
68780 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetBasicType",2,"lldb::BasicType"); in _wrap_SBType_GetBasicType__SWIG_1()
68782 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetBasicType__SWIG_1()
68786 arg2 = (lldb::BasicType)lua_tointeger(L, 2); in _wrap_SBType_GetBasicType__SWIG_1()
68790 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetBasicType__SWIG_1()
68796 lua_error(L); in _wrap_SBType_GetBasicType__SWIG_1()
68801 static int _wrap_SBType_GetBasicType(lua_State* L) { in _wrap_SBType_GetBasicType() argument
68807 argc = lua_gettop(L); in _wrap_SBType_GetBasicType()
68812 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBType_GetBasicType()
68819 return _wrap_SBType_GetBasicType__SWIG_0(L); in _wrap_SBType_GetBasicType()
68826 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBType_GetBasicType()
68834 _v = lua_isnumber(L,argv[1]); in _wrap_SBType_GetBasicType()
68837 return _wrap_SBType_GetBasicType__SWIG_1(L); in _wrap_SBType_GetBasicType()
68842 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBType_GetBasicType'\n" in _wrap_SBType_GetBasicType()
68846 lua_error(L);return 0; in _wrap_SBType_GetBasicType()
68850 static int _wrap_SBType_GetNumberOfFields(lua_State* L) { in _wrap_SBType_GetNumberOfFields() argument
68857 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfFields",1,"lldb::SBType *"); in _wrap_SBType_GetNumberOfFields()
68859 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetNumberOfFields()
68864 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetNumberOfFields()
68869 lua_error(L); in _wrap_SBType_GetNumberOfFields()
68874 static int _wrap_SBType_GetNumberOfDirectBaseClasses(lua_State* L) { in _wrap_SBType_GetNumberOfDirectBaseClasses() argument
68881 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfDirectBaseClasses",1,"lldb::SBTyp… in _wrap_SBType_GetNumberOfDirectBaseClasses()
68883 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetNumberOfDirectBaseClasses()
68888 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetNumberOfDirectBaseClasses()
68893 lua_error(L); in _wrap_SBType_GetNumberOfDirectBaseClasses()
68898 static int _wrap_SBType_GetNumberOfVirtualBaseClasses(lua_State* L) { in _wrap_SBType_GetNumberOfVirtualBaseClasses() argument
68905 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfVirtualBaseClasses",1,"lldb::SBTy… in _wrap_SBType_GetNumberOfVirtualBaseClasses()
68907 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetNumberOfVirtualBaseClasses()
68912 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetNumberOfVirtualBaseClasses()
68917 lua_error(L); in _wrap_SBType_GetNumberOfVirtualBaseClasses()
68922 static int _wrap_SBType_GetFieldAtIndex(lua_State* L) { in _wrap_SBType_GetFieldAtIndex() argument
68930 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetFieldAtIndex",1,"lldb::SBType *"); in _wrap_SBType_GetFieldAtIndex()
68931 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetFieldAtIndex",2,"uint32_t"); in _wrap_SBType_GetFieldAtIndex()
68933 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetFieldAtIndex()
68937 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBType_GetFieldAtIndex()
68941 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++; in _wrap_SBType_GetFieldAtIndex()
68947 lua_error(L); in _wrap_SBType_GetFieldAtIndex()
68952 static int _wrap_SBType_GetDirectBaseClassAtIndex(lua_State* L) { in _wrap_SBType_GetDirectBaseClassAtIndex() argument
68960 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDirectBaseClassAtIndex",1,"lldb::SBType *… in _wrap_SBType_GetDirectBaseClassAtIndex()
68961 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetDirectBaseClassAtIndex",2,"uint32_t"); in _wrap_SBType_GetDirectBaseClassAtIndex()
68963 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetDirectBaseClassAtIndex()
68967 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBType_GetDirectBaseClassAtIndex()
68971 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++; in _wrap_SBType_GetDirectBaseClassAtIndex()
68977 lua_error(L); in _wrap_SBType_GetDirectBaseClassAtIndex()
68982 static int _wrap_SBType_GetVirtualBaseClassAtIndex(lua_State* L) { in _wrap_SBType_GetVirtualBaseClassAtIndex() argument
68990 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetVirtualBaseClassAtIndex",1,"lldb::SBType … in _wrap_SBType_GetVirtualBaseClassAtIndex()
68991 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetVirtualBaseClassAtIndex",2,"uint32_t"); in _wrap_SBType_GetVirtualBaseClassAtIndex()
68993 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetVirtualBaseClassAtIndex()
68997 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBType_GetVirtualBaseClassAtIndex()
69001 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMember,1); SWIG_arg++; in _wrap_SBType_GetVirtualBaseClassAtIndex()
69007 lua_error(L); in _wrap_SBType_GetVirtualBaseClassAtIndex()
69012 static int _wrap_SBType_GetStaticFieldWithName(lua_State* L) { in _wrap_SBType_GetStaticFieldWithName() argument
69020 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetStaticFieldWithName",1,"lldb::SBType *"); in _wrap_SBType_GetStaticFieldWithName()
69021 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBType::GetStaticFieldWithName",2,"char const … in _wrap_SBType_GetStaticFieldWithName()
69023 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetStaticFieldWithName()
69027 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBType_GetStaticFieldWithName()
69031 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeStaticField,1); SWIG_arg++; in _wrap_SBType_GetStaticFieldWithName()
69037 lua_error(L); in _wrap_SBType_GetStaticFieldWithName()
69042 static int _wrap_SBType_GetEnumMembers(lua_State* L) { in _wrap_SBType_GetEnumMembers() argument
69049 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetEnumMembers",1,"lldb::SBType *"); in _wrap_SBType_GetEnumMembers()
69051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetEnumMembers()
69058 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeEnumMemberList,1); SWIG_arg++; in _wrap_SBType_GetEnumMembers()
69064 lua_error(L); in _wrap_SBType_GetEnumMembers()
69069 static int _wrap_SBType_GetNumberOfTemplateArguments(lua_State* L) { in _wrap_SBType_GetNumberOfTemplateArguments() argument
69076 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfTemplateArguments",1,"lldb::SBTyp… in _wrap_SBType_GetNumberOfTemplateArguments()
69078 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetNumberOfTemplateArguments()
69083 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetNumberOfTemplateArguments()
69088 lua_error(L); in _wrap_SBType_GetNumberOfTemplateArguments()
69093 static int _wrap_SBType_GetTemplateArgumentType(lua_State* L) { in _wrap_SBType_GetTemplateArgumentType() argument
69101 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentType",1,"lldb::SBType *"); in _wrap_SBType_GetTemplateArgumentType()
69102 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentType",2,"uint32_t"); in _wrap_SBType_GetTemplateArgumentType()
69104 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetTemplateArgumentType()
69108 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBType_GetTemplateArgumentType()
69112 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetTemplateArgumentType()
69118 lua_error(L); in _wrap_SBType_GetTemplateArgumentType()
69123 static int _wrap_SBType_GetTemplateArgumentKind(lua_State* L) { in _wrap_SBType_GetTemplateArgumentKind() argument
69131 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentKind",1,"lldb::SBType *"); in _wrap_SBType_GetTemplateArgumentKind()
69132 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetTemplateArgumentKind",2,"uint32_t"); in _wrap_SBType_GetTemplateArgumentKind()
69134 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetTemplateArgumentKind()
69138 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBType_GetTemplateArgumentKind()
69140 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetTemplateArgumentKind()
69145 lua_error(L); in _wrap_SBType_GetTemplateArgumentKind()
69150 static int _wrap_SBType_GetFunctionReturnType(lua_State* L) { in _wrap_SBType_GetFunctionReturnType() argument
69157 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetFunctionReturnType",1,"lldb::SBType *"); in _wrap_SBType_GetFunctionReturnType()
69159 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetFunctionReturnType()
69166 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_GetFunctionReturnType()
69172 lua_error(L); in _wrap_SBType_GetFunctionReturnType()
69177 static int _wrap_SBType_GetFunctionArgumentTypes(lua_State* L) { in _wrap_SBType_GetFunctionArgumentTypes() argument
69184 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetFunctionArgumentTypes",1,"lldb::SBType *"… in _wrap_SBType_GetFunctionArgumentTypes()
69186 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetFunctionArgumentTypes()
69193 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_SBType_GetFunctionArgumentTypes()
69199 lua_error(L); in _wrap_SBType_GetFunctionArgumentTypes()
69204 static int _wrap_SBType_GetNumberOfMemberFunctions(lua_State* L) { in _wrap_SBType_GetNumberOfMemberFunctions() argument
69211 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetNumberOfMemberFunctions",1,"lldb::SBType … in _wrap_SBType_GetNumberOfMemberFunctions()
69213 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetNumberOfMemberFunctions()
69218 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetNumberOfMemberFunctions()
69223 lua_error(L); in _wrap_SBType_GetNumberOfMemberFunctions()
69228 static int _wrap_SBType_GetMemberFunctionAtIndex(lua_State* L) { in _wrap_SBType_GetMemberFunctionAtIndex() argument
69236 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetMemberFunctionAtIndex",1,"lldb::SBType *"… in _wrap_SBType_GetMemberFunctionAtIndex()
69237 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBType::GetMemberFunctionAtIndex",2,"uint32_t"); in _wrap_SBType_GetMemberFunctionAtIndex()
69239 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetMemberFunctionAtIndex()
69243 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBType_GetMemberFunctionAtIndex()
69247 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeMemberFunction,1); SWIG_arg++; in _wrap_SBType_GetMemberFunctionAtIndex()
69253 lua_error(L); in _wrap_SBType_GetMemberFunctionAtIndex()
69258 static int _wrap_SBType_GetModule(lua_State* L) { in _wrap_SBType_GetModule() argument
69265 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetModule",1,"lldb::SBType *"); in _wrap_SBType_GetModule()
69267 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetModule()
69274 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBModule,1); SWIG_arg++; in _wrap_SBType_GetModule()
69280 lua_error(L); in _wrap_SBType_GetModule()
69285 static int _wrap_SBType_GetName(lua_State* L) { in _wrap_SBType_GetName() argument
69292 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetName",1,"lldb::SBType *"); in _wrap_SBType_GetName()
69294 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetName()
69299 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBType_GetName()
69304 lua_error(L); in _wrap_SBType_GetName()
69309 static int _wrap_SBType_GetDisplayTypeName(lua_State* L) { in _wrap_SBType_GetDisplayTypeName() argument
69316 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDisplayTypeName",1,"lldb::SBType *"); in _wrap_SBType_GetDisplayTypeName()
69318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetDisplayTypeName()
69323 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBType_GetDisplayTypeName()
69328 lua_error(L); in _wrap_SBType_GetDisplayTypeName()
69333 static int _wrap_SBType_GetTypeClass(lua_State* L) { in _wrap_SBType_GetTypeClass() argument
69340 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTypeClass",1,"lldb::SBType *"); in _wrap_SBType_GetTypeClass()
69342 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetTypeClass()
69347 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetTypeClass()
69352 lua_error(L); in _wrap_SBType_GetTypeClass()
69357 static int _wrap_SBType_IsTypeComplete(lua_State* L) { in _wrap_SBType_IsTypeComplete() argument
69364 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::IsTypeComplete",1,"lldb::SBType *"); in _wrap_SBType_IsTypeComplete()
69366 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_IsTypeComplete()
69371 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_IsTypeComplete()
69376 lua_error(L); in _wrap_SBType_IsTypeComplete()
69381 static int _wrap_SBType_GetTypeFlags(lua_State* L) { in _wrap_SBType_GetTypeFlags() argument
69388 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetTypeFlags",1,"lldb::SBType *"); in _wrap_SBType_GetTypeFlags()
69390 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetTypeFlags()
69395 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBType_GetTypeFlags()
69400 lua_error(L); in _wrap_SBType_GetTypeFlags()
69405 static int _wrap_SBType_GetDescription(lua_State* L) { in _wrap_SBType_GetDescription() argument
69414 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::GetDescription",1,"lldb::SBType *"); in _wrap_SBType_GetDescription()
69415 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBType::GetDescription",2,"lldb::SBStream &"); in _wrap_SBType_GetDescription()
69416 … if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBType::GetDescription",3,"lldb::DescriptionLevel"); in _wrap_SBType_GetDescription()
69418 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_GetDescription()
69423 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBType_GetDescription()
69427 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBType_GetDescription()
69429 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType_GetDescription()
69434 lua_error(L); in _wrap_SBType_GetDescription()
69439 static int _wrap_SBType_FindDirectNestedType(lua_State* L) { in _wrap_SBType_FindDirectNestedType() argument
69447 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::FindDirectNestedType",1,"lldb::SBType *"); in _wrap_SBType_FindDirectNestedType()
69448 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBType::FindDirectNestedType",2,"char const *"… in _wrap_SBType_FindDirectNestedType()
69450 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType_FindDirectNestedType()
69454 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBType_FindDirectNestedType()
69458 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBType_FindDirectNestedType()
69464 lua_error(L); in _wrap_SBType_FindDirectNestedType()
69469 static int _wrap_SBType___eq(lua_State* L) { in _wrap_SBType___eq() argument
69477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::operator ==",1,"lldb::SBType *"); in _wrap_SBType___eq()
69478 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBType::operator ==",2,"lldb::SBType &"); in _wrap_SBType___eq()
69480 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType___eq()
69485 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType___eq()
69490 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBType___eq()
69495 lua_error(L); in _wrap_SBType___eq()
69500 static int _wrap_SBType___tostring(lua_State* L) { in _wrap_SBType___tostring() argument
69507 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBType::__repr__",1,"lldb::SBType *"); in _wrap_SBType___tostring()
69509 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBType___tostring()
69514 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBType___tostring()
69519 lua_error(L); in _wrap_SBType___tostring()
69528 static int _proxy__wrap_new_SBType(lua_State *L) { in _proxy__wrap_new_SBType() argument
69529 assert(lua_istable(L,1)); in _proxy__wrap_new_SBType()
69530 lua_pushcfunction(L,_wrap_new_SBType); in _proxy__wrap_new_SBType()
69531 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBType()
69532 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBType()
69533 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBType()
69623 static int _wrap_new_SBTypeList__SWIG_0(lua_State* L) { in _wrap_new_SBTypeList__SWIG_0() argument
69630 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_new_SBTypeList__SWIG_0()
69635 lua_error(L); in _wrap_new_SBTypeList__SWIG_0()
69640 static int _wrap_new_SBTypeList__SWIG_1(lua_State* L) { in _wrap_new_SBTypeList__SWIG_1() argument
69647 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeList::SBTypeList",1,"lldb::SBTypeList const &"… in _wrap_new_SBTypeList__SWIG_1()
69649 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){ in _wrap_new_SBTypeList__SWIG_1()
69654 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeList,1); SWIG_arg++; in _wrap_new_SBTypeList__SWIG_1()
69659 lua_error(L); in _wrap_new_SBTypeList__SWIG_1()
69664 static int _wrap_new_SBTypeList(lua_State* L) { in _wrap_new_SBTypeList() argument
69670 argc = lua_gettop(L); in _wrap_new_SBTypeList()
69672 return _wrap_new_SBTypeList__SWIG_0(L); in _wrap_new_SBTypeList()
69678 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeList()
69685 return _wrap_new_SBTypeList__SWIG_1(L); in _wrap_new_SBTypeList()
69689 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeList'\n" in _wrap_new_SBTypeList()
69693 lua_error(L);return 0; in _wrap_new_SBTypeList()
69697 static int _wrap_SBTypeList_IsValid(lua_State* L) { in _wrap_SBTypeList_IsValid() argument
69704 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::IsValid",1,"lldb::SBTypeList *"); in _wrap_SBTypeList_IsValid()
69706 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){ in _wrap_SBTypeList_IsValid()
69711 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeList_IsValid()
69716 lua_error(L); in _wrap_SBTypeList_IsValid()
69721 static int _wrap_SBTypeList_Append(lua_State* L) { in _wrap_SBTypeList_Append() argument
69729 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::Append",1,"lldb::SBTypeList *"); in _wrap_SBTypeList_Append()
69730 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeList::Append",2,"lldb::SBType"); in _wrap_SBTypeList_Append()
69732 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){ in _wrap_SBTypeList_Append()
69737 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBTypeList_Append()
69748 lua_error(L); in _wrap_SBTypeList_Append()
69753 static int _wrap_SBTypeList_GetTypeAtIndex(lua_State* L) { in _wrap_SBTypeList_GetTypeAtIndex() argument
69761 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::GetTypeAtIndex",1,"lldb::SBTypeList *"); in _wrap_SBTypeList_GetTypeAtIndex()
69762 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeList::GetTypeAtIndex",2,"uint32_t"); in _wrap_SBTypeList_GetTypeAtIndex()
69764 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){ in _wrap_SBTypeList_GetTypeAtIndex()
69768 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeList_GetTypeAtIndex()
69772 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeList_GetTypeAtIndex()
69778 lua_error(L); in _wrap_SBTypeList_GetTypeAtIndex()
69783 static int _wrap_SBTypeList_GetSize(lua_State* L) { in _wrap_SBTypeList_GetSize() argument
69790 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeList::GetSize",1,"lldb::SBTypeList *"); in _wrap_SBTypeList_GetSize()
69792 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeList,0))){ in _wrap_SBTypeList_GetSize()
69797 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeList_GetSize()
69802 lua_error(L); in _wrap_SBTypeList_GetSize()
69811 static int _proxy__wrap_new_SBTypeList(lua_State *L) { in _proxy__wrap_new_SBTypeList() argument
69812 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeList()
69813 lua_pushcfunction(L,_wrap_new_SBTypeList); in _proxy__wrap_new_SBTypeList()
69814 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeList()
69815 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeList()
69816 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeList()
69858 static int _wrap_new_SBTypeCategory__SWIG_0(lua_State* L) { in _wrap_new_SBTypeCategory__SWIG_0() argument
69865 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_new_SBTypeCategory__SWIG_0()
69870 lua_error(L); in _wrap_new_SBTypeCategory__SWIG_0()
69875 static int _wrap_new_SBTypeCategory__SWIG_1(lua_State* L) { in _wrap_new_SBTypeCategory__SWIG_1() argument
69882 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::SBTypeCategory",1,"lldb::SBTypeCateg… in _wrap_new_SBTypeCategory__SWIG_1()
69884 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_new_SBTypeCategory__SWIG_1()
69889 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeCategory,1); SWIG_arg++; in _wrap_new_SBTypeCategory__SWIG_1()
69894 lua_error(L); in _wrap_new_SBTypeCategory__SWIG_1()
69899 static int _wrap_new_SBTypeCategory(lua_State* L) { in _wrap_new_SBTypeCategory() argument
69905 argc = lua_gettop(L); in _wrap_new_SBTypeCategory()
69907 return _wrap_new_SBTypeCategory__SWIG_0(L); in _wrap_new_SBTypeCategory()
69913 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeCategory()
69920 return _wrap_new_SBTypeCategory__SWIG_1(L); in _wrap_new_SBTypeCategory()
69924 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeCategory'\n" in _wrap_new_SBTypeCategory()
69928 lua_error(L);return 0; in _wrap_new_SBTypeCategory()
69932 static int _wrap_SBTypeCategory_IsValid(lua_State* L) { in _wrap_SBTypeCategory_IsValid() argument
69939 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::IsValid",1,"lldb::SBTypeCategory con… in _wrap_SBTypeCategory_IsValid()
69941 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_IsValid()
69946 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_IsValid()
69951 lua_error(L); in _wrap_SBTypeCategory_IsValid()
69956 static int _wrap_SBTypeCategory_GetEnabled(lua_State* L) { in _wrap_SBTypeCategory_GetEnabled() argument
69963 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetEnabled",1,"lldb::SBTypeCategory … in _wrap_SBTypeCategory_GetEnabled()
69965 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetEnabled()
69970 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_GetEnabled()
69975 lua_error(L); in _wrap_SBTypeCategory_GetEnabled()
69980 static int _wrap_SBTypeCategory_SetEnabled(lua_State* L) { in _wrap_SBTypeCategory_SetEnabled() argument
69987 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::SetEnabled",1,"lldb::SBTypeCategory … in _wrap_SBTypeCategory_SetEnabled()
69988 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::SetEnabled",2,"bool"); in _wrap_SBTypeCategory_SetEnabled()
69990 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_SetEnabled()
69994 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBTypeCategory_SetEnabled()
70001 lua_error(L); in _wrap_SBTypeCategory_SetEnabled()
70006 static int _wrap_SBTypeCategory_GetName(lua_State* L) { in _wrap_SBTypeCategory_GetName() argument
70013 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetName",1,"lldb::SBTypeCategory *"); in _wrap_SBTypeCategory_GetName()
70015 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetName()
70020 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeCategory_GetName()
70025 lua_error(L); in _wrap_SBTypeCategory_GetName()
70030 static int _wrap_SBTypeCategory_GetLanguageAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetLanguageAtIndex() argument
70038 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetLanguageAtIndex",1,"lldb::SBTypeC… in _wrap_SBTypeCategory_GetLanguageAtIndex()
70039 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetLanguageAtIndex",2,"uint32_t"); in _wrap_SBTypeCategory_GetLanguageAtIndex()
70041 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetLanguageAtIndex()
70045 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetLanguageAtIndex()
70047 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeCategory_GetLanguageAtIndex()
70052 lua_error(L); in _wrap_SBTypeCategory_GetLanguageAtIndex()
70057 static int _wrap_SBTypeCategory_GetNumLanguages(lua_State* L) { in _wrap_SBTypeCategory_GetNumLanguages() argument
70064 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumLanguages",1,"lldb::SBTypeCate… in _wrap_SBTypeCategory_GetNumLanguages()
70066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetNumLanguages()
70071 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeCategory_GetNumLanguages()
70076 lua_error(L); in _wrap_SBTypeCategory_GetNumLanguages()
70081 static int _wrap_SBTypeCategory_AddLanguage(lua_State* L) { in _wrap_SBTypeCategory_AddLanguage() argument
70088 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddLanguage",1,"lldb::SBTypeCategory… in _wrap_SBTypeCategory_AddLanguage()
70089 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddLanguage",2,"lldb::LanguageType"); in _wrap_SBTypeCategory_AddLanguage()
70091 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_AddLanguage()
70095 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBTypeCategory_AddLanguage()
70102 lua_error(L); in _wrap_SBTypeCategory_AddLanguage()
70107 static int _wrap_SBTypeCategory_GetDescription(lua_State* L) { in _wrap_SBTypeCategory_GetDescription() argument
70116 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetDescription",1,"lldb::SBTypeCateg… in _wrap_SBTypeCategory_GetDescription()
70117 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetDescription",2,"lldb::SBStream &"… in _wrap_SBTypeCategory_GetDescription()
70118 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::GetDescription",3,"lldb::DescriptionL… in _wrap_SBTypeCategory_GetDescription()
70120 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetDescription()
70125 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeCategory_GetDescription()
70129 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeCategory_GetDescription()
70131 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_GetDescription()
70136 lua_error(L); in _wrap_SBTypeCategory_GetDescription()
70141 static int _wrap_SBTypeCategory_GetNumFormats(lua_State* L) { in _wrap_SBTypeCategory_GetNumFormats() argument
70148 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumFormats",1,"lldb::SBTypeCatego… in _wrap_SBTypeCategory_GetNumFormats()
70150 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetNumFormats()
70155 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeCategory_GetNumFormats()
70160 lua_error(L); in _wrap_SBTypeCategory_GetNumFormats()
70165 static int _wrap_SBTypeCategory_GetNumSummaries(lua_State* L) { in _wrap_SBTypeCategory_GetNumSummaries() argument
70172 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumSummaries",1,"lldb::SBTypeCate… in _wrap_SBTypeCategory_GetNumSummaries()
70174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetNumSummaries()
70179 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeCategory_GetNumSummaries()
70184 lua_error(L); in _wrap_SBTypeCategory_GetNumSummaries()
70189 static int _wrap_SBTypeCategory_GetNumFilters(lua_State* L) { in _wrap_SBTypeCategory_GetNumFilters() argument
70196 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumFilters",1,"lldb::SBTypeCatego… in _wrap_SBTypeCategory_GetNumFilters()
70198 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetNumFilters()
70203 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeCategory_GetNumFilters()
70208 lua_error(L); in _wrap_SBTypeCategory_GetNumFilters()
70213 static int _wrap_SBTypeCategory_GetNumSynthetics(lua_State* L) { in _wrap_SBTypeCategory_GetNumSynthetics() argument
70220 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetNumSynthetics",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_GetNumSynthetics()
70222 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetNumSynthetics()
70227 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeCategory_GetNumSynthetics()
70232 lua_error(L); in _wrap_SBTypeCategory_GetNumSynthetics()
70237 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex() argument
70245 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFilterAtIndex… in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex()
70246 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFilterAtIndex"… in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex()
70248 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex()
70252 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex()
70256 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex()
70262 lua_error(L); in _wrap_SBTypeCategory_GetTypeNameSpecifierForFilterAtIndex()
70267 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex() argument
70275 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFormatAtIndex… in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex()
70276 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForFormatAtIndex"… in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex()
70278 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex()
70282 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex()
70286 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex()
70292 lua_error(L); in _wrap_SBTypeCategory_GetTypeNameSpecifierForFormatAtIndex()
70297 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex() argument
70305 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSummaryAtInde… in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex()
70306 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSummaryAtIndex… in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex()
70308 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex()
70312 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex()
70316 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex()
70322 lua_error(L); in _wrap_SBTypeCategory_GetTypeNameSpecifierForSummaryAtIndex()
70327 static int _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex() argument
70335 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSyntheticAtIn… in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex()
70336 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetTypeNameSpecifierForSyntheticAtInd… in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex()
70338 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex()
70342 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex()
70346 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex()
70352 lua_error(L); in _wrap_SBTypeCategory_GetTypeNameSpecifierForSyntheticAtIndex()
70357 static int _wrap_SBTypeCategory_GetFilterForType(lua_State* L) { in _wrap_SBTypeCategory_GetFilterForType() argument
70366 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterForType",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_GetFilterForType()
70367 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterForType",2,"lldb::SBTypeNam… in _wrap_SBTypeCategory_GetFilterForType()
70369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetFilterForType()
70374 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_GetFilterForType()
70382 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_SBTypeCategory_GetFilterForType()
70388 lua_error(L); in _wrap_SBTypeCategory_GetFilterForType()
70393 static int _wrap_SBTypeCategory_GetFormatForType(lua_State* L) { in _wrap_SBTypeCategory_GetFormatForType() argument
70402 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatForType",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_GetFormatForType()
70403 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatForType",2,"lldb::SBTypeNam… in _wrap_SBTypeCategory_GetFormatForType()
70405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetFormatForType()
70410 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_GetFormatForType()
70418 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_SBTypeCategory_GetFormatForType()
70424 lua_error(L); in _wrap_SBTypeCategory_GetFormatForType()
70429 static int _wrap_SBTypeCategory_GetSummaryForType(lua_State* L) { in _wrap_SBTypeCategory_GetSummaryForType() argument
70438 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryForType",1,"lldb::SBTypeCa… in _wrap_SBTypeCategory_GetSummaryForType()
70439 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryForType",2,"lldb::SBTypeNa… in _wrap_SBTypeCategory_GetSummaryForType()
70441 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetSummaryForType()
70446 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_GetSummaryForType()
70454 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeCategory_GetSummaryForType()
70460 lua_error(L); in _wrap_SBTypeCategory_GetSummaryForType()
70465 static int _wrap_SBTypeCategory_GetSyntheticForType(lua_State* L) { in _wrap_SBTypeCategory_GetSyntheticForType() argument
70474 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticForType",1,"lldb::SBType… in _wrap_SBTypeCategory_GetSyntheticForType()
70475 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticForType",2,"lldb::SBType… in _wrap_SBTypeCategory_GetSyntheticForType()
70477 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetSyntheticForType()
70482 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_GetSyntheticForType()
70490 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBTypeCategory_GetSyntheticForType()
70496 lua_error(L); in _wrap_SBTypeCategory_GetSyntheticForType()
70501 static int _wrap_SBTypeCategory_GetFilterAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetFilterAtIndex() argument
70509 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterAtIndex",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_GetFilterAtIndex()
70510 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFilterAtIndex",2,"uint32_t"); in _wrap_SBTypeCategory_GetFilterAtIndex()
70512 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetFilterAtIndex()
70516 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetFilterAtIndex()
70520 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_SBTypeCategory_GetFilterAtIndex()
70526 lua_error(L); in _wrap_SBTypeCategory_GetFilterAtIndex()
70531 static int _wrap_SBTypeCategory_GetFormatAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetFormatAtIndex() argument
70539 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatAtIndex",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_GetFormatAtIndex()
70540 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetFormatAtIndex",2,"uint32_t"); in _wrap_SBTypeCategory_GetFormatAtIndex()
70542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetFormatAtIndex()
70546 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetFormatAtIndex()
70550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_SBTypeCategory_GetFormatAtIndex()
70556 lua_error(L); in _wrap_SBTypeCategory_GetFormatAtIndex()
70561 static int _wrap_SBTypeCategory_GetSummaryAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetSummaryAtIndex() argument
70569 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryAtIndex",1,"lldb::SBTypeCa… in _wrap_SBTypeCategory_GetSummaryAtIndex()
70570 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSummaryAtIndex",2,"uint32_t"); in _wrap_SBTypeCategory_GetSummaryAtIndex()
70572 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetSummaryAtIndex()
70576 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetSummaryAtIndex()
70580 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeCategory_GetSummaryAtIndex()
70586 lua_error(L); in _wrap_SBTypeCategory_GetSummaryAtIndex()
70591 static int _wrap_SBTypeCategory_GetSyntheticAtIndex(lua_State* L) { in _wrap_SBTypeCategory_GetSyntheticAtIndex() argument
70599 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticAtIndex",1,"lldb::SBType… in _wrap_SBTypeCategory_GetSyntheticAtIndex()
70600 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::GetSyntheticAtIndex",2,"uint32_t"); in _wrap_SBTypeCategory_GetSyntheticAtIndex()
70602 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_GetSyntheticAtIndex()
70606 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeCategory_GetSyntheticAtIndex()
70610 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBTypeCategory_GetSyntheticAtIndex()
70616 lua_error(L); in _wrap_SBTypeCategory_GetSyntheticAtIndex()
70621 static int _wrap_SBTypeCategory_AddTypeFormat(lua_State* L) { in _wrap_SBTypeCategory_AddTypeFormat() argument
70632 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFormat",1,"lldb::SBTypeCatego… in _wrap_SBTypeCategory_AddTypeFormat()
70633 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFormat",2,"lldb::SBTypeNameSp… in _wrap_SBTypeCategory_AddTypeFormat()
70634 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFormat",3,"lldb::SBTypeFormat… in _wrap_SBTypeCategory_AddTypeFormat()
70636 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_AddTypeFormat()
70641 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_AddTypeFormat()
70647 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeCategory_AddTypeFormat()
70653 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_AddTypeFormat()
70658 lua_error(L); in _wrap_SBTypeCategory_AddTypeFormat()
70663 static int _wrap_SBTypeCategory_DeleteTypeFormat(lua_State* L) { in _wrap_SBTypeCategory_DeleteTypeFormat() argument
70672 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFormat",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_DeleteTypeFormat()
70673 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFormat",2,"lldb::SBTypeNam… in _wrap_SBTypeCategory_DeleteTypeFormat()
70675 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_DeleteTypeFormat()
70680 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_DeleteTypeFormat()
70686 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_DeleteTypeFormat()
70691 lua_error(L); in _wrap_SBTypeCategory_DeleteTypeFormat()
70696 static int _wrap_SBTypeCategory_AddTypeSummary(lua_State* L) { in _wrap_SBTypeCategory_AddTypeSummary() argument
70707 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSummary",1,"lldb::SBTypeCateg… in _wrap_SBTypeCategory_AddTypeSummary()
70708 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSummary",2,"lldb::SBTypeNameS… in _wrap_SBTypeCategory_AddTypeSummary()
70709 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSummary",3,"lldb::SBTypeSumma… in _wrap_SBTypeCategory_AddTypeSummary()
70711 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_AddTypeSummary()
70716 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_AddTypeSummary()
70722 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeCategory_AddTypeSummary()
70728 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_AddTypeSummary()
70733 lua_error(L); in _wrap_SBTypeCategory_AddTypeSummary()
70738 static int _wrap_SBTypeCategory_DeleteTypeSummary(lua_State* L) { in _wrap_SBTypeCategory_DeleteTypeSummary() argument
70747 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSummary",1,"lldb::SBTypeCa… in _wrap_SBTypeCategory_DeleteTypeSummary()
70748 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSummary",2,"lldb::SBTypeNa… in _wrap_SBTypeCategory_DeleteTypeSummary()
70750 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_DeleteTypeSummary()
70755 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_DeleteTypeSummary()
70761 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_DeleteTypeSummary()
70766 lua_error(L); in _wrap_SBTypeCategory_DeleteTypeSummary()
70771 static int _wrap_SBTypeCategory_AddTypeFilter(lua_State* L) { in _wrap_SBTypeCategory_AddTypeFilter() argument
70782 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFilter",1,"lldb::SBTypeCatego… in _wrap_SBTypeCategory_AddTypeFilter()
70783 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFilter",2,"lldb::SBTypeNameSp… in _wrap_SBTypeCategory_AddTypeFilter()
70784 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeFilter",3,"lldb::SBTypeFilter… in _wrap_SBTypeCategory_AddTypeFilter()
70786 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_AddTypeFilter()
70791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_AddTypeFilter()
70797 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeCategory_AddTypeFilter()
70803 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_AddTypeFilter()
70808 lua_error(L); in _wrap_SBTypeCategory_AddTypeFilter()
70813 static int _wrap_SBTypeCategory_DeleteTypeFilter(lua_State* L) { in _wrap_SBTypeCategory_DeleteTypeFilter() argument
70822 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFilter",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_DeleteTypeFilter()
70823 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeFilter",2,"lldb::SBTypeNam… in _wrap_SBTypeCategory_DeleteTypeFilter()
70825 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_DeleteTypeFilter()
70830 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_DeleteTypeFilter()
70836 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_DeleteTypeFilter()
70841 lua_error(L); in _wrap_SBTypeCategory_DeleteTypeFilter()
70846 static int _wrap_SBTypeCategory_AddTypeSynthetic(lua_State* L) { in _wrap_SBTypeCategory_AddTypeSynthetic() argument
70857 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSynthetic",1,"lldb::SBTypeCat… in _wrap_SBTypeCategory_AddTypeSynthetic()
70858 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSynthetic",2,"lldb::SBTypeNam… in _wrap_SBTypeCategory_AddTypeSynthetic()
70859 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBTypeCategory::AddTypeSynthetic",3,"lldb::SBTypeSyn… in _wrap_SBTypeCategory_AddTypeSynthetic()
70861 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_AddTypeSynthetic()
70866 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_AddTypeSynthetic()
70872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeCategory_AddTypeSynthetic()
70878 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_AddTypeSynthetic()
70883 lua_error(L); in _wrap_SBTypeCategory_AddTypeSynthetic()
70888 static int _wrap_SBTypeCategory_DeleteTypeSynthetic(lua_State* L) { in _wrap_SBTypeCategory_DeleteTypeSynthetic() argument
70897 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSynthetic",1,"lldb::SBType… in _wrap_SBTypeCategory_DeleteTypeSynthetic()
70898 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::DeleteTypeSynthetic",2,"lldb::SBType… in _wrap_SBTypeCategory_DeleteTypeSynthetic()
70900 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory_DeleteTypeSynthetic()
70905 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeCategory_DeleteTypeSynthetic()
70911 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory_DeleteTypeSynthetic()
70916 lua_error(L); in _wrap_SBTypeCategory_DeleteTypeSynthetic()
70921 static int _wrap_SBTypeCategory___eq(lua_State* L) { in _wrap_SBTypeCategory___eq() argument
70929 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::operator ==",1,"lldb::SBTypeCategory… in _wrap_SBTypeCategory___eq()
70930 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeCategory::operator ==",2,"lldb::SBTypeCategory… in _wrap_SBTypeCategory___eq()
70932 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory___eq()
70937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory___eq()
70942 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeCategory___eq()
70947 lua_error(L); in _wrap_SBTypeCategory___eq()
70952 static int _wrap_SBTypeCategory___tostring(lua_State* L) { in _wrap_SBTypeCategory___tostring() argument
70959 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeCategory::__repr__",1,"lldb::SBTypeCategory *"… in _wrap_SBTypeCategory___tostring()
70961 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeCategory,0))){ in _wrap_SBTypeCategory___tostring()
70966 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeCategory___tostring()
70971 lua_error(L); in _wrap_SBTypeCategory___tostring()
70980 static int _proxy__wrap_new_SBTypeCategory(lua_State *L) { in _proxy__wrap_new_SBTypeCategory() argument
70981 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeCategory()
70982 lua_pushcfunction(L,_wrap_new_SBTypeCategory); in _proxy__wrap_new_SBTypeCategory()
70983 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeCategory()
70984 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeCategory()
70985 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeCategory()
71059 static int _wrap_new_SBTypeEnumMember__SWIG_0(lua_State* L) { in _wrap_new_SBTypeEnumMember__SWIG_0() argument
71066 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMember,1); SWIG_arg++; in _wrap_new_SBTypeEnumMember__SWIG_0()
71071 lua_error(L); in _wrap_new_SBTypeEnumMember__SWIG_0()
71076 static int _wrap_new_SBTypeEnumMember__SWIG_1(lua_State* L) { in _wrap_new_SBTypeEnumMember__SWIG_1() argument
71083 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::SBTypeEnumMember",1,"lldb::SBTypeE… in _wrap_new_SBTypeEnumMember__SWIG_1()
71085 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_new_SBTypeEnumMember__SWIG_1()
71090 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMember,1); SWIG_arg++; in _wrap_new_SBTypeEnumMember__SWIG_1()
71095 lua_error(L); in _wrap_new_SBTypeEnumMember__SWIG_1()
71100 static int _wrap_new_SBTypeEnumMember(lua_State* L) { in _wrap_new_SBTypeEnumMember() argument
71106 argc = lua_gettop(L); in _wrap_new_SBTypeEnumMember()
71108 return _wrap_new_SBTypeEnumMember__SWIG_0(L); in _wrap_new_SBTypeEnumMember()
71114 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeEnumMember()
71121 return _wrap_new_SBTypeEnumMember__SWIG_1(L); in _wrap_new_SBTypeEnumMember()
71125 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeEnumMember'\n" in _wrap_new_SBTypeEnumMember()
71129 lua_error(L);return 0; in _wrap_new_SBTypeEnumMember()
71133 static int _wrap_SBTypeEnumMember_IsValid(lua_State* L) { in _wrap_SBTypeEnumMember_IsValid() argument
71140 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::IsValid",1,"lldb::SBTypeEnumMember… in _wrap_SBTypeEnumMember_IsValid()
71142 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember_IsValid()
71147 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeEnumMember_IsValid()
71152 lua_error(L); in _wrap_SBTypeEnumMember_IsValid()
71157 static int _wrap_SBTypeEnumMember_GetValueAsSigned(lua_State* L) { in _wrap_SBTypeEnumMember_GetValueAsSigned() argument
71164 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetValueAsSigned",1,"lldb::SBTypeE… in _wrap_SBTypeEnumMember_GetValueAsSigned()
71166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember_GetValueAsSigned()
71171 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeEnumMember_GetValueAsSigned()
71176 lua_error(L); in _wrap_SBTypeEnumMember_GetValueAsSigned()
71181 static int _wrap_SBTypeEnumMember_GetValueAsUnsigned(lua_State* L) { in _wrap_SBTypeEnumMember_GetValueAsUnsigned() argument
71188 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetValueAsUnsigned",1,"lldb::SBTyp… in _wrap_SBTypeEnumMember_GetValueAsUnsigned()
71190 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember_GetValueAsUnsigned()
71195 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeEnumMember_GetValueAsUnsigned()
71200 lua_error(L); in _wrap_SBTypeEnumMember_GetValueAsUnsigned()
71205 static int _wrap_SBTypeEnumMember_GetName(lua_State* L) { in _wrap_SBTypeEnumMember_GetName() argument
71212 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetName",1,"lldb::SBTypeEnumMember… in _wrap_SBTypeEnumMember_GetName()
71214 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember_GetName()
71219 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeEnumMember_GetName()
71224 lua_error(L); in _wrap_SBTypeEnumMember_GetName()
71229 static int _wrap_SBTypeEnumMember_GetType(lua_State* L) { in _wrap_SBTypeEnumMember_GetType() argument
71236 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetType",1,"lldb::SBTypeEnumMember… in _wrap_SBTypeEnumMember_GetType()
71238 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember_GetType()
71245 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeEnumMember_GetType()
71251 lua_error(L); in _wrap_SBTypeEnumMember_GetType()
71256 static int _wrap_SBTypeEnumMember_GetDescription(lua_State* L) { in _wrap_SBTypeEnumMember_GetDescription() argument
71265 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetDescription",1,"lldb::SBTypeEnu… in _wrap_SBTypeEnumMember_GetDescription()
71266 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetDescription",2,"lldb::SBStream … in _wrap_SBTypeEnumMember_GetDescription()
71267 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeEnumMember::GetDescription",3,"lldb::Descriptio… in _wrap_SBTypeEnumMember_GetDescription()
71269 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember_GetDescription()
71274 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeEnumMember_GetDescription()
71278 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeEnumMember_GetDescription()
71280 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeEnumMember_GetDescription()
71285 lua_error(L); in _wrap_SBTypeEnumMember_GetDescription()
71290 static int _wrap_SBTypeEnumMember___tostring(lua_State* L) { in _wrap_SBTypeEnumMember___tostring() argument
71297 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMember::__repr__",1,"lldb::SBTypeEnumMembe… in _wrap_SBTypeEnumMember___tostring()
71299 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMember___tostring()
71304 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeEnumMember___tostring()
71309 lua_error(L); in _wrap_SBTypeEnumMember___tostring()
71318 static int _proxy__wrap_new_SBTypeEnumMember(lua_State *L) { in _proxy__wrap_new_SBTypeEnumMember() argument
71319 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeEnumMember()
71320 lua_pushcfunction(L,_wrap_new_SBTypeEnumMember); in _proxy__wrap_new_SBTypeEnumMember()
71321 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeEnumMember()
71322 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeEnumMember()
71323 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeEnumMember()
71369 static int _wrap_new_SBTypeEnumMemberList__SWIG_0(lua_State* L) { in _wrap_new_SBTypeEnumMemberList__SWIG_0() argument
71376 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMemberList,1); SWIG_arg++; in _wrap_new_SBTypeEnumMemberList__SWIG_0()
71381 lua_error(L); in _wrap_new_SBTypeEnumMemberList__SWIG_0()
71386 static int _wrap_new_SBTypeEnumMemberList__SWIG_1(lua_State* L) { in _wrap_new_SBTypeEnumMemberList__SWIG_1() argument
71393 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::SBTypeEnumMemberList",1,"lldb:… in _wrap_new_SBTypeEnumMemberList__SWIG_1()
71395 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){ in _wrap_new_SBTypeEnumMemberList__SWIG_1()
71400 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeEnumMemberList,1); SWIG_arg++; in _wrap_new_SBTypeEnumMemberList__SWIG_1()
71405 lua_error(L); in _wrap_new_SBTypeEnumMemberList__SWIG_1()
71410 static int _wrap_new_SBTypeEnumMemberList(lua_State* L) { in _wrap_new_SBTypeEnumMemberList() argument
71416 argc = lua_gettop(L); in _wrap_new_SBTypeEnumMemberList()
71418 return _wrap_new_SBTypeEnumMemberList__SWIG_0(L); in _wrap_new_SBTypeEnumMemberList()
71424 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeEnumMemberList()
71431 return _wrap_new_SBTypeEnumMemberList__SWIG_1(L); in _wrap_new_SBTypeEnumMemberList()
71435 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeEnumMemberList'\n" in _wrap_new_SBTypeEnumMemberList()
71439 lua_error(L);return 0; in _wrap_new_SBTypeEnumMemberList()
71443 static int _wrap_SBTypeEnumMemberList_IsValid(lua_State* L) { in _wrap_SBTypeEnumMemberList_IsValid() argument
71450 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::IsValid",1,"lldb::SBTypeEnumMe… in _wrap_SBTypeEnumMemberList_IsValid()
71452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){ in _wrap_SBTypeEnumMemberList_IsValid()
71457 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeEnumMemberList_IsValid()
71462 lua_error(L); in _wrap_SBTypeEnumMemberList_IsValid()
71467 static int _wrap_SBTypeEnumMemberList_Append(lua_State* L) { in _wrap_SBTypeEnumMemberList_Append() argument
71475 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::Append",1,"lldb::SBTypeEnumMem… in _wrap_SBTypeEnumMemberList_Append()
71476 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::Append",2,"lldb::SBTypeEnumMem… in _wrap_SBTypeEnumMemberList_Append()
71478 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){ in _wrap_SBTypeEnumMemberList_Append()
71483 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBTypeEnumMember,0))){ in _wrap_SBTypeEnumMemberList_Append()
71494 lua_error(L); in _wrap_SBTypeEnumMemberList_Append()
71499 static int _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex(lua_State* L) { in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex() argument
71507 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::GetTypeEnumMemberAtIndex",1,"l… in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex()
71508 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::GetTypeEnumMemberAtIndex",2,"ui… in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex()
71510 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){ in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex()
71514 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex()
71518 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeEnumMember,1); SWIG_arg++; in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex()
71524 lua_error(L); in _wrap_SBTypeEnumMemberList_GetTypeEnumMemberAtIndex()
71529 static int _wrap_SBTypeEnumMemberList_GetSize(lua_State* L) { in _wrap_SBTypeEnumMemberList_GetSize() argument
71536 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeEnumMemberList::GetSize",1,"lldb::SBTypeEnumMe… in _wrap_SBTypeEnumMemberList_GetSize()
71538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeEnumMemberList,0))){ in _wrap_SBTypeEnumMemberList_GetSize()
71543 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeEnumMemberList_GetSize()
71548 lua_error(L); in _wrap_SBTypeEnumMemberList_GetSize()
71557 static int _proxy__wrap_new_SBTypeEnumMemberList(lua_State *L) { in _proxy__wrap_new_SBTypeEnumMemberList() argument
71558 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeEnumMemberList()
71559 lua_pushcfunction(L,_wrap_new_SBTypeEnumMemberList); in _proxy__wrap_new_SBTypeEnumMemberList()
71560 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeEnumMemberList()
71561 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeEnumMemberList()
71562 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeEnumMemberList()
71604 static int _wrap_new_SBTypeFilter__SWIG_0(lua_State* L) { in _wrap_new_SBTypeFilter__SWIG_0() argument
71611 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_new_SBTypeFilter__SWIG_0()
71616 lua_error(L); in _wrap_new_SBTypeFilter__SWIG_0()
71621 static int _wrap_new_SBTypeFilter__SWIG_1(lua_State* L) { in _wrap_new_SBTypeFilter__SWIG_1() argument
71628 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::SBTypeFilter",1,"uint32_t"); in _wrap_new_SBTypeFilter__SWIG_1()
71629 arg1 = (uint32_t)lua_tointeger(L, 1); in _wrap_new_SBTypeFilter__SWIG_1()
71631 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_new_SBTypeFilter__SWIG_1()
71636 lua_error(L); in _wrap_new_SBTypeFilter__SWIG_1()
71641 static int _wrap_new_SBTypeFilter__SWIG_2(lua_State* L) { in _wrap_new_SBTypeFilter__SWIG_2() argument
71648 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::SBTypeFilter",1,"lldb::SBTypeFilter co… in _wrap_new_SBTypeFilter__SWIG_2()
71650 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_new_SBTypeFilter__SWIG_2()
71655 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_new_SBTypeFilter__SWIG_2()
71660 lua_error(L); in _wrap_new_SBTypeFilter__SWIG_2()
71665 static int _wrap_new_SBTypeFilter(lua_State* L) { in _wrap_new_SBTypeFilter() argument
71671 argc = lua_gettop(L); in _wrap_new_SBTypeFilter()
71673 return _wrap_new_SBTypeFilter__SWIG_0(L); in _wrap_new_SBTypeFilter()
71679 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeFilter()
71686 return _wrap_new_SBTypeFilter__SWIG_2(L); in _wrap_new_SBTypeFilter()
71692 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBTypeFilter()
71695 return _wrap_new_SBTypeFilter__SWIG_1(L); in _wrap_new_SBTypeFilter()
71699 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeFilter'\n" in _wrap_new_SBTypeFilter()
71704 lua_error(L);return 0; in _wrap_new_SBTypeFilter()
71708 static int _wrap_SBTypeFilter_IsValid(lua_State* L) { in _wrap_SBTypeFilter_IsValid() argument
71715 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::IsValid",1,"lldb::SBTypeFilter const *… in _wrap_SBTypeFilter_IsValid()
71717 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_IsValid()
71722 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFilter_IsValid()
71727 lua_error(L); in _wrap_SBTypeFilter_IsValid()
71732 static int _wrap_SBTypeFilter_GetNumberOfExpressionPaths(lua_State* L) { in _wrap_SBTypeFilter_GetNumberOfExpressionPaths() argument
71739 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetNumberOfExpressionPaths",1,"lldb::S… in _wrap_SBTypeFilter_GetNumberOfExpressionPaths()
71741 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_GetNumberOfExpressionPaths()
71746 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeFilter_GetNumberOfExpressionPaths()
71751 lua_error(L); in _wrap_SBTypeFilter_GetNumberOfExpressionPaths()
71756 static int _wrap_SBTypeFilter_GetExpressionPathAtIndex(lua_State* L) { in _wrap_SBTypeFilter_GetExpressionPathAtIndex() argument
71764 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetExpressionPathAtIndex",1,"lldb::SBT… in _wrap_SBTypeFilter_GetExpressionPathAtIndex()
71765 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::GetExpressionPathAtIndex",2,"uint32_t"); in _wrap_SBTypeFilter_GetExpressionPathAtIndex()
71767 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_GetExpressionPathAtIndex()
71771 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeFilter_GetExpressionPathAtIndex()
71773 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeFilter_GetExpressionPathAtIndex()
71778 lua_error(L); in _wrap_SBTypeFilter_GetExpressionPathAtIndex()
71783 static int _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex(lua_State* L) { in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex() argument
71792 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::ReplaceExpressionPathAtIndex",1,"lldb:… in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71793 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::ReplaceExpressionPathAtIndex",2,"uint32… in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71794 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBTypeFilter::ReplaceExpressionPathAtIndex",3,… in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71796 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71800 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71801 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71803 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71808 lua_error(L); in _wrap_SBTypeFilter_ReplaceExpressionPathAtIndex()
71813 static int _wrap_SBTypeFilter_AppendExpressionPath(lua_State* L) { in _wrap_SBTypeFilter_AppendExpressionPath() argument
71820 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::AppendExpressionPath",1,"lldb::SBTypeF… in _wrap_SBTypeFilter_AppendExpressionPath()
71821 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::AppendExpressionPath",2,"char co… in _wrap_SBTypeFilter_AppendExpressionPath()
71823 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_AppendExpressionPath()
71827 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeFilter_AppendExpressionPath()
71834 lua_error(L); in _wrap_SBTypeFilter_AppendExpressionPath()
71839 static int _wrap_SBTypeFilter_Clear(lua_State* L) { in _wrap_SBTypeFilter_Clear() argument
71845 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::Clear",1,"lldb::SBTypeFilter *"); in _wrap_SBTypeFilter_Clear()
71847 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_Clear()
71857 lua_error(L); in _wrap_SBTypeFilter_Clear()
71862 static int _wrap_SBTypeFilter_GetOptions(lua_State* L) { in _wrap_SBTypeFilter_GetOptions() argument
71869 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetOptions",1,"lldb::SBTypeFilter *"); in _wrap_SBTypeFilter_GetOptions()
71871 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_GetOptions()
71876 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeFilter_GetOptions()
71881 lua_error(L); in _wrap_SBTypeFilter_GetOptions()
71886 static int _wrap_SBTypeFilter_SetOptions(lua_State* L) { in _wrap_SBTypeFilter_SetOptions() argument
71893 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::SetOptions",1,"lldb::SBTypeFilter *"); in _wrap_SBTypeFilter_SetOptions()
71894 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::SetOptions",2,"uint32_t"); in _wrap_SBTypeFilter_SetOptions()
71896 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_SetOptions()
71900 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeFilter_SetOptions()
71907 lua_error(L); in _wrap_SBTypeFilter_SetOptions()
71912 static int _wrap_SBTypeFilter_GetDescription(lua_State* L) { in _wrap_SBTypeFilter_GetDescription() argument
71921 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::GetDescription",1,"lldb::SBTypeFilter … in _wrap_SBTypeFilter_GetDescription()
71922 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::GetDescription",2,"lldb::SBStream &"); in _wrap_SBTypeFilter_GetDescription()
71923 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeFilter::GetDescription",3,"lldb::DescriptionLev… in _wrap_SBTypeFilter_GetDescription()
71925 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_GetDescription()
71930 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeFilter_GetDescription()
71934 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeFilter_GetDescription()
71936 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFilter_GetDescription()
71941 lua_error(L); in _wrap_SBTypeFilter_GetDescription()
71946 static int _wrap_SBTypeFilter_IsEqualTo(lua_State* L) { in _wrap_SBTypeFilter_IsEqualTo() argument
71954 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::IsEqualTo",1,"lldb::SBTypeFilter *"); in _wrap_SBTypeFilter_IsEqualTo()
71955 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::IsEqualTo",2,"lldb::SBTypeFilter &"); in _wrap_SBTypeFilter_IsEqualTo()
71957 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_IsEqualTo()
71962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter_IsEqualTo()
71967 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFilter_IsEqualTo()
71972 lua_error(L); in _wrap_SBTypeFilter_IsEqualTo()
71977 static int _wrap_SBTypeFilter___eq(lua_State* L) { in _wrap_SBTypeFilter___eq() argument
71985 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::operator ==",1,"lldb::SBTypeFilter *"); in _wrap_SBTypeFilter___eq()
71986 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFilter::operator ==",2,"lldb::SBTypeFilter &"); in _wrap_SBTypeFilter___eq()
71988 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter___eq()
71993 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter___eq()
71998 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFilter___eq()
72003 lua_error(L); in _wrap_SBTypeFilter___eq()
72008 static int _wrap_SBTypeFilter___tostring(lua_State* L) { in _wrap_SBTypeFilter___tostring() argument
72015 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFilter::__repr__",1,"lldb::SBTypeFilter *"); in _wrap_SBTypeFilter___tostring()
72017 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFilter,0))){ in _wrap_SBTypeFilter___tostring()
72022 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeFilter___tostring()
72027 lua_error(L); in _wrap_SBTypeFilter___tostring()
72036 static int _proxy__wrap_new_SBTypeFilter(lua_State *L) { in _proxy__wrap_new_SBTypeFilter() argument
72037 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeFilter()
72038 lua_pushcfunction(L,_wrap_new_SBTypeFilter); in _proxy__wrap_new_SBTypeFilter()
72039 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeFilter()
72040 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeFilter()
72041 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeFilter()
72093 static int _wrap_new_SBTypeFormat__SWIG_0(lua_State* L) { in _wrap_new_SBTypeFormat__SWIG_0() argument
72100 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_new_SBTypeFormat__SWIG_0()
72105 lua_error(L); in _wrap_new_SBTypeFormat__SWIG_0()
72110 static int _wrap_new_SBTypeFormat__SWIG_1(lua_State* L) { in _wrap_new_SBTypeFormat__SWIG_1() argument
72118 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"lldb::Format"); in _wrap_new_SBTypeFormat__SWIG_1()
72119 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",2,"uint32_t"); in _wrap_new_SBTypeFormat__SWIG_1()
72120 arg1 = (lldb::Format)lua_tointeger(L, 1); in _wrap_new_SBTypeFormat__SWIG_1()
72121 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_new_SBTypeFormat__SWIG_1()
72123 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_new_SBTypeFormat__SWIG_1()
72128 lua_error(L); in _wrap_new_SBTypeFormat__SWIG_1()
72133 static int _wrap_new_SBTypeFormat__SWIG_2(lua_State* L) { in _wrap_new_SBTypeFormat__SWIG_2() argument
72140 if(!lua_isinteger(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"lldb::Format"); in _wrap_new_SBTypeFormat__SWIG_2()
72141 arg1 = (lldb::Format)lua_tointeger(L, 1); in _wrap_new_SBTypeFormat__SWIG_2()
72143 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_new_SBTypeFormat__SWIG_2()
72148 lua_error(L); in _wrap_new_SBTypeFormat__SWIG_2()
72153 static int _wrap_new_SBTypeFormat__SWIG_3(lua_State* L) { in _wrap_new_SBTypeFormat__SWIG_3() argument
72161 … if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"char const *"); in _wrap_new_SBTypeFormat__SWIG_3()
72162 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",2,"uint32_t"); in _wrap_new_SBTypeFormat__SWIG_3()
72163 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBTypeFormat__SWIG_3()
72164 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_new_SBTypeFormat__SWIG_3()
72166 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_new_SBTypeFormat__SWIG_3()
72171 lua_error(L); in _wrap_new_SBTypeFormat__SWIG_3()
72176 static int _wrap_new_SBTypeFormat__SWIG_4(lua_State* L) { in _wrap_new_SBTypeFormat__SWIG_4() argument
72183 … if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"char const *"); in _wrap_new_SBTypeFormat__SWIG_4()
72184 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBTypeFormat__SWIG_4()
72186 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_new_SBTypeFormat__SWIG_4()
72191 lua_error(L); in _wrap_new_SBTypeFormat__SWIG_4()
72196 static int _wrap_new_SBTypeFormat__SWIG_5(lua_State* L) { in _wrap_new_SBTypeFormat__SWIG_5() argument
72203 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SBTypeFormat",1,"lldb::SBTypeFormat co… in _wrap_new_SBTypeFormat__SWIG_5()
72205 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_new_SBTypeFormat__SWIG_5()
72210 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_new_SBTypeFormat__SWIG_5()
72215 lua_error(L); in _wrap_new_SBTypeFormat__SWIG_5()
72220 static int _wrap_new_SBTypeFormat(lua_State* L) { in _wrap_new_SBTypeFormat() argument
72226 argc = lua_gettop(L); in _wrap_new_SBTypeFormat()
72228 return _wrap_new_SBTypeFormat__SWIG_0(L); in _wrap_new_SBTypeFormat()
72234 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeFormat()
72241 return _wrap_new_SBTypeFormat__SWIG_5(L); in _wrap_new_SBTypeFormat()
72247 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBTypeFormat()
72250 return _wrap_new_SBTypeFormat__SWIG_2(L); in _wrap_new_SBTypeFormat()
72256 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBTypeFormat()
72259 return _wrap_new_SBTypeFormat__SWIG_4(L); in _wrap_new_SBTypeFormat()
72265 _v = lua_isnumber(L,argv[0]); in _wrap_new_SBTypeFormat()
72269 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBTypeFormat()
72272 return _wrap_new_SBTypeFormat__SWIG_1(L); in _wrap_new_SBTypeFormat()
72279 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBTypeFormat()
72283 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBTypeFormat()
72286 return _wrap_new_SBTypeFormat__SWIG_3(L); in _wrap_new_SBTypeFormat()
72291 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeFormat'\n" in _wrap_new_SBTypeFormat()
72299 lua_error(L);return 0; in _wrap_new_SBTypeFormat()
72303 static int _wrap_SBTypeFormat_IsValid(lua_State* L) { in _wrap_SBTypeFormat_IsValid() argument
72310 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::IsValid",1,"lldb::SBTypeFormat const *… in _wrap_SBTypeFormat_IsValid()
72312 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_IsValid()
72317 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFormat_IsValid()
72322 lua_error(L); in _wrap_SBTypeFormat_IsValid()
72327 static int _wrap_SBTypeFormat_GetFormat(lua_State* L) { in _wrap_SBTypeFormat_GetFormat() argument
72334 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetFormat",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_GetFormat()
72336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_GetFormat()
72341 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeFormat_GetFormat()
72346 lua_error(L); in _wrap_SBTypeFormat_GetFormat()
72351 static int _wrap_SBTypeFormat_GetTypeName(lua_State* L) { in _wrap_SBTypeFormat_GetTypeName() argument
72358 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetTypeName",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_GetTypeName()
72360 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_GetTypeName()
72365 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeFormat_GetTypeName()
72370 lua_error(L); in _wrap_SBTypeFormat_GetTypeName()
72375 static int _wrap_SBTypeFormat_GetOptions(lua_State* L) { in _wrap_SBTypeFormat_GetOptions() argument
72382 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetOptions",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_GetOptions()
72384 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_GetOptions()
72389 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeFormat_GetOptions()
72394 lua_error(L); in _wrap_SBTypeFormat_GetOptions()
72399 static int _wrap_SBTypeFormat_SetFormat(lua_State* L) { in _wrap_SBTypeFormat_SetFormat() argument
72406 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SetFormat",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_SetFormat()
72407 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SetFormat",2,"lldb::Format"); in _wrap_SBTypeFormat_SetFormat()
72409 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_SetFormat()
72413 arg2 = (lldb::Format)lua_tointeger(L, 2); in _wrap_SBTypeFormat_SetFormat()
72420 lua_error(L); in _wrap_SBTypeFormat_SetFormat()
72425 static int _wrap_SBTypeFormat_SetTypeName(lua_State* L) { in _wrap_SBTypeFormat_SetTypeName() argument
72432 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SetTypeName",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_SetTypeName()
72433 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SetTypeName",2,"char const *"); in _wrap_SBTypeFormat_SetTypeName()
72435 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_SetTypeName()
72439 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeFormat_SetTypeName()
72446 lua_error(L); in _wrap_SBTypeFormat_SetTypeName()
72451 static int _wrap_SBTypeFormat_SetOptions(lua_State* L) { in _wrap_SBTypeFormat_SetOptions() argument
72458 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::SetOptions",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_SetOptions()
72459 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::SetOptions",2,"uint32_t"); in _wrap_SBTypeFormat_SetOptions()
72461 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_SetOptions()
72465 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeFormat_SetOptions()
72472 lua_error(L); in _wrap_SBTypeFormat_SetOptions()
72477 static int _wrap_SBTypeFormat_GetDescription(lua_State* L) { in _wrap_SBTypeFormat_GetDescription() argument
72486 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::GetDescription",1,"lldb::SBTypeFormat … in _wrap_SBTypeFormat_GetDescription()
72487 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::GetDescription",2,"lldb::SBStream &"); in _wrap_SBTypeFormat_GetDescription()
72488 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeFormat::GetDescription",3,"lldb::DescriptionLev… in _wrap_SBTypeFormat_GetDescription()
72490 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_GetDescription()
72495 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeFormat_GetDescription()
72499 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeFormat_GetDescription()
72501 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFormat_GetDescription()
72506 lua_error(L); in _wrap_SBTypeFormat_GetDescription()
72511 static int _wrap_SBTypeFormat_IsEqualTo(lua_State* L) { in _wrap_SBTypeFormat_IsEqualTo() argument
72519 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::IsEqualTo",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat_IsEqualTo()
72520 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::IsEqualTo",2,"lldb::SBTypeFormat &"); in _wrap_SBTypeFormat_IsEqualTo()
72522 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_IsEqualTo()
72527 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat_IsEqualTo()
72532 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFormat_IsEqualTo()
72537 lua_error(L); in _wrap_SBTypeFormat_IsEqualTo()
72542 static int _wrap_SBTypeFormat___eq(lua_State* L) { in _wrap_SBTypeFormat___eq() argument
72550 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::operator ==",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat___eq()
72551 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeFormat::operator ==",2,"lldb::SBTypeFormat &"); in _wrap_SBTypeFormat___eq()
72553 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat___eq()
72558 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat___eq()
72563 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeFormat___eq()
72568 lua_error(L); in _wrap_SBTypeFormat___eq()
72573 static int _wrap_SBTypeFormat___tostring(lua_State* L) { in _wrap_SBTypeFormat___tostring() argument
72580 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeFormat::__repr__",1,"lldb::SBTypeFormat *"); in _wrap_SBTypeFormat___tostring()
72582 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeFormat,0))){ in _wrap_SBTypeFormat___tostring()
72587 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeFormat___tostring()
72592 lua_error(L); in _wrap_SBTypeFormat___tostring()
72601 static int _proxy__wrap_new_SBTypeFormat(lua_State *L) { in _proxy__wrap_new_SBTypeFormat() argument
72602 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeFormat()
72603 lua_pushcfunction(L,_wrap_new_SBTypeFormat); in _proxy__wrap_new_SBTypeFormat()
72604 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeFormat()
72605 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeFormat()
72606 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeFormat()
72657 static int _wrap_new_SBTypeNameSpecifier__SWIG_0(lua_State* L) { in _wrap_new_SBTypeNameSpecifier__SWIG_0() argument
72664 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_new_SBTypeNameSpecifier__SWIG_0()
72669 lua_error(L); in _wrap_new_SBTypeNameSpecifier__SWIG_0()
72674 static int _wrap_new_SBTypeNameSpecifier__SWIG_1(lua_State* L) { in _wrap_new_SBTypeNameSpecifier__SWIG_1() argument
72682 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"c… in _wrap_new_SBTypeNameSpecifier__SWIG_1()
72683 … if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",2,"bool"); in _wrap_new_SBTypeNameSpecifier__SWIG_1()
72684 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBTypeNameSpecifier__SWIG_1()
72685 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_new_SBTypeNameSpecifier__SWIG_1()
72687 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_new_SBTypeNameSpecifier__SWIG_1()
72692 lua_error(L); in _wrap_new_SBTypeNameSpecifier__SWIG_1()
72697 static int _wrap_new_SBTypeNameSpecifier__SWIG_2(lua_State* L) { in _wrap_new_SBTypeNameSpecifier__SWIG_2() argument
72704 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"c… in _wrap_new_SBTypeNameSpecifier__SWIG_2()
72705 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBTypeNameSpecifier__SWIG_2()
72707 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_new_SBTypeNameSpecifier__SWIG_2()
72712 lua_error(L); in _wrap_new_SBTypeNameSpecifier__SWIG_2()
72717 static int _wrap_new_SBTypeNameSpecifier__SWIG_3(lua_State* L) { in _wrap_new_SBTypeNameSpecifier__SWIG_3() argument
72725 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"c… in _wrap_new_SBTypeNameSpecifier__SWIG_3()
72726 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",2,"lldb::Fo… in _wrap_new_SBTypeNameSpecifier__SWIG_3()
72727 arg1 = (char *)lua_tostring(L, 1); in _wrap_new_SBTypeNameSpecifier__SWIG_3()
72728 arg2 = (lldb::FormatterMatchType)lua_tointeger(L, 2); in _wrap_new_SBTypeNameSpecifier__SWIG_3()
72730 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_new_SBTypeNameSpecifier__SWIG_3()
72735 lua_error(L); in _wrap_new_SBTypeNameSpecifier__SWIG_3()
72740 static int _wrap_new_SBTypeNameSpecifier__SWIG_4(lua_State* L) { in _wrap_new_SBTypeNameSpecifier__SWIG_4() argument
72748 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"lldb::S… in _wrap_new_SBTypeNameSpecifier__SWIG_4()
72750 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&argp1,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_new_SBTypeNameSpecifier__SWIG_4()
72756 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_new_SBTypeNameSpecifier__SWIG_4()
72761 lua_error(L); in _wrap_new_SBTypeNameSpecifier__SWIG_4()
72766 static int _wrap_new_SBTypeNameSpecifier__SWIG_5(lua_State* L) { in _wrap_new_SBTypeNameSpecifier__SWIG_5() argument
72773 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::SBTypeNameSpecifier",1,"lldb::S… in _wrap_new_SBTypeNameSpecifier__SWIG_5()
72775 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_new_SBTypeNameSpecifier__SWIG_5()
72780 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeNameSpecifier,1); SWIG_arg++; in _wrap_new_SBTypeNameSpecifier__SWIG_5()
72785 lua_error(L); in _wrap_new_SBTypeNameSpecifier__SWIG_5()
72790 static int _wrap_new_SBTypeNameSpecifier(lua_State* L) { in _wrap_new_SBTypeNameSpecifier() argument
72796 argc = lua_gettop(L); in _wrap_new_SBTypeNameSpecifier()
72798 return _wrap_new_SBTypeNameSpecifier__SWIG_0(L); in _wrap_new_SBTypeNameSpecifier()
72804 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeNameSpecifier()
72811 return _wrap_new_SBTypeNameSpecifier__SWIG_4(L); in _wrap_new_SBTypeNameSpecifier()
72818 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeNameSpecifier()
72825 return _wrap_new_SBTypeNameSpecifier__SWIG_5(L); in _wrap_new_SBTypeNameSpecifier()
72831 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBTypeNameSpecifier()
72834 return _wrap_new_SBTypeNameSpecifier__SWIG_2(L); in _wrap_new_SBTypeNameSpecifier()
72840 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBTypeNameSpecifier()
72844 _v = lua_isboolean(L,argv[1]); in _wrap_new_SBTypeNameSpecifier()
72847 return _wrap_new_SBTypeNameSpecifier__SWIG_1(L); in _wrap_new_SBTypeNameSpecifier()
72854 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_new_SBTypeNameSpecifier()
72858 _v = lua_isnumber(L,argv[1]); in _wrap_new_SBTypeNameSpecifier()
72861 return _wrap_new_SBTypeNameSpecifier__SWIG_3(L); in _wrap_new_SBTypeNameSpecifier()
72866 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeNameSpecifier'\n" in _wrap_new_SBTypeNameSpecifier()
72874 lua_error(L);return 0; in _wrap_new_SBTypeNameSpecifier()
72878 static int _wrap_SBTypeNameSpecifier_IsValid(lua_State* L) { in _wrap_SBTypeNameSpecifier_IsValid() argument
72885 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsValid",1,"lldb::SBTypeNameSpe… in _wrap_SBTypeNameSpecifier_IsValid()
72887 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_IsValid()
72892 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeNameSpecifier_IsValid()
72897 lua_error(L); in _wrap_SBTypeNameSpecifier_IsValid()
72902 static int _wrap_SBTypeNameSpecifier_GetName(lua_State* L) { in _wrap_SBTypeNameSpecifier_GetName() argument
72909 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetName",1,"lldb::SBTypeNameSpe… in _wrap_SBTypeNameSpecifier_GetName()
72911 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_GetName()
72916 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeNameSpecifier_GetName()
72921 lua_error(L); in _wrap_SBTypeNameSpecifier_GetName()
72926 static int _wrap_SBTypeNameSpecifier_GetType(lua_State* L) { in _wrap_SBTypeNameSpecifier_GetType() argument
72933 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetType",1,"lldb::SBTypeNameSpe… in _wrap_SBTypeNameSpecifier_GetType()
72935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_GetType()
72942 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBTypeNameSpecifier_GetType()
72948 lua_error(L); in _wrap_SBTypeNameSpecifier_GetType()
72953 static int _wrap_SBTypeNameSpecifier_GetMatchType(lua_State* L) { in _wrap_SBTypeNameSpecifier_GetMatchType() argument
72960 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetMatchType",1,"lldb::SBTypeNa… in _wrap_SBTypeNameSpecifier_GetMatchType()
72962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_GetMatchType()
72967 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeNameSpecifier_GetMatchType()
72972 lua_error(L); in _wrap_SBTypeNameSpecifier_GetMatchType()
72977 static int _wrap_SBTypeNameSpecifier_IsRegex(lua_State* L) { in _wrap_SBTypeNameSpecifier_IsRegex() argument
72984 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsRegex",1,"lldb::SBTypeNameSpe… in _wrap_SBTypeNameSpecifier_IsRegex()
72986 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_IsRegex()
72991 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeNameSpecifier_IsRegex()
72996 lua_error(L); in _wrap_SBTypeNameSpecifier_IsRegex()
73001 static int _wrap_SBTypeNameSpecifier_GetDescription(lua_State* L) { in _wrap_SBTypeNameSpecifier_GetDescription() argument
73010 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetDescription",1,"lldb::SBType… in _wrap_SBTypeNameSpecifier_GetDescription()
73011 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetDescription",2,"lldb::SBStre… in _wrap_SBTypeNameSpecifier_GetDescription()
73012 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::GetDescription",3,"lldb::Descrip… in _wrap_SBTypeNameSpecifier_GetDescription()
73014 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_GetDescription()
73019 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeNameSpecifier_GetDescription()
73023 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeNameSpecifier_GetDescription()
73025 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeNameSpecifier_GetDescription()
73030 lua_error(L); in _wrap_SBTypeNameSpecifier_GetDescription()
73035 static int _wrap_SBTypeNameSpecifier_IsEqualTo(lua_State* L) { in _wrap_SBTypeNameSpecifier_IsEqualTo() argument
73043 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsEqualTo",1,"lldb::SBTypeNameS… in _wrap_SBTypeNameSpecifier_IsEqualTo()
73044 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::IsEqualTo",2,"lldb::SBTypeNameS… in _wrap_SBTypeNameSpecifier_IsEqualTo()
73046 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_IsEqualTo()
73051 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier_IsEqualTo()
73056 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeNameSpecifier_IsEqualTo()
73061 lua_error(L); in _wrap_SBTypeNameSpecifier_IsEqualTo()
73066 static int _wrap_SBTypeNameSpecifier___eq(lua_State* L) { in _wrap_SBTypeNameSpecifier___eq() argument
73074 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::operator ==",1,"lldb::SBTypeNam… in _wrap_SBTypeNameSpecifier___eq()
73075 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::operator ==",2,"lldb::SBTypeNam… in _wrap_SBTypeNameSpecifier___eq()
73077 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier___eq()
73082 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier___eq()
73087 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeNameSpecifier___eq()
73092 lua_error(L); in _wrap_SBTypeNameSpecifier___eq()
73097 static int _wrap_SBTypeNameSpecifier___tostring(lua_State* L) { in _wrap_SBTypeNameSpecifier___tostring() argument
73104 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeNameSpecifier::__repr__",1,"lldb::SBTypeNameSp… in _wrap_SBTypeNameSpecifier___tostring()
73106 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeNameSpecifier,0))){ in _wrap_SBTypeNameSpecifier___tostring()
73111 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeNameSpecifier___tostring()
73116 lua_error(L); in _wrap_SBTypeNameSpecifier___tostring()
73125 static int _proxy__wrap_new_SBTypeNameSpecifier(lua_State *L) { in _proxy__wrap_new_SBTypeNameSpecifier() argument
73126 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeNameSpecifier()
73127 lua_pushcfunction(L,_wrap_new_SBTypeNameSpecifier); in _proxy__wrap_new_SBTypeNameSpecifier()
73128 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeNameSpecifier()
73129 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeNameSpecifier()
73130 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeNameSpecifier()
73179 static int _wrap_new_SBTypeSummaryOptions__SWIG_0(lua_State* L) { in _wrap_new_SBTypeSummaryOptions__SWIG_0() argument
73186 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummaryOptions,1); SWIG_arg++; in _wrap_new_SBTypeSummaryOptions__SWIG_0()
73191 lua_error(L); in _wrap_new_SBTypeSummaryOptions__SWIG_0()
73196 static int _wrap_new_SBTypeSummaryOptions__SWIG_1(lua_State* L) { in _wrap_new_SBTypeSummaryOptions__SWIG_1() argument
73203 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SBTypeSummaryOptions",1,"lldb:… in _wrap_new_SBTypeSummaryOptions__SWIG_1()
73205 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_new_SBTypeSummaryOptions__SWIG_1()
73210 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummaryOptions,1); SWIG_arg++; in _wrap_new_SBTypeSummaryOptions__SWIG_1()
73215 lua_error(L); in _wrap_new_SBTypeSummaryOptions__SWIG_1()
73220 static int _wrap_new_SBTypeSummaryOptions(lua_State* L) { in _wrap_new_SBTypeSummaryOptions() argument
73226 argc = lua_gettop(L); in _wrap_new_SBTypeSummaryOptions()
73228 return _wrap_new_SBTypeSummaryOptions__SWIG_0(L); in _wrap_new_SBTypeSummaryOptions()
73234 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeSummaryOptions()
73241 return _wrap_new_SBTypeSummaryOptions__SWIG_1(L); in _wrap_new_SBTypeSummaryOptions()
73245 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeSummaryOptions'\n" in _wrap_new_SBTypeSummaryOptions()
73249 lua_error(L);return 0; in _wrap_new_SBTypeSummaryOptions()
73253 static int _wrap_SBTypeSummaryOptions_IsValid(lua_State* L) { in _wrap_SBTypeSummaryOptions_IsValid() argument
73260 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::IsValid",1,"lldb::SBTypeSummar… in _wrap_SBTypeSummaryOptions_IsValid()
73262 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_SBTypeSummaryOptions_IsValid()
73267 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummaryOptions_IsValid()
73272 lua_error(L); in _wrap_SBTypeSummaryOptions_IsValid()
73277 static int _wrap_SBTypeSummaryOptions_GetLanguage(lua_State* L) { in _wrap_SBTypeSummaryOptions_GetLanguage() argument
73284 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::GetLanguage",1,"lldb::SBTypeSu… in _wrap_SBTypeSummaryOptions_GetLanguage()
73286 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_SBTypeSummaryOptions_GetLanguage()
73291 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeSummaryOptions_GetLanguage()
73296 lua_error(L); in _wrap_SBTypeSummaryOptions_GetLanguage()
73301 static int _wrap_SBTypeSummaryOptions_GetCapping(lua_State* L) { in _wrap_SBTypeSummaryOptions_GetCapping() argument
73308 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::GetCapping",1,"lldb::SBTypeSum… in _wrap_SBTypeSummaryOptions_GetCapping()
73310 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_SBTypeSummaryOptions_GetCapping()
73315 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeSummaryOptions_GetCapping()
73320 lua_error(L); in _wrap_SBTypeSummaryOptions_GetCapping()
73325 static int _wrap_SBTypeSummaryOptions_SetLanguage(lua_State* L) { in _wrap_SBTypeSummaryOptions_SetLanguage() argument
73332 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetLanguage",1,"lldb::SBTypeSu… in _wrap_SBTypeSummaryOptions_SetLanguage()
73333 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetLanguage",2,"lldb::LanguageT… in _wrap_SBTypeSummaryOptions_SetLanguage()
73335 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_SBTypeSummaryOptions_SetLanguage()
73339 arg2 = (lldb::LanguageType)lua_tointeger(L, 2); in _wrap_SBTypeSummaryOptions_SetLanguage()
73346 lua_error(L); in _wrap_SBTypeSummaryOptions_SetLanguage()
73351 static int _wrap_SBTypeSummaryOptions_SetCapping(lua_State* L) { in _wrap_SBTypeSummaryOptions_SetCapping() argument
73358 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetCapping",1,"lldb::SBTypeSum… in _wrap_SBTypeSummaryOptions_SetCapping()
73359 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummaryOptions::SetCapping",2,"lldb::TypeSummar… in _wrap_SBTypeSummaryOptions_SetCapping()
73361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_SBTypeSummaryOptions_SetCapping()
73365 arg2 = (lldb::TypeSummaryCapping)lua_tointeger(L, 2); in _wrap_SBTypeSummaryOptions_SetCapping()
73372 lua_error(L); in _wrap_SBTypeSummaryOptions_SetCapping()
73381 static int _proxy__wrap_new_SBTypeSummaryOptions(lua_State *L) { in _proxy__wrap_new_SBTypeSummaryOptions() argument
73382 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeSummaryOptions()
73383 lua_pushcfunction(L,_wrap_new_SBTypeSummaryOptions); in _proxy__wrap_new_SBTypeSummaryOptions()
73384 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeSummaryOptions()
73385 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeSummaryOptions()
73386 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeSummaryOptions()
73429 static int _wrap_new_SBTypeSummary__SWIG_0(lua_State* L) { in _wrap_new_SBTypeSummary__SWIG_0() argument
73436 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_new_SBTypeSummary__SWIG_0()
73441 lua_error(L); in _wrap_new_SBTypeSummary__SWIG_0()
73446 static int _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0(lua_State* L) { in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0() argument
73454 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithSummaryString",1,"cha… in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0()
73455 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithSummaryString",2,"uint32_t"); in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0()
73456 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0()
73457 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0()
73461 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0()
73467 lua_error(L); in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0()
73472 static int _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1(lua_State* L) { in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1() argument
73479 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithSummaryString",1,"cha… in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1()
73480 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1()
73484 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1()
73490 lua_error(L); in _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1()
73495 static int _wrap_SBTypeSummary_CreateWithSummaryString(lua_State* L) { in _wrap_SBTypeSummary_CreateWithSummaryString() argument
73501 argc = lua_gettop(L); in _wrap_SBTypeSummary_CreateWithSummaryString()
73505 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSummary_CreateWithSummaryString()
73508 return _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_1(L); in _wrap_SBTypeSummary_CreateWithSummaryString()
73514 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSummary_CreateWithSummaryString()
73518 _v = lua_isnumber(L,argv[1]); in _wrap_SBTypeSummary_CreateWithSummaryString()
73521 return _wrap_SBTypeSummary_CreateWithSummaryString__SWIG_0(L); in _wrap_SBTypeSummary_CreateWithSummaryString()
73526 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSummary_CreateWithSummary… in _wrap_SBTypeSummary_CreateWithSummaryString()
73530 lua_error(L);return 0; in _wrap_SBTypeSummary_CreateWithSummaryString()
73534 static int _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0(lua_State* L) { in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0() argument
73542 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithFunctionName",1,"char… in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0()
73543 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithFunctionName",2,"uint32_t"); in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0()
73544 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0()
73545 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0()
73549 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0()
73555 lua_error(L); in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0()
73560 static int _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1(lua_State* L) { in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1() argument
73567 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithFunctionName",1,"char… in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1()
73568 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1()
73572 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1()
73578 lua_error(L); in _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1()
73583 static int _wrap_SBTypeSummary_CreateWithFunctionName(lua_State* L) { in _wrap_SBTypeSummary_CreateWithFunctionName() argument
73589 argc = lua_gettop(L); in _wrap_SBTypeSummary_CreateWithFunctionName()
73593 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSummary_CreateWithFunctionName()
73596 return _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_1(L); in _wrap_SBTypeSummary_CreateWithFunctionName()
73602 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSummary_CreateWithFunctionName()
73606 _v = lua_isnumber(L,argv[1]); in _wrap_SBTypeSummary_CreateWithFunctionName()
73609 return _wrap_SBTypeSummary_CreateWithFunctionName__SWIG_0(L); in _wrap_SBTypeSummary_CreateWithFunctionName()
73614 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSummary_CreateWithFunctio… in _wrap_SBTypeSummary_CreateWithFunctionName()
73618 lua_error(L);return 0; in _wrap_SBTypeSummary_CreateWithFunctionName()
73622 static int _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0(lua_State* L) { in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0() argument
73630 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithScriptCode",1,"char c… in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0()
73631 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithScriptCode",2,"uint32_t"); in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0()
73632 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0()
73633 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0()
73637 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0()
73643 lua_error(L); in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0()
73648 static int _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1(lua_State* L) { in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1() argument
73655 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::CreateWithScriptCode",1,"char c… in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1()
73656 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1()
73660 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1()
73666 lua_error(L); in _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1()
73671 static int _wrap_SBTypeSummary_CreateWithScriptCode(lua_State* L) { in _wrap_SBTypeSummary_CreateWithScriptCode() argument
73677 argc = lua_gettop(L); in _wrap_SBTypeSummary_CreateWithScriptCode()
73681 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSummary_CreateWithScriptCode()
73684 return _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_1(L); in _wrap_SBTypeSummary_CreateWithScriptCode()
73690 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSummary_CreateWithScriptCode()
73694 _v = lua_isnumber(L,argv[1]); in _wrap_SBTypeSummary_CreateWithScriptCode()
73697 return _wrap_SBTypeSummary_CreateWithScriptCode__SWIG_0(L); in _wrap_SBTypeSummary_CreateWithScriptCode()
73702 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSummary_CreateWithScriptC… in _wrap_SBTypeSummary_CreateWithScriptCode()
73706 lua_error(L);return 0; in _wrap_SBTypeSummary_CreateWithScriptCode()
73710 static int _wrap_new_SBTypeSummary__SWIG_1(lua_State* L) { in _wrap_new_SBTypeSummary__SWIG_1() argument
73717 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SBTypeSummary",1,"lldb::SBTypeSummary… in _wrap_new_SBTypeSummary__SWIG_1()
73719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_new_SBTypeSummary__SWIG_1()
73724 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_new_SBTypeSummary__SWIG_1()
73729 lua_error(L); in _wrap_new_SBTypeSummary__SWIG_1()
73734 static int _wrap_new_SBTypeSummary(lua_State* L) { in _wrap_new_SBTypeSummary() argument
73740 argc = lua_gettop(L); in _wrap_new_SBTypeSummary()
73742 return _wrap_new_SBTypeSummary__SWIG_0(L); in _wrap_new_SBTypeSummary()
73748 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeSummary()
73755 return _wrap_new_SBTypeSummary__SWIG_1(L); in _wrap_new_SBTypeSummary()
73759 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeSummary'\n" in _wrap_new_SBTypeSummary()
73763 lua_error(L);return 0; in _wrap_new_SBTypeSummary()
73767 static int _wrap_SBTypeSummary_IsValid(lua_State* L) { in _wrap_SBTypeSummary_IsValid() argument
73774 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsValid",1,"lldb::SBTypeSummary const… in _wrap_SBTypeSummary_IsValid()
73776 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_IsValid()
73781 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_IsValid()
73786 lua_error(L); in _wrap_SBTypeSummary_IsValid()
73791 static int _wrap_SBTypeSummary_IsFunctionCode(lua_State* L) { in _wrap_SBTypeSummary_IsFunctionCode() argument
73798 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsFunctionCode",1,"lldb::SBTypeSummar… in _wrap_SBTypeSummary_IsFunctionCode()
73800 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_IsFunctionCode()
73805 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_IsFunctionCode()
73810 lua_error(L); in _wrap_SBTypeSummary_IsFunctionCode()
73815 static int _wrap_SBTypeSummary_IsFunctionName(lua_State* L) { in _wrap_SBTypeSummary_IsFunctionName() argument
73822 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsFunctionName",1,"lldb::SBTypeSummar… in _wrap_SBTypeSummary_IsFunctionName()
73824 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_IsFunctionName()
73829 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_IsFunctionName()
73834 lua_error(L); in _wrap_SBTypeSummary_IsFunctionName()
73839 static int _wrap_SBTypeSummary_IsSummaryString(lua_State* L) { in _wrap_SBTypeSummary_IsSummaryString() argument
73846 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsSummaryString",1,"lldb::SBTypeSumma… in _wrap_SBTypeSummary_IsSummaryString()
73848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_IsSummaryString()
73853 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_IsSummaryString()
73858 lua_error(L); in _wrap_SBTypeSummary_IsSummaryString()
73863 static int _wrap_SBTypeSummary_GetData(lua_State* L) { in _wrap_SBTypeSummary_GetData() argument
73870 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::GetData",1,"lldb::SBTypeSummary *"); in _wrap_SBTypeSummary_GetData()
73872 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_GetData()
73877 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeSummary_GetData()
73882 lua_error(L); in _wrap_SBTypeSummary_GetData()
73887 static int _wrap_SBTypeSummary_SetSummaryString(lua_State* L) { in _wrap_SBTypeSummary_SetSummaryString() argument
73894 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetSummaryString",1,"lldb::SBTypeSumm… in _wrap_SBTypeSummary_SetSummaryString()
73895 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetSummaryString",2,"char const… in _wrap_SBTypeSummary_SetSummaryString()
73897 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_SetSummaryString()
73901 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeSummary_SetSummaryString()
73908 lua_error(L); in _wrap_SBTypeSummary_SetSummaryString()
73913 static int _wrap_SBTypeSummary_SetFunctionName(lua_State* L) { in _wrap_SBTypeSummary_SetFunctionName() argument
73920 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionName",1,"lldb::SBTypeSumma… in _wrap_SBTypeSummary_SetFunctionName()
73921 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionName",2,"char const … in _wrap_SBTypeSummary_SetFunctionName()
73923 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_SetFunctionName()
73927 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeSummary_SetFunctionName()
73934 lua_error(L); in _wrap_SBTypeSummary_SetFunctionName()
73939 static int _wrap_SBTypeSummary_SetFunctionCode(lua_State* L) { in _wrap_SBTypeSummary_SetFunctionCode() argument
73946 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionCode",1,"lldb::SBTypeSumma… in _wrap_SBTypeSummary_SetFunctionCode()
73947 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetFunctionCode",2,"char const … in _wrap_SBTypeSummary_SetFunctionCode()
73949 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_SetFunctionCode()
73953 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeSummary_SetFunctionCode()
73960 lua_error(L); in _wrap_SBTypeSummary_SetFunctionCode()
73965 static int _wrap_SBTypeSummary_GetOptions(lua_State* L) { in _wrap_SBTypeSummary_GetOptions() argument
73972 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::GetOptions",1,"lldb::SBTypeSummary *"… in _wrap_SBTypeSummary_GetOptions()
73974 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_GetOptions()
73979 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeSummary_GetOptions()
73984 lua_error(L); in _wrap_SBTypeSummary_GetOptions()
73989 static int _wrap_SBTypeSummary_SetOptions(lua_State* L) { in _wrap_SBTypeSummary_SetOptions() argument
73996 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::SetOptions",1,"lldb::SBTypeSummary *"… in _wrap_SBTypeSummary_SetOptions()
73997 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::SetOptions",2,"uint32_t"); in _wrap_SBTypeSummary_SetOptions()
73999 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_SetOptions()
74003 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSummary_SetOptions()
74010 lua_error(L); in _wrap_SBTypeSummary_SetOptions()
74015 static int _wrap_SBTypeSummary_GetDescription(lua_State* L) { in _wrap_SBTypeSummary_GetDescription() argument
74024 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::GetDescription",1,"lldb::SBTypeSummar… in _wrap_SBTypeSummary_GetDescription()
74025 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::GetDescription",2,"lldb::SBStream &"); in _wrap_SBTypeSummary_GetDescription()
74026 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeSummary::GetDescription",3,"lldb::DescriptionLe… in _wrap_SBTypeSummary_GetDescription()
74028 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_GetDescription()
74033 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeSummary_GetDescription()
74037 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeSummary_GetDescription()
74039 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_GetDescription()
74044 lua_error(L); in _wrap_SBTypeSummary_GetDescription()
74049 static int _wrap_SBTypeSummary_DoesPrintValue(lua_State* L) { in _wrap_SBTypeSummary_DoesPrintValue() argument
74058 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::DoesPrintValue",1,"lldb::SBTypeSummar… in _wrap_SBTypeSummary_DoesPrintValue()
74059 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::DoesPrintValue",2,"lldb::SBValue"); in _wrap_SBTypeSummary_DoesPrintValue()
74061 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_DoesPrintValue()
74066 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBTypeSummary_DoesPrintValue()
74072 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_DoesPrintValue()
74077 lua_error(L); in _wrap_SBTypeSummary_DoesPrintValue()
74082 static int _wrap_SBTypeSummary_IsEqualTo(lua_State* L) { in _wrap_SBTypeSummary_IsEqualTo() argument
74090 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::IsEqualTo",1,"lldb::SBTypeSummary *"); in _wrap_SBTypeSummary_IsEqualTo()
74091 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::IsEqualTo",2,"lldb::SBTypeSummary &"); in _wrap_SBTypeSummary_IsEqualTo()
74093 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_IsEqualTo()
74098 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary_IsEqualTo()
74103 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary_IsEqualTo()
74108 lua_error(L); in _wrap_SBTypeSummary_IsEqualTo()
74113 static int _wrap_SBTypeSummary___eq(lua_State* L) { in _wrap_SBTypeSummary___eq() argument
74121 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::operator ==",1,"lldb::SBTypeSummary *… in _wrap_SBTypeSummary___eq()
74122 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSummary::operator ==",2,"lldb::SBTypeSummary &… in _wrap_SBTypeSummary___eq()
74124 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary___eq()
74129 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary___eq()
74134 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSummary___eq()
74139 lua_error(L); in _wrap_SBTypeSummary___eq()
74144 static int _wrap_SBTypeSummary___tostring(lua_State* L) { in _wrap_SBTypeSummary___tostring() argument
74151 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSummary::__repr__",1,"lldb::SBTypeSummary *"); in _wrap_SBTypeSummary___tostring()
74153 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSummary,0))){ in _wrap_SBTypeSummary___tostring()
74158 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeSummary___tostring()
74163 lua_error(L); in _wrap_SBTypeSummary___tostring()
74172 static int _proxy__wrap_new_SBTypeSummary(lua_State *L) { in _proxy__wrap_new_SBTypeSummary() argument
74173 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeSummary()
74174 lua_pushcfunction(L,_wrap_new_SBTypeSummary); in _proxy__wrap_new_SBTypeSummary()
74175 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeSummary()
74176 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeSummary()
74177 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeSummary()
74235 static int _wrap_new_SBTypeSynthetic__SWIG_0(lua_State* L) { in _wrap_new_SBTypeSynthetic__SWIG_0() argument
74242 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_new_SBTypeSynthetic__SWIG_0()
74247 lua_error(L); in _wrap_new_SBTypeSynthetic__SWIG_0()
74252 static int _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0(lua_State* L) { in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0() argument
74260 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithClassName",1,"char … in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0()
74261 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithClassName",2,"uint32_t"); in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0()
74262 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0()
74263 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0()
74267 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0()
74273 lua_error(L); in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0()
74278 static int _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1(lua_State* L) { in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1() argument
74285 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithClassName",1,"char … in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1()
74286 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1()
74290 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1()
74296 lua_error(L); in _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1()
74301 static int _wrap_SBTypeSynthetic_CreateWithClassName(lua_State* L) { in _wrap_SBTypeSynthetic_CreateWithClassName() argument
74307 argc = lua_gettop(L); in _wrap_SBTypeSynthetic_CreateWithClassName()
74311 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSynthetic_CreateWithClassName()
74314 return _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_1(L); in _wrap_SBTypeSynthetic_CreateWithClassName()
74320 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSynthetic_CreateWithClassName()
74324 _v = lua_isnumber(L,argv[1]); in _wrap_SBTypeSynthetic_CreateWithClassName()
74327 return _wrap_SBTypeSynthetic_CreateWithClassName__SWIG_0(L); in _wrap_SBTypeSynthetic_CreateWithClassName()
74332 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSynthetic_CreateWithClass… in _wrap_SBTypeSynthetic_CreateWithClassName()
74336 lua_error(L);return 0; in _wrap_SBTypeSynthetic_CreateWithClassName()
74340 static int _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0(lua_State* L) { in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0() argument
74348 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithScriptCode",1,"char… in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0()
74349 … if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithScriptCode",2,"uint32_t"); in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0()
74350 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0()
74351 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0()
74355 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0()
74361 lua_error(L); in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0()
74366 static int _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1(lua_State* L) { in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1() argument
74373 …if(!SWIG_lua_isnilstring(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::CreateWithScriptCode",1,"char… in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1()
74374 arg1 = (char *)lua_tostring(L, 1); in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1()
74378 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1()
74384 lua_error(L); in _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1()
74389 static int _wrap_SBTypeSynthetic_CreateWithScriptCode(lua_State* L) { in _wrap_SBTypeSynthetic_CreateWithScriptCode() argument
74395 argc = lua_gettop(L); in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74399 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74402 return _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_1(L); in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74408 _v = SWIG_lua_isnilstring(L,argv[0]); in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74412 _v = lua_isnumber(L,argv[1]); in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74415 return _wrap_SBTypeSynthetic_CreateWithScriptCode__SWIG_0(L); in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74420 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBTypeSynthetic_CreateWithScrip… in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74424 lua_error(L);return 0; in _wrap_SBTypeSynthetic_CreateWithScriptCode()
74428 static int _wrap_new_SBTypeSynthetic__SWIG_1(lua_State* L) { in _wrap_new_SBTypeSynthetic__SWIG_1() argument
74435 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SBTypeSynthetic",1,"lldb::SBTypeSyn… in _wrap_new_SBTypeSynthetic__SWIG_1()
74437 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_new_SBTypeSynthetic__SWIG_1()
74442 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_new_SBTypeSynthetic__SWIG_1()
74447 lua_error(L); in _wrap_new_SBTypeSynthetic__SWIG_1()
74452 static int _wrap_new_SBTypeSynthetic(lua_State* L) { in _wrap_new_SBTypeSynthetic() argument
74458 argc = lua_gettop(L); in _wrap_new_SBTypeSynthetic()
74460 return _wrap_new_SBTypeSynthetic__SWIG_0(L); in _wrap_new_SBTypeSynthetic()
74466 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBTypeSynthetic()
74473 return _wrap_new_SBTypeSynthetic__SWIG_1(L); in _wrap_new_SBTypeSynthetic()
74477 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBTypeSynthetic'\n" in _wrap_new_SBTypeSynthetic()
74481 lua_error(L);return 0; in _wrap_new_SBTypeSynthetic()
74485 static int _wrap_SBTypeSynthetic_IsValid(lua_State* L) { in _wrap_SBTypeSynthetic_IsValid() argument
74492 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsValid",1,"lldb::SBTypeSynthetic c… in _wrap_SBTypeSynthetic_IsValid()
74494 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_IsValid()
74499 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSynthetic_IsValid()
74504 lua_error(L); in _wrap_SBTypeSynthetic_IsValid()
74509 static int _wrap_SBTypeSynthetic_IsClassCode(lua_State* L) { in _wrap_SBTypeSynthetic_IsClassCode() argument
74516 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsClassCode",1,"lldb::SBTypeSynthet… in _wrap_SBTypeSynthetic_IsClassCode()
74518 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_IsClassCode()
74523 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSynthetic_IsClassCode()
74528 lua_error(L); in _wrap_SBTypeSynthetic_IsClassCode()
74533 static int _wrap_SBTypeSynthetic_IsClassName(lua_State* L) { in _wrap_SBTypeSynthetic_IsClassName() argument
74540 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsClassName",1,"lldb::SBTypeSynthet… in _wrap_SBTypeSynthetic_IsClassName()
74542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_IsClassName()
74547 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSynthetic_IsClassName()
74552 lua_error(L); in _wrap_SBTypeSynthetic_IsClassName()
74557 static int _wrap_SBTypeSynthetic_GetData(lua_State* L) { in _wrap_SBTypeSynthetic_GetData() argument
74564 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetData",1,"lldb::SBTypeSynthetic *… in _wrap_SBTypeSynthetic_GetData()
74566 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_GetData()
74571 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBTypeSynthetic_GetData()
74576 lua_error(L); in _wrap_SBTypeSynthetic_GetData()
74581 static int _wrap_SBTypeSynthetic_SetClassName(lua_State* L) { in _wrap_SBTypeSynthetic_SetClassName() argument
74588 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassName",1,"lldb::SBTypeSynthe… in _wrap_SBTypeSynthetic_SetClassName()
74589 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassName",2,"char const *… in _wrap_SBTypeSynthetic_SetClassName()
74591 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_SetClassName()
74595 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeSynthetic_SetClassName()
74602 lua_error(L); in _wrap_SBTypeSynthetic_SetClassName()
74607 static int _wrap_SBTypeSynthetic_SetClassCode(lua_State* L) { in _wrap_SBTypeSynthetic_SetClassCode() argument
74614 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassCode",1,"lldb::SBTypeSynthe… in _wrap_SBTypeSynthetic_SetClassCode()
74615 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetClassCode",2,"char const *… in _wrap_SBTypeSynthetic_SetClassCode()
74617 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_SetClassCode()
74621 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBTypeSynthetic_SetClassCode()
74628 lua_error(L); in _wrap_SBTypeSynthetic_SetClassCode()
74633 static int _wrap_SBTypeSynthetic_GetOptions(lua_State* L) { in _wrap_SBTypeSynthetic_GetOptions() argument
74640 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetOptions",1,"lldb::SBTypeSyntheti… in _wrap_SBTypeSynthetic_GetOptions()
74642 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_GetOptions()
74647 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBTypeSynthetic_GetOptions()
74652 lua_error(L); in _wrap_SBTypeSynthetic_GetOptions()
74657 static int _wrap_SBTypeSynthetic_SetOptions(lua_State* L) { in _wrap_SBTypeSynthetic_SetOptions() argument
74664 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetOptions",1,"lldb::SBTypeSyntheti… in _wrap_SBTypeSynthetic_SetOptions()
74665 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::SetOptions",2,"uint32_t"); in _wrap_SBTypeSynthetic_SetOptions()
74667 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_SetOptions()
74671 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBTypeSynthetic_SetOptions()
74678 lua_error(L); in _wrap_SBTypeSynthetic_SetOptions()
74683 static int _wrap_SBTypeSynthetic_GetDescription(lua_State* L) { in _wrap_SBTypeSynthetic_GetDescription() argument
74692 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetDescription",1,"lldb::SBTypeSynt… in _wrap_SBTypeSynthetic_GetDescription()
74693 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetDescription",2,"lldb::SBStream &… in _wrap_SBTypeSynthetic_GetDescription()
74694 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBTypeSynthetic::GetDescription",3,"lldb::Description… in _wrap_SBTypeSynthetic_GetDescription()
74696 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_GetDescription()
74701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBTypeSynthetic_GetDescription()
74705 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBTypeSynthetic_GetDescription()
74707 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSynthetic_GetDescription()
74712 lua_error(L); in _wrap_SBTypeSynthetic_GetDescription()
74717 static int _wrap_SBTypeSynthetic_IsEqualTo(lua_State* L) { in _wrap_SBTypeSynthetic_IsEqualTo() argument
74725 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsEqualTo",1,"lldb::SBTypeSynthetic… in _wrap_SBTypeSynthetic_IsEqualTo()
74726 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::IsEqualTo",2,"lldb::SBTypeSynthetic… in _wrap_SBTypeSynthetic_IsEqualTo()
74728 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_IsEqualTo()
74733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic_IsEqualTo()
74738 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSynthetic_IsEqualTo()
74743 lua_error(L); in _wrap_SBTypeSynthetic_IsEqualTo()
74748 static int _wrap_SBTypeSynthetic___eq(lua_State* L) { in _wrap_SBTypeSynthetic___eq() argument
74756 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::operator ==",1,"lldb::SBTypeSynthet… in _wrap_SBTypeSynthetic___eq()
74757 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBTypeSynthetic::operator ==",2,"lldb::SBTypeSynthet… in _wrap_SBTypeSynthetic___eq()
74759 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic___eq()
74764 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic___eq()
74769 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBTypeSynthetic___eq()
74774 lua_error(L); in _wrap_SBTypeSynthetic___eq()
74779 static int _wrap_SBTypeSynthetic___tostring(lua_State* L) { in _wrap_SBTypeSynthetic___tostring() argument
74786 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBTypeSynthetic::__repr__",1,"lldb::SBTypeSynthetic … in _wrap_SBTypeSynthetic___tostring()
74788 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBTypeSynthetic,0))){ in _wrap_SBTypeSynthetic___tostring()
74793 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBTypeSynthetic___tostring()
74798 lua_error(L); in _wrap_SBTypeSynthetic___tostring()
74807 static int _proxy__wrap_new_SBTypeSynthetic(lua_State *L) { in _proxy__wrap_new_SBTypeSynthetic() argument
74808 assert(lua_istable(L,1)); in _proxy__wrap_new_SBTypeSynthetic()
74809 lua_pushcfunction(L,_wrap_new_SBTypeSynthetic); in _proxy__wrap_new_SBTypeSynthetic()
74810 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBTypeSynthetic()
74811 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBTypeSynthetic()
74812 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBTypeSynthetic()
74866 static int _wrap_new_SBUnixSignals__SWIG_0(lua_State* L) { in _wrap_new_SBUnixSignals__SWIG_0() argument
74873 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++; in _wrap_new_SBUnixSignals__SWIG_0()
74878 lua_error(L); in _wrap_new_SBUnixSignals__SWIG_0()
74883 static int _wrap_new_SBUnixSignals__SWIG_1(lua_State* L) { in _wrap_new_SBUnixSignals__SWIG_1() argument
74890 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SBUnixSignals",1,"lldb::SBUnixSignals… in _wrap_new_SBUnixSignals__SWIG_1()
74892 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_new_SBUnixSignals__SWIG_1()
74897 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBUnixSignals,1); SWIG_arg++; in _wrap_new_SBUnixSignals__SWIG_1()
74902 lua_error(L); in _wrap_new_SBUnixSignals__SWIG_1()
74907 static int _wrap_new_SBUnixSignals(lua_State* L) { in _wrap_new_SBUnixSignals() argument
74913 argc = lua_gettop(L); in _wrap_new_SBUnixSignals()
74915 return _wrap_new_SBUnixSignals__SWIG_0(L); in _wrap_new_SBUnixSignals()
74921 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBUnixSignals()
74928 return _wrap_new_SBUnixSignals__SWIG_1(L); in _wrap_new_SBUnixSignals()
74932 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBUnixSignals'\n" in _wrap_new_SBUnixSignals()
74936 lua_error(L);return 0; in _wrap_new_SBUnixSignals()
74940 static int _wrap_SBUnixSignals_Clear(lua_State* L) { in _wrap_SBUnixSignals_Clear() argument
74946 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::Clear",1,"lldb::SBUnixSignals *"); in _wrap_SBUnixSignals_Clear()
74948 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_Clear()
74958 lua_error(L); in _wrap_SBUnixSignals_Clear()
74963 static int _wrap_SBUnixSignals_IsValid(lua_State* L) { in _wrap_SBUnixSignals_IsValid() argument
74970 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::IsValid",1,"lldb::SBUnixSignals const… in _wrap_SBUnixSignals_IsValid()
74972 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_IsValid()
74977 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_IsValid()
74982 lua_error(L); in _wrap_SBUnixSignals_IsValid()
74987 static int _wrap_SBUnixSignals_GetSignalAsCString(lua_State* L) { in _wrap_SBUnixSignals_GetSignalAsCString() argument
74995 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAsCString",1,"lldb::SBUnixSi… in _wrap_SBUnixSignals_GetSignalAsCString()
74996 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAsCString",2,"int32_t"); in _wrap_SBUnixSignals_GetSignalAsCString()
74998 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetSignalAsCString()
75002 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_GetSignalAsCString()
75004 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBUnixSignals_GetSignalAsCString()
75009 lua_error(L); in _wrap_SBUnixSignals_GetSignalAsCString()
75014 static int _wrap_SBUnixSignals_GetSignalNumberFromName(lua_State* L) { in _wrap_SBUnixSignals_GetSignalNumberFromName() argument
75022 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalNumberFromName",1,"lldb::SBU… in _wrap_SBUnixSignals_GetSignalNumberFromName()
75023 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalNumberFromName",2,"cha… in _wrap_SBUnixSignals_GetSignalNumberFromName()
75025 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetSignalNumberFromName()
75029 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBUnixSignals_GetSignalNumberFromName()
75031 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBUnixSignals_GetSignalNumberFromName()
75036 lua_error(L); in _wrap_SBUnixSignals_GetSignalNumberFromName()
75041 static int _wrap_SBUnixSignals_GetShouldSuppress(lua_State* L) { in _wrap_SBUnixSignals_GetShouldSuppress() argument
75049 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldSuppress",1,"lldb::SBUnixSig… in _wrap_SBUnixSignals_GetShouldSuppress()
75050 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldSuppress",2,"int32_t"); in _wrap_SBUnixSignals_GetShouldSuppress()
75052 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetShouldSuppress()
75056 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_GetShouldSuppress()
75058 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_GetShouldSuppress()
75063 lua_error(L); in _wrap_SBUnixSignals_GetShouldSuppress()
75068 static int _wrap_SBUnixSignals_SetShouldSuppress(lua_State* L) { in _wrap_SBUnixSignals_SetShouldSuppress() argument
75077 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldSuppress",1,"lldb::SBUnixSig… in _wrap_SBUnixSignals_SetShouldSuppress()
75078 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldSuppress",2,"int32_t"); in _wrap_SBUnixSignals_SetShouldSuppress()
75079 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldSuppress",3,"bool"); in _wrap_SBUnixSignals_SetShouldSuppress()
75081 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_SetShouldSuppress()
75085 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_SetShouldSuppress()
75086 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBUnixSignals_SetShouldSuppress()
75088 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_SetShouldSuppress()
75093 lua_error(L); in _wrap_SBUnixSignals_SetShouldSuppress()
75098 static int _wrap_SBUnixSignals_GetShouldStop(lua_State* L) { in _wrap_SBUnixSignals_GetShouldStop() argument
75106 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldStop",1,"lldb::SBUnixSignals… in _wrap_SBUnixSignals_GetShouldStop()
75107 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldStop",2,"int32_t"); in _wrap_SBUnixSignals_GetShouldStop()
75109 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetShouldStop()
75113 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_GetShouldStop()
75115 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_GetShouldStop()
75120 lua_error(L); in _wrap_SBUnixSignals_GetShouldStop()
75125 static int _wrap_SBUnixSignals_SetShouldStop(lua_State* L) { in _wrap_SBUnixSignals_SetShouldStop() argument
75134 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldStop",1,"lldb::SBUnixSignals… in _wrap_SBUnixSignals_SetShouldStop()
75135 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldStop",2,"int32_t"); in _wrap_SBUnixSignals_SetShouldStop()
75136 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldStop",3,"bool"); in _wrap_SBUnixSignals_SetShouldStop()
75138 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_SetShouldStop()
75142 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_SetShouldStop()
75143 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBUnixSignals_SetShouldStop()
75145 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_SetShouldStop()
75150 lua_error(L); in _wrap_SBUnixSignals_SetShouldStop()
75155 static int _wrap_SBUnixSignals_GetShouldNotify(lua_State* L) { in _wrap_SBUnixSignals_GetShouldNotify() argument
75163 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldNotify",1,"lldb::SBUnixSigna… in _wrap_SBUnixSignals_GetShouldNotify()
75164 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetShouldNotify",2,"int32_t"); in _wrap_SBUnixSignals_GetShouldNotify()
75166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetShouldNotify()
75170 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_GetShouldNotify()
75172 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_GetShouldNotify()
75177 lua_error(L); in _wrap_SBUnixSignals_GetShouldNotify()
75182 static int _wrap_SBUnixSignals_SetShouldNotify(lua_State* L) { in _wrap_SBUnixSignals_SetShouldNotify() argument
75191 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldNotify",1,"lldb::SBUnixSigna… in _wrap_SBUnixSignals_SetShouldNotify()
75192 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldNotify",2,"int32_t"); in _wrap_SBUnixSignals_SetShouldNotify()
75193 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBUnixSignals::SetShouldNotify",3,"bool"); in _wrap_SBUnixSignals_SetShouldNotify()
75195 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_SetShouldNotify()
75199 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_SetShouldNotify()
75200 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBUnixSignals_SetShouldNotify()
75202 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBUnixSignals_SetShouldNotify()
75207 lua_error(L); in _wrap_SBUnixSignals_SetShouldNotify()
75212 static int _wrap_SBUnixSignals_GetNumSignals(lua_State* L) { in _wrap_SBUnixSignals_GetNumSignals() argument
75219 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetNumSignals",1,"lldb::SBUnixSignals… in _wrap_SBUnixSignals_GetNumSignals()
75221 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetNumSignals()
75226 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBUnixSignals_GetNumSignals()
75231 lua_error(L); in _wrap_SBUnixSignals_GetNumSignals()
75236 static int _wrap_SBUnixSignals_GetSignalAtIndex(lua_State* L) { in _wrap_SBUnixSignals_GetSignalAtIndex() argument
75244 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAtIndex",1,"lldb::SBUnixSign… in _wrap_SBUnixSignals_GetSignalAtIndex()
75245 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBUnixSignals::GetSignalAtIndex",2,"int32_t"); in _wrap_SBUnixSignals_GetSignalAtIndex()
75247 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBUnixSignals,0))){ in _wrap_SBUnixSignals_GetSignalAtIndex()
75251 arg2 = (int32_t)lua_tointeger(L, 2); in _wrap_SBUnixSignals_GetSignalAtIndex()
75253 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBUnixSignals_GetSignalAtIndex()
75258 lua_error(L); in _wrap_SBUnixSignals_GetSignalAtIndex()
75267 static int _proxy__wrap_new_SBUnixSignals(lua_State *L) { in _proxy__wrap_new_SBUnixSignals() argument
75268 assert(lua_istable(L,1)); in _proxy__wrap_new_SBUnixSignals()
75269 lua_pushcfunction(L,_wrap_new_SBUnixSignals); in _proxy__wrap_new_SBUnixSignals()
75270 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBUnixSignals()
75271 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBUnixSignals()
75272 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBUnixSignals()
75322 static int _wrap_new_SBValue__SWIG_0(lua_State* L) { in _wrap_new_SBValue__SWIG_0() argument
75329 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_new_SBValue__SWIG_0()
75334 lua_error(L); in _wrap_new_SBValue__SWIG_0()
75339 static int _wrap_new_SBValue__SWIG_1(lua_State* L) { in _wrap_new_SBValue__SWIG_1() argument
75346 if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBValue::SBValue",1,"lldb::SBValue const &"); in _wrap_new_SBValue__SWIG_1()
75348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_new_SBValue__SWIG_1()
75353 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_new_SBValue__SWIG_1()
75358 lua_error(L); in _wrap_new_SBValue__SWIG_1()
75363 static int _wrap_new_SBValue(lua_State* L) { in _wrap_new_SBValue() argument
75369 argc = lua_gettop(L); in _wrap_new_SBValue()
75371 return _wrap_new_SBValue__SWIG_0(L); in _wrap_new_SBValue()
75377 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBValue()
75384 return _wrap_new_SBValue__SWIG_1(L); in _wrap_new_SBValue()
75388 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBValue'\n" in _wrap_new_SBValue()
75392 lua_error(L);return 0; in _wrap_new_SBValue()
75396 static int _wrap_SBValue_IsValid(lua_State* L) { in _wrap_SBValue_IsValid() argument
75403 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsValid",1,"lldb::SBValue *"); in _wrap_SBValue_IsValid()
75405 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_IsValid()
75410 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_IsValid()
75415 lua_error(L); in _wrap_SBValue_IsValid()
75420 static int _wrap_SBValue_Clear(lua_State* L) { in _wrap_SBValue_Clear() argument
75426 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Clear",1,"lldb::SBValue *"); in _wrap_SBValue_Clear()
75428 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Clear()
75438 lua_error(L); in _wrap_SBValue_Clear()
75443 static int _wrap_SBValue_GetError(lua_State* L) { in _wrap_SBValue_GetError() argument
75450 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetError",1,"lldb::SBValue *"); in _wrap_SBValue_GetError()
75452 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetError()
75459 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBValue_GetError()
75465 lua_error(L); in _wrap_SBValue_GetError()
75470 static int _wrap_SBValue_GetID(lua_State* L) { in _wrap_SBValue_GetID() argument
75477 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetID",1,"lldb::SBValue *"); in _wrap_SBValue_GetID()
75479 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetID()
75484 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetID()
75489 lua_error(L); in _wrap_SBValue_GetID()
75494 static int _wrap_SBValue_GetName(lua_State* L) { in _wrap_SBValue_GetName() argument
75501 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetName",1,"lldb::SBValue *"); in _wrap_SBValue_GetName()
75503 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetName()
75508 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetName()
75513 lua_error(L); in _wrap_SBValue_GetName()
75518 static int _wrap_SBValue_GetTypeName(lua_State* L) { in _wrap_SBValue_GetTypeName() argument
75525 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeName",1,"lldb::SBValue *"); in _wrap_SBValue_GetTypeName()
75527 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetTypeName()
75532 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetTypeName()
75537 lua_error(L); in _wrap_SBValue_GetTypeName()
75542 static int _wrap_SBValue_GetDisplayTypeName(lua_State* L) { in _wrap_SBValue_GetDisplayTypeName() argument
75549 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDisplayTypeName",1,"lldb::SBValue *"); in _wrap_SBValue_GetDisplayTypeName()
75551 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetDisplayTypeName()
75556 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetDisplayTypeName()
75561 lua_error(L); in _wrap_SBValue_GetDisplayTypeName()
75566 static int _wrap_SBValue_GetByteSize(lua_State* L) { in _wrap_SBValue_GetByteSize() argument
75573 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetByteSize",1,"lldb::SBValue *"); in _wrap_SBValue_GetByteSize()
75575 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetByteSize()
75580 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetByteSize()
75585 lua_error(L); in _wrap_SBValue_GetByteSize()
75590 static int _wrap_SBValue_IsInScope(lua_State* L) { in _wrap_SBValue_IsInScope() argument
75597 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsInScope",1,"lldb::SBValue *"); in _wrap_SBValue_IsInScope()
75599 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_IsInScope()
75604 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_IsInScope()
75609 lua_error(L); in _wrap_SBValue_IsInScope()
75614 static int _wrap_SBValue_GetFormat(lua_State* L) { in _wrap_SBValue_GetFormat() argument
75621 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetFormat",1,"lldb::SBValue *"); in _wrap_SBValue_GetFormat()
75623 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetFormat()
75628 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetFormat()
75633 lua_error(L); in _wrap_SBValue_GetFormat()
75638 static int _wrap_SBValue_SetFormat(lua_State* L) { in _wrap_SBValue_SetFormat() argument
75645 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetFormat",1,"lldb::SBValue *"); in _wrap_SBValue_SetFormat()
75646 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::SetFormat",2,"lldb::Format"); in _wrap_SBValue_SetFormat()
75648 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetFormat()
75652 arg2 = (lldb::Format)lua_tointeger(L, 2); in _wrap_SBValue_SetFormat()
75659 lua_error(L); in _wrap_SBValue_SetFormat()
75664 static int _wrap_SBValue_GetValue(lua_State* L) { in _wrap_SBValue_GetValue() argument
75671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValue",1,"lldb::SBValue *"); in _wrap_SBValue_GetValue()
75673 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValue()
75678 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetValue()
75683 lua_error(L); in _wrap_SBValue_GetValue()
75688 static int _wrap_SBValue_GetValueAsSigned__SWIG_0(lua_State* L) { in _wrap_SBValue_GetValueAsSigned__SWIG_0() argument
75697 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75698 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",2,"lldb::SBError &"); in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75699 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",3,"int64_t"); in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75701 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75706 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75710 arg3 = (int64_t)lua_tointeger(L, 3); in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75712 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75717 lua_error(L); in _wrap_SBValue_GetValueAsSigned__SWIG_0()
75722 static int _wrap_SBValue_GetValueAsSigned__SWIG_1(lua_State* L) { in _wrap_SBValue_GetValueAsSigned__SWIG_1() argument
75730 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsSigned__SWIG_1()
75731 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",2,"lldb::SBError &"); in _wrap_SBValue_GetValueAsSigned__SWIG_1()
75733 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsSigned__SWIG_1()
75738 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_GetValueAsSigned__SWIG_1()
75743 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsSigned__SWIG_1()
75748 lua_error(L); in _wrap_SBValue_GetValueAsSigned__SWIG_1()
75753 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_0(lua_State* L) { in _wrap_SBValue_GetValueAsUnsigned__SWIG_0() argument
75762 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75763 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",2,"lldb::SBError &"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75764 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",3,"uint64_t"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75766 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75771 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75775 arg3 = (uint64_t)lua_tointeger(L, 3); in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75777 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75782 lua_error(L); in _wrap_SBValue_GetValueAsUnsigned__SWIG_0()
75787 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_1(lua_State* L) { in _wrap_SBValue_GetValueAsUnsigned__SWIG_1() argument
75795 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_1()
75796 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",2,"lldb::SBError &"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_1()
75798 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsUnsigned__SWIG_1()
75803 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_GetValueAsUnsigned__SWIG_1()
75808 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsUnsigned__SWIG_1()
75813 lua_error(L); in _wrap_SBValue_GetValueAsUnsigned__SWIG_1()
75818 static int _wrap_SBValue_GetValueAsSigned__SWIG_2(lua_State* L) { in _wrap_SBValue_GetValueAsSigned__SWIG_2() argument
75826 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsSigned__SWIG_2()
75827 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",2,"int64_t"); in _wrap_SBValue_GetValueAsSigned__SWIG_2()
75829 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsSigned__SWIG_2()
75833 arg2 = (int64_t)lua_tointeger(L, 2); in _wrap_SBValue_GetValueAsSigned__SWIG_2()
75835 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsSigned__SWIG_2()
75840 lua_error(L); in _wrap_SBValue_GetValueAsSigned__SWIG_2()
75845 static int _wrap_SBValue_GetValueAsSigned__SWIG_3(lua_State* L) { in _wrap_SBValue_GetValueAsSigned__SWIG_3() argument
75852 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsSigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsSigned__SWIG_3()
75854 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsSigned__SWIG_3()
75859 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsSigned__SWIG_3()
75864 lua_error(L); in _wrap_SBValue_GetValueAsSigned__SWIG_3()
75869 static int _wrap_SBValue_GetValueAsSigned(lua_State* L) { in _wrap_SBValue_GetValueAsSigned() argument
75875 argc = lua_gettop(L); in _wrap_SBValue_GetValueAsSigned()
75880 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsSigned()
75887 return _wrap_SBValue_GetValueAsSigned__SWIG_3(L); in _wrap_SBValue_GetValueAsSigned()
75894 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsSigned()
75903 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsSigned()
75910 return _wrap_SBValue_GetValueAsSigned__SWIG_1(L); in _wrap_SBValue_GetValueAsSigned()
75918 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsSigned()
75926 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetValueAsSigned()
75929 return _wrap_SBValue_GetValueAsSigned__SWIG_2(L); in _wrap_SBValue_GetValueAsSigned()
75937 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsSigned()
75946 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsSigned()
75954 _v = lua_isnumber(L,argv[2]); in _wrap_SBValue_GetValueAsSigned()
75957 return _wrap_SBValue_GetValueAsSigned__SWIG_0(L); in _wrap_SBValue_GetValueAsSigned()
75963 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetValueAsSigned'\n" in _wrap_SBValue_GetValueAsSigned()
75969 lua_error(L);return 0; in _wrap_SBValue_GetValueAsSigned()
75973 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_2(lua_State* L) { in _wrap_SBValue_GetValueAsUnsigned__SWIG_2() argument
75981 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_2()
75982 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",2,"uint64_t"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_2()
75984 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsUnsigned__SWIG_2()
75988 arg2 = (uint64_t)lua_tointeger(L, 2); in _wrap_SBValue_GetValueAsUnsigned__SWIG_2()
75990 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsUnsigned__SWIG_2()
75995 lua_error(L); in _wrap_SBValue_GetValueAsUnsigned__SWIG_2()
76000 static int _wrap_SBValue_GetValueAsUnsigned__SWIG_3(lua_State* L) { in _wrap_SBValue_GetValueAsUnsigned__SWIG_3() argument
76007 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsUnsigned",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsUnsigned__SWIG_3()
76009 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsUnsigned__SWIG_3()
76014 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsUnsigned__SWIG_3()
76019 lua_error(L); in _wrap_SBValue_GetValueAsUnsigned__SWIG_3()
76024 static int _wrap_SBValue_GetValueAsUnsigned(lua_State* L) { in _wrap_SBValue_GetValueAsUnsigned() argument
76030 argc = lua_gettop(L); in _wrap_SBValue_GetValueAsUnsigned()
76035 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsUnsigned()
76042 return _wrap_SBValue_GetValueAsUnsigned__SWIG_3(L); in _wrap_SBValue_GetValueAsUnsigned()
76049 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsUnsigned()
76058 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsUnsigned()
76065 return _wrap_SBValue_GetValueAsUnsigned__SWIG_1(L); in _wrap_SBValue_GetValueAsUnsigned()
76073 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsUnsigned()
76081 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetValueAsUnsigned()
76084 return _wrap_SBValue_GetValueAsUnsigned__SWIG_2(L); in _wrap_SBValue_GetValueAsUnsigned()
76092 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsUnsigned()
76101 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetValueAsUnsigned()
76109 _v = lua_isnumber(L,argv[2]); in _wrap_SBValue_GetValueAsUnsigned()
76112 return _wrap_SBValue_GetValueAsUnsigned__SWIG_0(L); in _wrap_SBValue_GetValueAsUnsigned()
76118 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetValueAsUnsigned'\n" in _wrap_SBValue_GetValueAsUnsigned()
76124 lua_error(L);return 0; in _wrap_SBValue_GetValueAsUnsigned()
76128 static int _wrap_SBValue_GetValueAsAddress(lua_State* L) { in _wrap_SBValue_GetValueAsAddress() argument
76135 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueAsAddress",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueAsAddress()
76137 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueAsAddress()
76142 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueAsAddress()
76147 lua_error(L); in _wrap_SBValue_GetValueAsAddress()
76152 static int _wrap_SBValue_GetValueType(lua_State* L) { in _wrap_SBValue_GetValueType() argument
76159 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueType",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueType()
76161 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueType()
76166 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetValueType()
76171 lua_error(L); in _wrap_SBValue_GetValueType()
76176 static int _wrap_SBValue_GetValueDidChange(lua_State* L) { in _wrap_SBValue_GetValueDidChange() argument
76183 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueDidChange",1,"lldb::SBValue *"); in _wrap_SBValue_GetValueDidChange()
76185 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueDidChange()
76190 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_GetValueDidChange()
76195 lua_error(L); in _wrap_SBValue_GetValueDidChange()
76200 static int _wrap_SBValue_GetSummary__SWIG_0(lua_State* L) { in _wrap_SBValue_GetSummary__SWIG_0() argument
76207 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetSummary",1,"lldb::SBValue *"); in _wrap_SBValue_GetSummary__SWIG_0()
76209 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetSummary__SWIG_0()
76214 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetSummary__SWIG_0()
76219 lua_error(L); in _wrap_SBValue_GetSummary__SWIG_0()
76224 static int _wrap_SBValue_GetSummary__SWIG_1(lua_State* L) { in _wrap_SBValue_GetSummary__SWIG_1() argument
76233 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetSummary",1,"lldb::SBValue *"); in _wrap_SBValue_GetSummary__SWIG_1()
76234 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetSummary",2,"lldb::SBStream &"); in _wrap_SBValue_GetSummary__SWIG_1()
76235 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::GetSummary",3,"lldb::SBTypeSummaryOptions &… in _wrap_SBValue_GetSummary__SWIG_1()
76237 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetSummary__SWIG_1()
76242 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBValue_GetSummary__SWIG_1()
76247 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBTypeSummaryOptions,0))){ in _wrap_SBValue_GetSummary__SWIG_1()
76252 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetSummary__SWIG_1()
76257 lua_error(L); in _wrap_SBValue_GetSummary__SWIG_1()
76262 static int _wrap_SBValue_GetSummary(lua_State* L) { in _wrap_SBValue_GetSummary() argument
76268 argc = lua_gettop(L); in _wrap_SBValue_GetSummary()
76273 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetSummary()
76280 return _wrap_SBValue_GetSummary__SWIG_0(L); in _wrap_SBValue_GetSummary()
76287 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetSummary()
76296 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetSummary()
76305 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetSummary()
76312 return _wrap_SBValue_GetSummary__SWIG_1(L); in _wrap_SBValue_GetSummary()
76318 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetSummary'\n" in _wrap_SBValue_GetSummary()
76322 lua_error(L);return 0; in _wrap_SBValue_GetSummary()
76326 static int _wrap_SBValue_GetObjectDescription(lua_State* L) { in _wrap_SBValue_GetObjectDescription() argument
76333 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetObjectDescription",1,"lldb::SBValue *"); in _wrap_SBValue_GetObjectDescription()
76335 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetObjectDescription()
76340 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetObjectDescription()
76345 lua_error(L); in _wrap_SBValue_GetObjectDescription()
76350 static int _wrap_SBValue_GetDynamicValue(lua_State* L) { in _wrap_SBValue_GetDynamicValue() argument
76358 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDynamicValue",1,"lldb::SBValue *"); in _wrap_SBValue_GetDynamicValue()
76359 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetDynamicValue",2,"lldb::DynamicValueType"); in _wrap_SBValue_GetDynamicValue()
76361 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetDynamicValue()
76365 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2); in _wrap_SBValue_GetDynamicValue()
76369 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetDynamicValue()
76375 lua_error(L); in _wrap_SBValue_GetDynamicValue()
76380 static int _wrap_SBValue_GetStaticValue(lua_State* L) { in _wrap_SBValue_GetStaticValue() argument
76387 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetStaticValue",1,"lldb::SBValue *"); in _wrap_SBValue_GetStaticValue()
76389 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetStaticValue()
76396 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetStaticValue()
76402 lua_error(L); in _wrap_SBValue_GetStaticValue()
76407 static int _wrap_SBValue_GetNonSyntheticValue(lua_State* L) { in _wrap_SBValue_GetNonSyntheticValue() argument
76414 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetNonSyntheticValue",1,"lldb::SBValue *"); in _wrap_SBValue_GetNonSyntheticValue()
76416 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetNonSyntheticValue()
76423 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetNonSyntheticValue()
76429 lua_error(L); in _wrap_SBValue_GetNonSyntheticValue()
76434 static int _wrap_SBValue_GetSyntheticValue(lua_State* L) { in _wrap_SBValue_GetSyntheticValue() argument
76441 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetSyntheticValue",1,"lldb::SBValue *"); in _wrap_SBValue_GetSyntheticValue()
76443 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetSyntheticValue()
76450 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetSyntheticValue()
76456 lua_error(L); in _wrap_SBValue_GetSyntheticValue()
76461 static int _wrap_SBValue_GetPreferDynamicValue(lua_State* L) { in _wrap_SBValue_GetPreferDynamicValue() argument
76468 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPreferDynamicValue",1,"lldb::SBValue *"); in _wrap_SBValue_GetPreferDynamicValue()
76470 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetPreferDynamicValue()
76475 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetPreferDynamicValue()
76480 lua_error(L); in _wrap_SBValue_GetPreferDynamicValue()
76485 static int _wrap_SBValue_SetPreferDynamicValue(lua_State* L) { in _wrap_SBValue_SetPreferDynamicValue() argument
76492 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetPreferDynamicValue",1,"lldb::SBValue *"); in _wrap_SBValue_SetPreferDynamicValue()
76493 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::SetPreferDynamicValue",2,"lldb::DynamicValue… in _wrap_SBValue_SetPreferDynamicValue()
76495 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetPreferDynamicValue()
76499 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2); in _wrap_SBValue_SetPreferDynamicValue()
76506 lua_error(L); in _wrap_SBValue_SetPreferDynamicValue()
76511 static int _wrap_SBValue_GetPreferSyntheticValue(lua_State* L) { in _wrap_SBValue_GetPreferSyntheticValue() argument
76518 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPreferSyntheticValue",1,"lldb::SBValue *… in _wrap_SBValue_GetPreferSyntheticValue()
76520 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetPreferSyntheticValue()
76525 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_GetPreferSyntheticValue()
76530 lua_error(L); in _wrap_SBValue_GetPreferSyntheticValue()
76535 static int _wrap_SBValue_SetPreferSyntheticValue(lua_State* L) { in _wrap_SBValue_SetPreferSyntheticValue() argument
76542 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetPreferSyntheticValue",1,"lldb::SBValue *… in _wrap_SBValue_SetPreferSyntheticValue()
76543 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::SetPreferSyntheticValue",2,"bool"); in _wrap_SBValue_SetPreferSyntheticValue()
76545 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetPreferSyntheticValue()
76549 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBValue_SetPreferSyntheticValue()
76556 lua_error(L); in _wrap_SBValue_SetPreferSyntheticValue()
76561 static int _wrap_SBValue_IsDynamic(lua_State* L) { in _wrap_SBValue_IsDynamic() argument
76568 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsDynamic",1,"lldb::SBValue *"); in _wrap_SBValue_IsDynamic()
76570 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_IsDynamic()
76575 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_IsDynamic()
76580 lua_error(L); in _wrap_SBValue_IsDynamic()
76585 static int _wrap_SBValue_IsSynthetic(lua_State* L) { in _wrap_SBValue_IsSynthetic() argument
76592 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsSynthetic",1,"lldb::SBValue *"); in _wrap_SBValue_IsSynthetic()
76594 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_IsSynthetic()
76599 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_IsSynthetic()
76604 lua_error(L); in _wrap_SBValue_IsSynthetic()
76609 static int _wrap_SBValue_IsSyntheticChildrenGenerated(lua_State* L) { in _wrap_SBValue_IsSyntheticChildrenGenerated() argument
76616 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsSyntheticChildrenGenerated",1,"lldb::SBVa… in _wrap_SBValue_IsSyntheticChildrenGenerated()
76618 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_IsSyntheticChildrenGenerated()
76623 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_IsSyntheticChildrenGenerated()
76628 lua_error(L); in _wrap_SBValue_IsSyntheticChildrenGenerated()
76633 static int _wrap_SBValue_SetSyntheticChildrenGenerated(lua_State* L) { in _wrap_SBValue_SetSyntheticChildrenGenerated() argument
76640 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetSyntheticChildrenGenerated",1,"lldb::SBV… in _wrap_SBValue_SetSyntheticChildrenGenerated()
76641 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::SetSyntheticChildrenGenerated",2,"bool"); in _wrap_SBValue_SetSyntheticChildrenGenerated()
76643 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetSyntheticChildrenGenerated()
76647 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBValue_SetSyntheticChildrenGenerated()
76654 lua_error(L); in _wrap_SBValue_SetSyntheticChildrenGenerated()
76659 static int _wrap_SBValue_GetLocation(lua_State* L) { in _wrap_SBValue_GetLocation() argument
76666 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetLocation",1,"lldb::SBValue *"); in _wrap_SBValue_GetLocation()
76668 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetLocation()
76673 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBValue_GetLocation()
76678 lua_error(L); in _wrap_SBValue_GetLocation()
76683 static int _wrap_SBValue_SetValueFromCString__SWIG_0(lua_State* L) { in _wrap_SBValue_SetValueFromCString__SWIG_0() argument
76691 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",1,"lldb::SBValue *"); in _wrap_SBValue_SetValueFromCString__SWIG_0()
76692 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",2,"char const *"… in _wrap_SBValue_SetValueFromCString__SWIG_0()
76694 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetValueFromCString__SWIG_0()
76698 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_SetValueFromCString__SWIG_0()
76700 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_SetValueFromCString__SWIG_0()
76705 lua_error(L); in _wrap_SBValue_SetValueFromCString__SWIG_0()
76710 static int _wrap_SBValue_SetValueFromCString__SWIG_1(lua_State* L) { in _wrap_SBValue_SetValueFromCString__SWIG_1() argument
76719 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",1,"lldb::SBValue *"); in _wrap_SBValue_SetValueFromCString__SWIG_1()
76720 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",2,"char const *"… in _wrap_SBValue_SetValueFromCString__SWIG_1()
76721 … if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::SetValueFromCString",3,"lldb::SBError &"); in _wrap_SBValue_SetValueFromCString__SWIG_1()
76723 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetValueFromCString__SWIG_1()
76727 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_SetValueFromCString__SWIG_1()
76729 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_SetValueFromCString__SWIG_1()
76734 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_SetValueFromCString__SWIG_1()
76739 lua_error(L); in _wrap_SBValue_SetValueFromCString__SWIG_1()
76744 static int _wrap_SBValue_SetValueFromCString(lua_State* L) { in _wrap_SBValue_SetValueFromCString() argument
76750 argc = lua_gettop(L); in _wrap_SBValue_SetValueFromCString()
76755 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_SetValueFromCString()
76763 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_SetValueFromCString()
76766 return _wrap_SBValue_SetValueFromCString__SWIG_0(L); in _wrap_SBValue_SetValueFromCString()
76774 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_SetValueFromCString()
76782 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_SetValueFromCString()
76787 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_SetValueFromCString()
76794 return _wrap_SBValue_SetValueFromCString__SWIG_1(L); in _wrap_SBValue_SetValueFromCString()
76800 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_SetValueFromCString'\n" in _wrap_SBValue_SetValueFromCString()
76804 lua_error(L);return 0; in _wrap_SBValue_SetValueFromCString()
76808 static int _wrap_SBValue_GetTypeFormat(lua_State* L) { in _wrap_SBValue_GetTypeFormat() argument
76815 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeFormat",1,"lldb::SBValue *"); in _wrap_SBValue_GetTypeFormat()
76817 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetTypeFormat()
76824 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFormat,1); SWIG_arg++; in _wrap_SBValue_GetTypeFormat()
76830 lua_error(L); in _wrap_SBValue_GetTypeFormat()
76835 static int _wrap_SBValue_GetTypeSummary(lua_State* L) { in _wrap_SBValue_GetTypeSummary() argument
76842 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeSummary",1,"lldb::SBValue *"); in _wrap_SBValue_GetTypeSummary()
76844 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetTypeSummary()
76851 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSummary,1); SWIG_arg++; in _wrap_SBValue_GetTypeSummary()
76857 lua_error(L); in _wrap_SBValue_GetTypeSummary()
76862 static int _wrap_SBValue_GetTypeFilter(lua_State* L) { in _wrap_SBValue_GetTypeFilter() argument
76869 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeFilter",1,"lldb::SBValue *"); in _wrap_SBValue_GetTypeFilter()
76871 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetTypeFilter()
76878 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeFilter,1); SWIG_arg++; in _wrap_SBValue_GetTypeFilter()
76884 lua_error(L); in _wrap_SBValue_GetTypeFilter()
76889 static int _wrap_SBValue_GetTypeSynthetic(lua_State* L) { in _wrap_SBValue_GetTypeSynthetic() argument
76896 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTypeSynthetic",1,"lldb::SBValue *"); in _wrap_SBValue_GetTypeSynthetic()
76898 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetTypeSynthetic()
76905 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTypeSynthetic,1); SWIG_arg++; in _wrap_SBValue_GetTypeSynthetic()
76911 lua_error(L); in _wrap_SBValue_GetTypeSynthetic()
76916 static int _wrap_SBValue_GetChildAtIndex__SWIG_0(lua_State* L) { in _wrap_SBValue_GetChildAtIndex__SWIG_0() argument
76924 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",1,"lldb::SBValue *"); in _wrap_SBValue_GetChildAtIndex__SWIG_0()
76925 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",2,"uint32_t"); in _wrap_SBValue_GetChildAtIndex__SWIG_0()
76927 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetChildAtIndex__SWIG_0()
76931 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBValue_GetChildAtIndex__SWIG_0()
76935 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetChildAtIndex__SWIG_0()
76941 lua_error(L); in _wrap_SBValue_GetChildAtIndex__SWIG_0()
76946 static int _wrap_SBValue_CreateChildAtOffset(lua_State* L) { in _wrap_SBValue_CreateChildAtOffset() argument
76957 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",1,"lldb::SBValue *"); in _wrap_SBValue_CreateChildAtOffset()
76958 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",2,"char const *"… in _wrap_SBValue_CreateChildAtOffset()
76959 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",3,"uint32_t"); in _wrap_SBValue_CreateChildAtOffset()
76960 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateChildAtOffset",4,"lldb::SBType"); in _wrap_SBValue_CreateChildAtOffset()
76962 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_CreateChildAtOffset()
76966 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_CreateChildAtOffset()
76967 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBValue_CreateChildAtOffset()
76969 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBValue_CreateChildAtOffset()
76977 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_CreateChildAtOffset()
76983 lua_error(L); in _wrap_SBValue_CreateChildAtOffset()
76988 static int _wrap_SBValue_Cast(lua_State* L) { in _wrap_SBValue_Cast() argument
76997 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Cast",1,"lldb::SBValue *"); in _wrap_SBValue_Cast()
76998 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::Cast",2,"lldb::SBType"); in _wrap_SBValue_Cast()
77000 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Cast()
77005 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&argp2,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBValue_Cast()
77013 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_Cast()
77019 lua_error(L); in _wrap_SBValue_Cast()
77024 static int _wrap_SBValue_CreateValueFromExpression__SWIG_0(lua_State* L) { in _wrap_SBValue_CreateValueFromExpression__SWIG_0() argument
77033 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",1,"lldb::SBValue… in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77034 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",2,"char co… in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77035 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",3,"char co… in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77037 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77041 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77042 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77046 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77052 lua_error(L); in _wrap_SBValue_CreateValueFromExpression__SWIG_0()
77057 static int _wrap_SBValue_CreateValueFromExpression__SWIG_1(lua_State* L) { in _wrap_SBValue_CreateValueFromExpression__SWIG_1() argument
77067 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",1,"lldb::SBValue… in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77068 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",2,"char co… in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77069 …if(!SWIG_lua_isnilstring(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",3,"char co… in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77070 …if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateValueFromExpression",4,"lldb::SBExpre… in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77072 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77076 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77077 arg3 = (char *)lua_tostring(L, 3); in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77079 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&arg4,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77086 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77092 lua_error(L); in _wrap_SBValue_CreateValueFromExpression__SWIG_1()
77097 static int _wrap_SBValue_CreateValueFromExpression(lua_State* L) { in _wrap_SBValue_CreateValueFromExpression() argument
77103 argc = lua_gettop(L); in _wrap_SBValue_CreateValueFromExpression()
77108 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_CreateValueFromExpression()
77116 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_CreateValueFromExpression()
77120 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBValue_CreateValueFromExpression()
77123 return _wrap_SBValue_CreateValueFromExpression__SWIG_0(L); in _wrap_SBValue_CreateValueFromExpression()
77132 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_CreateValueFromExpression()
77140 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_CreateValueFromExpression()
77144 _v = SWIG_lua_isnilstring(L,argv[2]); in _wrap_SBValue_CreateValueFromExpression()
77149 …if (lua_isuserdata(L,argv[3])==0 || SWIG_ConvertPtr(L,argv[3], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_CreateValueFromExpression()
77156 return _wrap_SBValue_CreateValueFromExpression__SWIG_1(L); in _wrap_SBValue_CreateValueFromExpression()
77163 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_CreateValueFromExpressi… in _wrap_SBValue_CreateValueFromExpression()
77167 lua_error(L);return 0; in _wrap_SBValue_CreateValueFromExpression()
77171 static int _wrap_SBValue_CreateValueFromAddress(lua_State* L) { in _wrap_SBValue_CreateValueFromAddress() argument
77182 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",1,"lldb::SBValue *"… in _wrap_SBValue_CreateValueFromAddress()
77183 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",2,"char const… in _wrap_SBValue_CreateValueFromAddress()
77184 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",3,"lldb::addr_t"); in _wrap_SBValue_CreateValueFromAddress()
77185 … if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateValueFromAddress",4,"lldb::SBType"); in _wrap_SBValue_CreateValueFromAddress()
77187 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_CreateValueFromAddress()
77191 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_CreateValueFromAddress()
77192 arg3 = (lldb::addr_t)lua_tointeger(L, 3); in _wrap_SBValue_CreateValueFromAddress()
77194 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBValue_CreateValueFromAddress()
77202 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_CreateValueFromAddress()
77208 lua_error(L); in _wrap_SBValue_CreateValueFromAddress()
77213 static int _wrap_SBValue_CreateValueFromData(lua_State* L) { in _wrap_SBValue_CreateValueFromData() argument
77225 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",1,"lldb::SBValue *"); in _wrap_SBValue_CreateValueFromData()
77226 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",2,"char const *"… in _wrap_SBValue_CreateValueFromData()
77227 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",3,"lldb::SBData"); in _wrap_SBValue_CreateValueFromData()
77228 if(!lua_isuserdata(L,4)) SWIG_fail_arg("lldb::SBValue::CreateValueFromData",4,"lldb::SBType"); in _wrap_SBValue_CreateValueFromData()
77230 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_CreateValueFromData()
77234 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_CreateValueFromData()
77236 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&argp3,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBValue_CreateValueFromData()
77242 if (!SWIG_IsOK(SWIG_ConvertPtr(L,4,(void**)&argp4,SWIGTYPE_p_lldb__SBType,0))){ in _wrap_SBValue_CreateValueFromData()
77250 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_CreateValueFromData()
77256 lua_error(L); in _wrap_SBValue_CreateValueFromData()
77261 static int _wrap_SBValue_GetChildAtIndex__SWIG_1(lua_State* L) { in _wrap_SBValue_GetChildAtIndex__SWIG_1() argument
77271 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",1,"lldb::SBValue *"); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77272 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",2,"uint32_t"); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77273 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",3,"lldb::DynamicValueType"); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77274 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::GetChildAtIndex",4,"bool"); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77276 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77280 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77281 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77282 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77286 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77292 lua_error(L); in _wrap_SBValue_GetChildAtIndex__SWIG_1()
77297 static int _wrap_SBValue_GetChildAtIndex(lua_State* L) { in _wrap_SBValue_GetChildAtIndex() argument
77303 argc = lua_gettop(L); in _wrap_SBValue_GetChildAtIndex()
77308 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetChildAtIndex()
77316 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetChildAtIndex()
77319 return _wrap_SBValue_GetChildAtIndex__SWIG_0(L); in _wrap_SBValue_GetChildAtIndex()
77327 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetChildAtIndex()
77335 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetChildAtIndex()
77339 _v = lua_isnumber(L,argv[2]); in _wrap_SBValue_GetChildAtIndex()
77343 _v = lua_isboolean(L,argv[3]); in _wrap_SBValue_GetChildAtIndex()
77346 return _wrap_SBValue_GetChildAtIndex__SWIG_1(L); in _wrap_SBValue_GetChildAtIndex()
77353 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetChildAtIndex'\n" in _wrap_SBValue_GetChildAtIndex()
77357 lua_error(L);return 0; in _wrap_SBValue_GetChildAtIndex()
77361 static int _wrap_SBValue_GetIndexOfChildWithName(lua_State* L) { in _wrap_SBValue_GetIndexOfChildWithName() argument
77369 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetIndexOfChildWithName",1,"lldb::SBValue *… in _wrap_SBValue_GetIndexOfChildWithName()
77370 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetIndexOfChildWithName",2,"char cons… in _wrap_SBValue_GetIndexOfChildWithName()
77372 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetIndexOfChildWithName()
77376 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_GetIndexOfChildWithName()
77378 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetIndexOfChildWithName()
77383 lua_error(L); in _wrap_SBValue_GetIndexOfChildWithName()
77388 static int _wrap_SBValue_GetChildMemberWithName__SWIG_0(lua_State* L) { in _wrap_SBValue_GetChildMemberWithName__SWIG_0() argument
77396 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",1,"lldb::SBValue *"… in _wrap_SBValue_GetChildMemberWithName__SWIG_0()
77397 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",2,"char const… in _wrap_SBValue_GetChildMemberWithName__SWIG_0()
77399 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetChildMemberWithName__SWIG_0()
77403 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_GetChildMemberWithName__SWIG_0()
77407 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetChildMemberWithName__SWIG_0()
77413 lua_error(L); in _wrap_SBValue_GetChildMemberWithName__SWIG_0()
77418 static int _wrap_SBValue_GetChildMemberWithName__SWIG_1(lua_State* L) { in _wrap_SBValue_GetChildMemberWithName__SWIG_1() argument
77427 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",1,"lldb::SBValue *"… in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77428 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",2,"char const… in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77429 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetChildMemberWithName",3,"lldb::DynamicValu… in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77431 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77435 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77436 arg3 = (lldb::DynamicValueType)lua_tointeger(L, 3); in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77440 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77446 lua_error(L); in _wrap_SBValue_GetChildMemberWithName__SWIG_1()
77451 static int _wrap_SBValue_GetChildMemberWithName(lua_State* L) { in _wrap_SBValue_GetChildMemberWithName() argument
77457 argc = lua_gettop(L); in _wrap_SBValue_GetChildMemberWithName()
77462 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetChildMemberWithName()
77470 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_GetChildMemberWithName()
77473 return _wrap_SBValue_GetChildMemberWithName__SWIG_0(L); in _wrap_SBValue_GetChildMemberWithName()
77481 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetChildMemberWithName()
77489 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_GetChildMemberWithName()
77493 _v = lua_isnumber(L,argv[2]); in _wrap_SBValue_GetChildMemberWithName()
77496 return _wrap_SBValue_GetChildMemberWithName__SWIG_1(L); in _wrap_SBValue_GetChildMemberWithName()
77502 …SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetChildMemberWithName'… in _wrap_SBValue_GetChildMemberWithName()
77506 lua_error(L);return 0; in _wrap_SBValue_GetChildMemberWithName()
77510 static int _wrap_SBValue_GetValueForExpressionPath(lua_State* L) { in _wrap_SBValue_GetValueForExpressionPath() argument
77518 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetValueForExpressionPath",1,"lldb::SBValue… in _wrap_SBValue_GetValueForExpressionPath()
77519 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::GetValueForExpressionPath",2,"char co… in _wrap_SBValue_GetValueForExpressionPath()
77521 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetValueForExpressionPath()
77525 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_GetValueForExpressionPath()
77529 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetValueForExpressionPath()
77535 lua_error(L); in _wrap_SBValue_GetValueForExpressionPath()
77540 static int _wrap_SBValue_AddressOf(lua_State* L) { in _wrap_SBValue_AddressOf() argument
77547 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::AddressOf",1,"lldb::SBValue *"); in _wrap_SBValue_AddressOf()
77549 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_AddressOf()
77556 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_AddressOf()
77562 lua_error(L); in _wrap_SBValue_AddressOf()
77567 static int _wrap_SBValue_GetLoadAddress(lua_State* L) { in _wrap_SBValue_GetLoadAddress() argument
77574 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetLoadAddress",1,"lldb::SBValue *"); in _wrap_SBValue_GetLoadAddress()
77576 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetLoadAddress()
77581 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetLoadAddress()
77586 lua_error(L); in _wrap_SBValue_GetLoadAddress()
77591 static int _wrap_SBValue_GetAddress(lua_State* L) { in _wrap_SBValue_GetAddress() argument
77598 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetAddress",1,"lldb::SBValue *"); in _wrap_SBValue_GetAddress()
77600 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetAddress()
77607 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBAddress,1); SWIG_arg++; in _wrap_SBValue_GetAddress()
77613 lua_error(L); in _wrap_SBValue_GetAddress()
77618 static int _wrap_SBValue_GetPointeeData__SWIG_0(lua_State* L) { in _wrap_SBValue_GetPointeeData__SWIG_0() argument
77627 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",1,"lldb::SBValue *"); in _wrap_SBValue_GetPointeeData__SWIG_0()
77628 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",2,"uint32_t"); in _wrap_SBValue_GetPointeeData__SWIG_0()
77629 if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",3,"uint32_t"); in _wrap_SBValue_GetPointeeData__SWIG_0()
77631 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetPointeeData__SWIG_0()
77635 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBValue_GetPointeeData__SWIG_0()
77636 arg3 = (uint32_t)lua_tointeger(L, 3); in _wrap_SBValue_GetPointeeData__SWIG_0()
77640 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBValue_GetPointeeData__SWIG_0()
77646 lua_error(L); in _wrap_SBValue_GetPointeeData__SWIG_0()
77651 static int _wrap_SBValue_GetPointeeData__SWIG_1(lua_State* L) { in _wrap_SBValue_GetPointeeData__SWIG_1() argument
77659 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",1,"lldb::SBValue *"); in _wrap_SBValue_GetPointeeData__SWIG_1()
77660 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",2,"uint32_t"); in _wrap_SBValue_GetPointeeData__SWIG_1()
77662 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetPointeeData__SWIG_1()
77666 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBValue_GetPointeeData__SWIG_1()
77670 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBValue_GetPointeeData__SWIG_1()
77676 lua_error(L); in _wrap_SBValue_GetPointeeData__SWIG_1()
77681 static int _wrap_SBValue_GetPointeeData__SWIG_2(lua_State* L) { in _wrap_SBValue_GetPointeeData__SWIG_2() argument
77688 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetPointeeData",1,"lldb::SBValue *"); in _wrap_SBValue_GetPointeeData__SWIG_2()
77690 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetPointeeData__SWIG_2()
77697 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBValue_GetPointeeData__SWIG_2()
77703 lua_error(L); in _wrap_SBValue_GetPointeeData__SWIG_2()
77708 static int _wrap_SBValue_GetPointeeData(lua_State* L) { in _wrap_SBValue_GetPointeeData() argument
77714 argc = lua_gettop(L); in _wrap_SBValue_GetPointeeData()
77719 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetPointeeData()
77726 return _wrap_SBValue_GetPointeeData__SWIG_2(L); in _wrap_SBValue_GetPointeeData()
77733 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetPointeeData()
77741 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetPointeeData()
77744 return _wrap_SBValue_GetPointeeData__SWIG_1(L); in _wrap_SBValue_GetPointeeData()
77752 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetPointeeData()
77760 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetPointeeData()
77764 _v = lua_isnumber(L,argv[2]); in _wrap_SBValue_GetPointeeData()
77767 return _wrap_SBValue_GetPointeeData__SWIG_0(L); in _wrap_SBValue_GetPointeeData()
77773 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetPointeeData'\n" in _wrap_SBValue_GetPointeeData()
77778 lua_error(L);return 0; in _wrap_SBValue_GetPointeeData()
77782 static int _wrap_SBValue_GetData(lua_State* L) { in _wrap_SBValue_GetData() argument
77789 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetData",1,"lldb::SBValue *"); in _wrap_SBValue_GetData()
77791 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetData()
77798 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBData,1); SWIG_arg++; in _wrap_SBValue_GetData()
77804 lua_error(L); in _wrap_SBValue_GetData()
77809 static int _wrap_SBValue_SetData(lua_State* L) { in _wrap_SBValue_SetData() argument
77818 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::SetData",1,"lldb::SBValue *"); in _wrap_SBValue_SetData()
77819 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::SetData",2,"lldb::SBData &"); in _wrap_SBValue_SetData()
77820 if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::SetData",3,"lldb::SBError &"); in _wrap_SBValue_SetData()
77822 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_SetData()
77827 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBData,0))){ in _wrap_SBValue_SetData()
77832 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_SetData()
77837 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_SetData()
77842 lua_error(L); in _wrap_SBValue_SetData()
77847 static int _wrap_SBValue_Clone(lua_State* L) { in _wrap_SBValue_Clone() argument
77855 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Clone",1,"lldb::SBValue *"); in _wrap_SBValue_Clone()
77856 if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::Clone",2,"char const *"); in _wrap_SBValue_Clone()
77858 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Clone()
77862 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_Clone()
77866 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_Clone()
77872 lua_error(L); in _wrap_SBValue_Clone()
77877 static int _wrap_SBValue_GetDeclaration(lua_State* L) { in _wrap_SBValue_GetDeclaration() argument
77884 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDeclaration",1,"lldb::SBValue *"); in _wrap_SBValue_GetDeclaration()
77886 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetDeclaration()
77893 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBDeclaration,1); SWIG_arg++; in _wrap_SBValue_GetDeclaration()
77899 lua_error(L); in _wrap_SBValue_GetDeclaration()
77904 static int _wrap_SBValue_MightHaveChildren(lua_State* L) { in _wrap_SBValue_MightHaveChildren() argument
77911 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::MightHaveChildren",1,"lldb::SBValue *"); in _wrap_SBValue_MightHaveChildren()
77913 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_MightHaveChildren()
77918 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_MightHaveChildren()
77923 lua_error(L); in _wrap_SBValue_MightHaveChildren()
77928 static int _wrap_SBValue_IsRuntimeSupportValue(lua_State* L) { in _wrap_SBValue_IsRuntimeSupportValue() argument
77935 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::IsRuntimeSupportValue",1,"lldb::SBValue *"); in _wrap_SBValue_IsRuntimeSupportValue()
77937 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_IsRuntimeSupportValue()
77942 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_IsRuntimeSupportValue()
77947 lua_error(L); in _wrap_SBValue_IsRuntimeSupportValue()
77952 static int _wrap_SBValue_GetNumChildren__SWIG_0(lua_State* L) { in _wrap_SBValue_GetNumChildren__SWIG_0() argument
77959 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetNumChildren",1,"lldb::SBValue *"); in _wrap_SBValue_GetNumChildren__SWIG_0()
77961 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetNumChildren__SWIG_0()
77966 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetNumChildren__SWIG_0()
77971 lua_error(L); in _wrap_SBValue_GetNumChildren__SWIG_0()
77976 static int _wrap_SBValue_GetNumChildren__SWIG_1(lua_State* L) { in _wrap_SBValue_GetNumChildren__SWIG_1() argument
77984 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetNumChildren",1,"lldb::SBValue *"); in _wrap_SBValue_GetNumChildren__SWIG_1()
77985 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValue::GetNumChildren",2,"uint32_t"); in _wrap_SBValue_GetNumChildren__SWIG_1()
77987 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetNumChildren__SWIG_1()
77991 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBValue_GetNumChildren__SWIG_1()
77993 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValue_GetNumChildren__SWIG_1()
77998 lua_error(L); in _wrap_SBValue_GetNumChildren__SWIG_1()
78003 static int _wrap_SBValue_GetNumChildren(lua_State* L) { in _wrap_SBValue_GetNumChildren() argument
78009 argc = lua_gettop(L); in _wrap_SBValue_GetNumChildren()
78014 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetNumChildren()
78021 return _wrap_SBValue_GetNumChildren__SWIG_0(L); in _wrap_SBValue_GetNumChildren()
78028 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetNumChildren()
78036 _v = lua_isnumber(L,argv[1]); in _wrap_SBValue_GetNumChildren()
78039 return _wrap_SBValue_GetNumChildren__SWIG_1(L); in _wrap_SBValue_GetNumChildren()
78044 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetNumChildren'\n" in _wrap_SBValue_GetNumChildren()
78048 lua_error(L);return 0; in _wrap_SBValue_GetNumChildren()
78052 static int _wrap_SBValue_GetOpaqueType(lua_State* L) { in _wrap_SBValue_GetOpaqueType() argument
78059 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetOpaqueType",1,"lldb::SBValue *"); in _wrap_SBValue_GetOpaqueType()
78061 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetOpaqueType()
78066 SWIG_NewPointerObj(L,result,SWIGTYPE_p_void,0); SWIG_arg++; in _wrap_SBValue_GetOpaqueType()
78071 lua_error(L); in _wrap_SBValue_GetOpaqueType()
78076 static int _wrap_SBValue_GetTarget(lua_State* L) { in _wrap_SBValue_GetTarget() argument
78083 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetTarget",1,"lldb::SBValue *"); in _wrap_SBValue_GetTarget()
78085 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetTarget()
78092 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBTarget,1); SWIG_arg++; in _wrap_SBValue_GetTarget()
78098 lua_error(L); in _wrap_SBValue_GetTarget()
78103 static int _wrap_SBValue_GetProcess(lua_State* L) { in _wrap_SBValue_GetProcess() argument
78110 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetProcess",1,"lldb::SBValue *"); in _wrap_SBValue_GetProcess()
78112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetProcess()
78119 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBProcess,1); SWIG_arg++; in _wrap_SBValue_GetProcess()
78125 lua_error(L); in _wrap_SBValue_GetProcess()
78130 static int _wrap_SBValue_GetThread(lua_State* L) { in _wrap_SBValue_GetThread() argument
78137 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetThread",1,"lldb::SBValue *"); in _wrap_SBValue_GetThread()
78139 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetThread()
78146 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBThread,1); SWIG_arg++; in _wrap_SBValue_GetThread()
78152 lua_error(L); in _wrap_SBValue_GetThread()
78157 static int _wrap_SBValue_GetFrame(lua_State* L) { in _wrap_SBValue_GetFrame() argument
78164 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetFrame",1,"lldb::SBValue *"); in _wrap_SBValue_GetFrame()
78166 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetFrame()
78173 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBFrame,1); SWIG_arg++; in _wrap_SBValue_GetFrame()
78179 lua_error(L); in _wrap_SBValue_GetFrame()
78184 static int _wrap_SBValue_Dereference(lua_State* L) { in _wrap_SBValue_Dereference() argument
78191 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Dereference",1,"lldb::SBValue *"); in _wrap_SBValue_Dereference()
78193 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Dereference()
78200 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_Dereference()
78206 lua_error(L); in _wrap_SBValue_Dereference()
78211 static int _wrap_SBValue_TypeIsPointerType(lua_State* L) { in _wrap_SBValue_TypeIsPointerType() argument
78218 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::TypeIsPointerType",1,"lldb::SBValue *"); in _wrap_SBValue_TypeIsPointerType()
78220 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_TypeIsPointerType()
78225 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_TypeIsPointerType()
78230 lua_error(L); in _wrap_SBValue_TypeIsPointerType()
78235 static int _wrap_SBValue_GetType(lua_State* L) { in _wrap_SBValue_GetType() argument
78242 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetType",1,"lldb::SBValue *"); in _wrap_SBValue_GetType()
78244 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetType()
78251 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBValue_GetType()
78257 lua_error(L); in _wrap_SBValue_GetType()
78262 static int _wrap_SBValue_Persist(lua_State* L) { in _wrap_SBValue_Persist() argument
78269 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Persist",1,"lldb::SBValue *"); in _wrap_SBValue_Persist()
78271 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Persist()
78278 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_Persist()
78284 lua_error(L); in _wrap_SBValue_Persist()
78289 static int _wrap_SBValue_GetDescription(lua_State* L) { in _wrap_SBValue_GetDescription() argument
78297 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetDescription",1,"lldb::SBValue *"); in _wrap_SBValue_GetDescription()
78298 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetDescription",2,"lldb::SBStream &"); in _wrap_SBValue_GetDescription()
78300 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetDescription()
78305 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBValue_GetDescription()
78310 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_GetDescription()
78315 lua_error(L); in _wrap_SBValue_GetDescription()
78320 static int _wrap_SBValue_GetExpressionPath__SWIG_0(lua_State* L) { in _wrap_SBValue_GetExpressionPath__SWIG_0() argument
78328 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",1,"lldb::SBValue *"); in _wrap_SBValue_GetExpressionPath__SWIG_0()
78329 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",2,"lldb::SBStream &"); in _wrap_SBValue_GetExpressionPath__SWIG_0()
78331 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetExpressionPath__SWIG_0()
78336 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBValue_GetExpressionPath__SWIG_0()
78341 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_GetExpressionPath__SWIG_0()
78346 lua_error(L); in _wrap_SBValue_GetExpressionPath__SWIG_0()
78351 static int _wrap_SBValue_GetExpressionPath__SWIG_1(lua_State* L) { in _wrap_SBValue_GetExpressionPath__SWIG_1() argument
78360 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",1,"lldb::SBValue *"); in _wrap_SBValue_GetExpressionPath__SWIG_1()
78361 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",2,"lldb::SBStream &"); in _wrap_SBValue_GetExpressionPath__SWIG_1()
78362 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::GetExpressionPath",3,"bool"); in _wrap_SBValue_GetExpressionPath__SWIG_1()
78364 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetExpressionPath__SWIG_1()
78369 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBValue_GetExpressionPath__SWIG_1()
78373 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBValue_GetExpressionPath__SWIG_1()
78375 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValue_GetExpressionPath__SWIG_1()
78380 lua_error(L); in _wrap_SBValue_GetExpressionPath__SWIG_1()
78385 static int _wrap_SBValue_GetExpressionPath(lua_State* L) { in _wrap_SBValue_GetExpressionPath() argument
78391 argc = lua_gettop(L); in _wrap_SBValue_GetExpressionPath()
78396 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetExpressionPath()
78405 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetExpressionPath()
78412 return _wrap_SBValue_GetExpressionPath__SWIG_0(L); in _wrap_SBValue_GetExpressionPath()
78420 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetExpressionPath()
78429 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_GetExpressionPath()
78437 _v = lua_isboolean(L,argv[2]); in _wrap_SBValue_GetExpressionPath()
78440 return _wrap_SBValue_GetExpressionPath__SWIG_1(L); in _wrap_SBValue_GetExpressionPath()
78446 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_GetExpressionPath'\n" in _wrap_SBValue_GetExpressionPath()
78450 lua_error(L);return 0; in _wrap_SBValue_GetExpressionPath()
78454 static int _wrap_SBValue_EvaluateExpression__SWIG_0(lua_State* L) { in _wrap_SBValue_EvaluateExpression__SWIG_0() argument
78462 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",1,"lldb::SBValue const … in _wrap_SBValue_EvaluateExpression__SWIG_0()
78463 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",2,"char const *"); in _wrap_SBValue_EvaluateExpression__SWIG_0()
78465 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_EvaluateExpression__SWIG_0()
78469 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_EvaluateExpression__SWIG_0()
78473 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_EvaluateExpression__SWIG_0()
78479 lua_error(L); in _wrap_SBValue_EvaluateExpression__SWIG_0()
78484 static int _wrap_SBValue_EvaluateExpression__SWIG_1(lua_State* L) { in _wrap_SBValue_EvaluateExpression__SWIG_1() argument
78493 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",1,"lldb::SBValue const … in _wrap_SBValue_EvaluateExpression__SWIG_1()
78494 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",2,"char const *"); in _wrap_SBValue_EvaluateExpression__SWIG_1()
78495 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",3,"lldb::SBExpressionOp… in _wrap_SBValue_EvaluateExpression__SWIG_1()
78497 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_EvaluateExpression__SWIG_1()
78501 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_EvaluateExpression__SWIG_1()
78503 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBValue_EvaluateExpression__SWIG_1()
78510 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_EvaluateExpression__SWIG_1()
78516 lua_error(L); in _wrap_SBValue_EvaluateExpression__SWIG_1()
78521 static int _wrap_SBValue_EvaluateExpression__SWIG_2(lua_State* L) { in _wrap_SBValue_EvaluateExpression__SWIG_2() argument
78531 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",1,"lldb::SBValue const … in _wrap_SBValue_EvaluateExpression__SWIG_2()
78532 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",2,"char const *"); in _wrap_SBValue_EvaluateExpression__SWIG_2()
78533 …if(!lua_isuserdata(L,3)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",3,"lldb::SBExpressionOp… in _wrap_SBValue_EvaluateExpression__SWIG_2()
78534 …if(!SWIG_lua_isnilstring(L,4)) SWIG_fail_arg("lldb::SBValue::EvaluateExpression",4,"char const *"); in _wrap_SBValue_EvaluateExpression__SWIG_2()
78536 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_EvaluateExpression__SWIG_2()
78540 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValue_EvaluateExpression__SWIG_2()
78542 if (!SWIG_IsOK(SWIG_ConvertPtr(L,3,(void**)&arg3,SWIGTYPE_p_lldb__SBExpressionOptions,0))){ in _wrap_SBValue_EvaluateExpression__SWIG_2()
78546 arg4 = (char *)lua_tostring(L, 4); in _wrap_SBValue_EvaluateExpression__SWIG_2()
78550 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_EvaluateExpression__SWIG_2()
78556 lua_error(L); in _wrap_SBValue_EvaluateExpression__SWIG_2()
78561 static int _wrap_SBValue_EvaluateExpression(lua_State* L) { in _wrap_SBValue_EvaluateExpression() argument
78567 argc = lua_gettop(L); in _wrap_SBValue_EvaluateExpression()
78572 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_EvaluateExpression()
78580 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_EvaluateExpression()
78583 return _wrap_SBValue_EvaluateExpression__SWIG_0(L); in _wrap_SBValue_EvaluateExpression()
78591 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_EvaluateExpression()
78599 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_EvaluateExpression()
78604 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_EvaluateExpression()
78611 return _wrap_SBValue_EvaluateExpression__SWIG_1(L); in _wrap_SBValue_EvaluateExpression()
78620 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_EvaluateExpression()
78628 _v = SWIG_lua_isnilstring(L,argv[1]); in _wrap_SBValue_EvaluateExpression()
78633 …if (lua_isuserdata(L,argv[2])==0 || SWIG_ConvertPtr(L,argv[2], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_EvaluateExpression()
78641 _v = SWIG_lua_isnilstring(L,argv[3]); in _wrap_SBValue_EvaluateExpression()
78644 return _wrap_SBValue_EvaluateExpression__SWIG_2(L); in _wrap_SBValue_EvaluateExpression()
78651 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_EvaluateExpression'\n" in _wrap_SBValue_EvaluateExpression()
78656 lua_error(L);return 0; in _wrap_SBValue_EvaluateExpression()
78660 static int _wrap_SBValue_Watch__SWIG_0(lua_State* L) { in _wrap_SBValue_Watch__SWIG_0() argument
78671 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Watch",1,"lldb::SBValue *"); in _wrap_SBValue_Watch__SWIG_0()
78672 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::Watch",2,"bool"); in _wrap_SBValue_Watch__SWIG_0()
78673 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::Watch",3,"bool"); in _wrap_SBValue_Watch__SWIG_0()
78674 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::Watch",4,"bool"); in _wrap_SBValue_Watch__SWIG_0()
78675 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBValue::Watch",5,"lldb::SBError &"); in _wrap_SBValue_Watch__SWIG_0()
78677 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Watch__SWIG_0()
78681 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBValue_Watch__SWIG_0()
78682 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBValue_Watch__SWIG_0()
78683 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBValue_Watch__SWIG_0()
78685 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_Watch__SWIG_0()
78692 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBValue_Watch__SWIG_0()
78698 lua_error(L); in _wrap_SBValue_Watch__SWIG_0()
78703 static int _wrap_SBValue_Watch__SWIG_1(lua_State* L) { in _wrap_SBValue_Watch__SWIG_1() argument
78713 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::Watch",1,"lldb::SBValue *"); in _wrap_SBValue_Watch__SWIG_1()
78714 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::Watch",2,"bool"); in _wrap_SBValue_Watch__SWIG_1()
78715 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::Watch",3,"bool"); in _wrap_SBValue_Watch__SWIG_1()
78716 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::Watch",4,"bool"); in _wrap_SBValue_Watch__SWIG_1()
78718 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_Watch__SWIG_1()
78722 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBValue_Watch__SWIG_1()
78723 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBValue_Watch__SWIG_1()
78724 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBValue_Watch__SWIG_1()
78728 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBValue_Watch__SWIG_1()
78734 lua_error(L); in _wrap_SBValue_Watch__SWIG_1()
78739 static int _wrap_SBValue_Watch(lua_State* L) { in _wrap_SBValue_Watch() argument
78745 argc = lua_gettop(L); in _wrap_SBValue_Watch()
78750 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_Watch()
78758 _v = lua_isboolean(L,argv[1]); in _wrap_SBValue_Watch()
78762 _v = lua_isboolean(L,argv[2]); in _wrap_SBValue_Watch()
78766 _v = lua_isboolean(L,argv[3]); in _wrap_SBValue_Watch()
78769 return _wrap_SBValue_Watch__SWIG_1(L); in _wrap_SBValue_Watch()
78779 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_Watch()
78787 _v = lua_isboolean(L,argv[1]); in _wrap_SBValue_Watch()
78791 _v = lua_isboolean(L,argv[2]); in _wrap_SBValue_Watch()
78795 _v = lua_isboolean(L,argv[3]); in _wrap_SBValue_Watch()
78800 …if (lua_isuserdata(L,argv[4])==0 || SWIG_ConvertPtr(L,argv[4], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValue_Watch()
78807 return _wrap_SBValue_Watch__SWIG_0(L); in _wrap_SBValue_Watch()
78815 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValue_Watch'\n" in _wrap_SBValue_Watch()
78819 lua_error(L);return 0; in _wrap_SBValue_Watch()
78823 static int _wrap_SBValue_WatchPointee(lua_State* L) { in _wrap_SBValue_WatchPointee() argument
78834 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::WatchPointee",1,"lldb::SBValue *"); in _wrap_SBValue_WatchPointee()
78835 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBValue::WatchPointee",2,"bool"); in _wrap_SBValue_WatchPointee()
78836 if(!lua_isboolean(L,3)) SWIG_fail_arg("lldb::SBValue::WatchPointee",3,"bool"); in _wrap_SBValue_WatchPointee()
78837 if(!lua_isboolean(L,4)) SWIG_fail_arg("lldb::SBValue::WatchPointee",4,"bool"); in _wrap_SBValue_WatchPointee()
78838 if(!lua_isuserdata(L,5)) SWIG_fail_arg("lldb::SBValue::WatchPointee",5,"lldb::SBError &"); in _wrap_SBValue_WatchPointee()
78840 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_WatchPointee()
78844 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBValue_WatchPointee()
78845 arg3 = (lua_toboolean(L, 3)!=0); in _wrap_SBValue_WatchPointee()
78846 arg4 = (lua_toboolean(L, 4)!=0); in _wrap_SBValue_WatchPointee()
78848 if (!SWIG_IsOK(SWIG_ConvertPtr(L,5,(void**)&arg5,SWIGTYPE_p_lldb__SBError,0))){ in _wrap_SBValue_WatchPointee()
78855 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBValue_WatchPointee()
78861 lua_error(L); in _wrap_SBValue_WatchPointee()
78866 static int _wrap_SBValue_GetVTable(lua_State* L) { in _wrap_SBValue_GetVTable() argument
78873 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::GetVTable",1,"lldb::SBValue *"); in _wrap_SBValue_GetVTable()
78875 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue_GetVTable()
78882 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValue_GetVTable()
78888 lua_error(L); in _wrap_SBValue_GetVTable()
78893 static int _wrap_SBValue___tostring(lua_State* L) { in _wrap_SBValue___tostring() argument
78900 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValue::__repr__",1,"lldb::SBValue *"); in _wrap_SBValue___tostring()
78902 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValue___tostring()
78907 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBValue___tostring()
78912 lua_error(L); in _wrap_SBValue___tostring()
78921 static int _proxy__wrap_new_SBValue(lua_State *L) { in _proxy__wrap_new_SBValue() argument
78922 assert(lua_istable(L,1)); in _proxy__wrap_new_SBValue()
78923 lua_pushcfunction(L,_wrap_new_SBValue); in _proxy__wrap_new_SBValue()
78924 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBValue()
78925 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBValue()
78926 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBValue()
79038 static int _wrap_new_SBValueList__SWIG_0(lua_State* L) { in _wrap_new_SBValueList__SWIG_0() argument
79045 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_new_SBValueList__SWIG_0()
79050 lua_error(L); in _wrap_new_SBValueList__SWIG_0()
79055 static int _wrap_new_SBValueList__SWIG_1(lua_State* L) { in _wrap_new_SBValueList__SWIG_1() argument
79062 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBValueList::SBValueList",1,"lldb::SBValueList const… in _wrap_new_SBValueList__SWIG_1()
79064 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_new_SBValueList__SWIG_1()
79069 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBValueList,1); SWIG_arg++; in _wrap_new_SBValueList__SWIG_1()
79074 lua_error(L); in _wrap_new_SBValueList__SWIG_1()
79079 static int _wrap_new_SBValueList(lua_State* L) { in _wrap_new_SBValueList() argument
79085 argc = lua_gettop(L); in _wrap_new_SBValueList()
79087 return _wrap_new_SBValueList__SWIG_0(L); in _wrap_new_SBValueList()
79093 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBValueList()
79100 return _wrap_new_SBValueList__SWIG_1(L); in _wrap_new_SBValueList()
79104 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBValueList'\n" in _wrap_new_SBValueList()
79108 lua_error(L);return 0; in _wrap_new_SBValueList()
79112 static int _wrap_SBValueList_IsValid(lua_State* L) { in _wrap_SBValueList_IsValid() argument
79119 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::IsValid",1,"lldb::SBValueList const *"); in _wrap_SBValueList_IsValid()
79121 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_IsValid()
79126 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBValueList_IsValid()
79131 lua_error(L); in _wrap_SBValueList_IsValid()
79136 static int _wrap_SBValueList_Clear(lua_State* L) { in _wrap_SBValueList_Clear() argument
79142 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::Clear",1,"lldb::SBValueList *"); in _wrap_SBValueList_Clear()
79144 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_Clear()
79154 lua_error(L); in _wrap_SBValueList_Clear()
79159 static int _wrap_SBValueList_Append__SWIG_0(lua_State* L) { in _wrap_SBValueList_Append__SWIG_0() argument
79166 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::Append",1,"lldb::SBValueList *"); in _wrap_SBValueList_Append__SWIG_0()
79167 if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValueList::Append",2,"lldb::SBValue const &"); in _wrap_SBValueList_Append__SWIG_0()
79169 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_Append__SWIG_0()
79174 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBValue,0))){ in _wrap_SBValueList_Append__SWIG_0()
79184 lua_error(L); in _wrap_SBValueList_Append__SWIG_0()
79189 static int _wrap_SBValueList_Append__SWIG_1(lua_State* L) { in _wrap_SBValueList_Append__SWIG_1() argument
79196 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::Append",1,"lldb::SBValueList *"); in _wrap_SBValueList_Append__SWIG_1()
79197 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBValueList::Append",2,"lldb::SBValueList const &"); in _wrap_SBValueList_Append__SWIG_1()
79199 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_Append__SWIG_1()
79204 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_Append__SWIG_1()
79214 lua_error(L); in _wrap_SBValueList_Append__SWIG_1()
79219 static int _wrap_SBValueList_Append(lua_State* L) { in _wrap_SBValueList_Append() argument
79225 argc = lua_gettop(L); in _wrap_SBValueList_Append()
79230 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValueList_Append()
79239 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValueList_Append()
79246 return _wrap_SBValueList_Append__SWIG_0(L); in _wrap_SBValueList_Append()
79254 …if (SWIG_isptrtype(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValueList_Append()
79263 …if (lua_isuserdata(L,argv[1])==0 || SWIG_ConvertPtr(L,argv[1], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_SBValueList_Append()
79270 return _wrap_SBValueList_Append__SWIG_1(L); in _wrap_SBValueList_Append()
79275 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'SBValueList_Append'\n" in _wrap_SBValueList_Append()
79279 lua_error(L);return 0; in _wrap_SBValueList_Append()
79283 static int _wrap_SBValueList_GetSize(lua_State* L) { in _wrap_SBValueList_GetSize() argument
79290 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetSize",1,"lldb::SBValueList const *"); in _wrap_SBValueList_GetSize()
79292 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_GetSize()
79297 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBValueList_GetSize()
79302 lua_error(L); in _wrap_SBValueList_GetSize()
79307 static int _wrap_SBValueList_GetValueAtIndex(lua_State* L) { in _wrap_SBValueList_GetValueAtIndex() argument
79315 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetValueAtIndex",1,"lldb::SBValueList c… in _wrap_SBValueList_GetValueAtIndex()
79316 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValueList::GetValueAtIndex",2,"uint32_t"); in _wrap_SBValueList_GetValueAtIndex()
79318 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_GetValueAtIndex()
79322 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBValueList_GetValueAtIndex()
79326 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValueList_GetValueAtIndex()
79332 lua_error(L); in _wrap_SBValueList_GetValueAtIndex()
79337 static int _wrap_SBValueList_GetFirstValueByName(lua_State* L) { in _wrap_SBValueList_GetFirstValueByName() argument
79345 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetFirstValueByName",1,"lldb::SBValueLi… in _wrap_SBValueList_GetFirstValueByName()
79346 …if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBValueList::GetFirstValueByName",2,"char cons… in _wrap_SBValueList_GetFirstValueByName()
79348 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_GetFirstValueByName()
79352 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBValueList_GetFirstValueByName()
79356 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValueList_GetFirstValueByName()
79362 lua_error(L); in _wrap_SBValueList_GetFirstValueByName()
79367 static int _wrap_SBValueList_FindValueObjectByUID(lua_State* L) { in _wrap_SBValueList_FindValueObjectByUID() argument
79375 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::FindValueObjectByUID",1,"lldb::SBValueL… in _wrap_SBValueList_FindValueObjectByUID()
79376 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBValueList::FindValueObjectByUID",2,"lldb::user_id_t… in _wrap_SBValueList_FindValueObjectByUID()
79378 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_FindValueObjectByUID()
79382 arg2 = (lldb::user_id_t)lua_tointeger(L, 2); in _wrap_SBValueList_FindValueObjectByUID()
79386 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBValue,1); SWIG_arg++; in _wrap_SBValueList_FindValueObjectByUID()
79392 lua_error(L); in _wrap_SBValueList_FindValueObjectByUID()
79397 static int _wrap_SBValueList_GetError(lua_State* L) { in _wrap_SBValueList_GetError() argument
79404 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::GetError",1,"lldb::SBValueList *"); in _wrap_SBValueList_GetError()
79406 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList_GetError()
79413 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBValueList_GetError()
79419 lua_error(L); in _wrap_SBValueList_GetError()
79424 static int _wrap_SBValueList___tostring(lua_State* L) { in _wrap_SBValueList___tostring() argument
79431 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBValueList::__str__",1,"lldb::SBValueList *"); in _wrap_SBValueList___tostring()
79433 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBValueList,0))){ in _wrap_SBValueList___tostring()
79438 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBValueList___tostring()
79443 lua_error(L); in _wrap_SBValueList___tostring()
79452 static int _proxy__wrap_new_SBValueList(lua_State *L) { in _proxy__wrap_new_SBValueList() argument
79453 assert(lua_istable(L,1)); in _proxy__wrap_new_SBValueList()
79454 lua_pushcfunction(L,_wrap_new_SBValueList); in _proxy__wrap_new_SBValueList()
79455 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBValueList()
79456 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBValueList()
79457 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBValueList()
79505 static int _wrap_new_SBVariablesOptions__SWIG_0(lua_State* L) { in _wrap_new_SBVariablesOptions__SWIG_0() argument
79512 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBVariablesOptions,1); SWIG_arg++; in _wrap_new_SBVariablesOptions__SWIG_0()
79517 lua_error(L); in _wrap_new_SBVariablesOptions__SWIG_0()
79522 static int _wrap_new_SBVariablesOptions__SWIG_1(lua_State* L) { in _wrap_new_SBVariablesOptions__SWIG_1() argument
79529 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SBVariablesOptions",1,"lldb::SBV… in _wrap_new_SBVariablesOptions__SWIG_1()
79531 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_new_SBVariablesOptions__SWIG_1()
79536 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBVariablesOptions,1); SWIG_arg++; in _wrap_new_SBVariablesOptions__SWIG_1()
79541 lua_error(L); in _wrap_new_SBVariablesOptions__SWIG_1()
79546 static int _wrap_new_SBVariablesOptions(lua_State* L) { in _wrap_new_SBVariablesOptions() argument
79552 argc = lua_gettop(L); in _wrap_new_SBVariablesOptions()
79554 return _wrap_new_SBVariablesOptions__SWIG_0(L); in _wrap_new_SBVariablesOptions()
79560 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBVariablesOptions()
79567 return _wrap_new_SBVariablesOptions__SWIG_1(L); in _wrap_new_SBVariablesOptions()
79571 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBVariablesOptions'\n" in _wrap_new_SBVariablesOptions()
79575 lua_error(L);return 0; in _wrap_new_SBVariablesOptions()
79579 static int _wrap_SBVariablesOptions_IsValid(lua_State* L) { in _wrap_SBVariablesOptions_IsValid() argument
79586 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::IsValid",1,"lldb::SBVariablesOpt… in _wrap_SBVariablesOptions_IsValid()
79588 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_IsValid()
79593 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_IsValid()
79598 lua_error(L); in _wrap_SBVariablesOptions_IsValid()
79603 static int _wrap_SBVariablesOptions_GetIncludeArguments(lua_State* L) { in _wrap_SBVariablesOptions_GetIncludeArguments() argument
79610 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeArguments",1,"lldb::SB… in _wrap_SBVariablesOptions_GetIncludeArguments()
79612 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetIncludeArguments()
79617 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_GetIncludeArguments()
79622 lua_error(L); in _wrap_SBVariablesOptions_GetIncludeArguments()
79627 static int _wrap_SBVariablesOptions_SetIncludeArguments(lua_State* L) { in _wrap_SBVariablesOptions_SetIncludeArguments() argument
79634 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeArguments",1,"lldb::SB… in _wrap_SBVariablesOptions_SetIncludeArguments()
79635 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeArguments",2,"bool"); in _wrap_SBVariablesOptions_SetIncludeArguments()
79637 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetIncludeArguments()
79641 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBVariablesOptions_SetIncludeArguments()
79648 lua_error(L); in _wrap_SBVariablesOptions_SetIncludeArguments()
79653 static int _wrap_SBVariablesOptions_GetIncludeRecognizedArguments(lua_State* L) { in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments() argument
79661 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeRecognizedArguments",1… in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments()
79662 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeRecognizedArguments",2… in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments()
79664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments()
79669 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBTarget,0))){ in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments()
79674 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments()
79679 lua_error(L); in _wrap_SBVariablesOptions_GetIncludeRecognizedArguments()
79684 static int _wrap_SBVariablesOptions_SetIncludeRecognizedArguments(lua_State* L) { in _wrap_SBVariablesOptions_SetIncludeRecognizedArguments() argument
79691 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRecognizedArguments",1… in _wrap_SBVariablesOptions_SetIncludeRecognizedArguments()
79692 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRecognizedArguments",2,… in _wrap_SBVariablesOptions_SetIncludeRecognizedArguments()
79694 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetIncludeRecognizedArguments()
79698 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBVariablesOptions_SetIncludeRecognizedArguments()
79705 lua_error(L); in _wrap_SBVariablesOptions_SetIncludeRecognizedArguments()
79710 static int _wrap_SBVariablesOptions_GetIncludeLocals(lua_State* L) { in _wrap_SBVariablesOptions_GetIncludeLocals() argument
79717 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeLocals",1,"lldb::SBVar… in _wrap_SBVariablesOptions_GetIncludeLocals()
79719 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetIncludeLocals()
79724 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_GetIncludeLocals()
79729 lua_error(L); in _wrap_SBVariablesOptions_GetIncludeLocals()
79734 static int _wrap_SBVariablesOptions_SetIncludeLocals(lua_State* L) { in _wrap_SBVariablesOptions_SetIncludeLocals() argument
79741 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeLocals",1,"lldb::SBVar… in _wrap_SBVariablesOptions_SetIncludeLocals()
79742 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeLocals",2,"bool"); in _wrap_SBVariablesOptions_SetIncludeLocals()
79744 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetIncludeLocals()
79748 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBVariablesOptions_SetIncludeLocals()
79755 lua_error(L); in _wrap_SBVariablesOptions_SetIncludeLocals()
79760 static int _wrap_SBVariablesOptions_GetIncludeStatics(lua_State* L) { in _wrap_SBVariablesOptions_GetIncludeStatics() argument
79767 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeStatics",1,"lldb::SBVa… in _wrap_SBVariablesOptions_GetIncludeStatics()
79769 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetIncludeStatics()
79774 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_GetIncludeStatics()
79779 lua_error(L); in _wrap_SBVariablesOptions_GetIncludeStatics()
79784 static int _wrap_SBVariablesOptions_SetIncludeStatics(lua_State* L) { in _wrap_SBVariablesOptions_SetIncludeStatics() argument
79791 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeStatics",1,"lldb::SBVa… in _wrap_SBVariablesOptions_SetIncludeStatics()
79792 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeStatics",2,"bool"); in _wrap_SBVariablesOptions_SetIncludeStatics()
79794 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetIncludeStatics()
79798 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBVariablesOptions_SetIncludeStatics()
79805 lua_error(L); in _wrap_SBVariablesOptions_SetIncludeStatics()
79810 static int _wrap_SBVariablesOptions_GetInScopeOnly(lua_State* L) { in _wrap_SBVariablesOptions_GetInScopeOnly() argument
79817 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetInScopeOnly",1,"lldb::SBVaria… in _wrap_SBVariablesOptions_GetInScopeOnly()
79819 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetInScopeOnly()
79824 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_GetInScopeOnly()
79829 lua_error(L); in _wrap_SBVariablesOptions_GetInScopeOnly()
79834 static int _wrap_SBVariablesOptions_SetInScopeOnly(lua_State* L) { in _wrap_SBVariablesOptions_SetInScopeOnly() argument
79841 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetInScopeOnly",1,"lldb::SBVaria… in _wrap_SBVariablesOptions_SetInScopeOnly()
79842 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetInScopeOnly",2,"bool"); in _wrap_SBVariablesOptions_SetInScopeOnly()
79844 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetInScopeOnly()
79848 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBVariablesOptions_SetInScopeOnly()
79855 lua_error(L); in _wrap_SBVariablesOptions_SetInScopeOnly()
79860 static int _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues(lua_State* L) { in _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues() argument
79867 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetIncludeRuntimeSupportValues",… in _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues()
79869 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues()
79874 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues()
79879 lua_error(L); in _wrap_SBVariablesOptions_GetIncludeRuntimeSupportValues()
79884 static int _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues(lua_State* L) { in _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues() argument
79891 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRuntimeSupportValues",… in _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues()
79892 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetIncludeRuntimeSupportValues",2… in _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues()
79894 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues()
79898 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues()
79905 lua_error(L); in _wrap_SBVariablesOptions_SetIncludeRuntimeSupportValues()
79910 static int _wrap_SBVariablesOptions_GetUseDynamic(lua_State* L) { in _wrap_SBVariablesOptions_GetUseDynamic() argument
79917 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::GetUseDynamic",1,"lldb::SBVariab… in _wrap_SBVariablesOptions_GetUseDynamic()
79919 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_GetUseDynamic()
79924 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBVariablesOptions_GetUseDynamic()
79929 lua_error(L); in _wrap_SBVariablesOptions_GetUseDynamic()
79934 static int _wrap_SBVariablesOptions_SetUseDynamic(lua_State* L) { in _wrap_SBVariablesOptions_SetUseDynamic() argument
79941 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBVariablesOptions::SetUseDynamic",1,"lldb::SBVariab… in _wrap_SBVariablesOptions_SetUseDynamic()
79942 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBVariablesOptions::SetUseDynamic",2,"lldb::DynamicVa… in _wrap_SBVariablesOptions_SetUseDynamic()
79944 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBVariablesOptions,0))){ in _wrap_SBVariablesOptions_SetUseDynamic()
79948 arg2 = (lldb::DynamicValueType)lua_tointeger(L, 2); in _wrap_SBVariablesOptions_SetUseDynamic()
79955 lua_error(L); in _wrap_SBVariablesOptions_SetUseDynamic()
79964 static int _proxy__wrap_new_SBVariablesOptions(lua_State *L) { in _proxy__wrap_new_SBVariablesOptions() argument
79965 assert(lua_istable(L,1)); in _proxy__wrap_new_SBVariablesOptions()
79966 lua_pushcfunction(L,_wrap_new_SBVariablesOptions); in _proxy__wrap_new_SBVariablesOptions()
79967 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBVariablesOptions()
79968 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBVariablesOptions()
79969 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBVariablesOptions()
80022 static int _wrap_new_SBWatchpoint__SWIG_0(lua_State* L) { in _wrap_new_SBWatchpoint__SWIG_0() argument
80029 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_new_SBWatchpoint__SWIG_0()
80034 lua_error(L); in _wrap_new_SBWatchpoint__SWIG_0()
80039 static int _wrap_new_SBWatchpoint__SWIG_1(lua_State* L) { in _wrap_new_SBWatchpoint__SWIG_1() argument
80046 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SBWatchpoint",1,"lldb::SBWatchpoint co… in _wrap_new_SBWatchpoint__SWIG_1()
80048 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_new_SBWatchpoint__SWIG_1()
80053 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_new_SBWatchpoint__SWIG_1()
80058 lua_error(L); in _wrap_new_SBWatchpoint__SWIG_1()
80063 static int _wrap_new_SBWatchpoint(lua_State* L) { in _wrap_new_SBWatchpoint() argument
80069 argc = lua_gettop(L); in _wrap_new_SBWatchpoint()
80071 return _wrap_new_SBWatchpoint__SWIG_0(L); in _wrap_new_SBWatchpoint()
80077 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBWatchpoint()
80084 return _wrap_new_SBWatchpoint__SWIG_1(L); in _wrap_new_SBWatchpoint()
80088 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBWatchpoint'\n" in _wrap_new_SBWatchpoint()
80092 lua_error(L);return 0; in _wrap_new_SBWatchpoint()
80096 static int _wrap_SBWatchpoint___eq(lua_State* L) { in _wrap_SBWatchpoint___eq() argument
80104 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::operator ==",1,"lldb::SBWatchpoint con… in _wrap_SBWatchpoint___eq()
80105 …if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::operator ==",2,"lldb::SBWatchpoint con… in _wrap_SBWatchpoint___eq()
80107 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint___eq()
80112 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint___eq()
80117 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint___eq()
80122 lua_error(L); in _wrap_SBWatchpoint___eq()
80127 static int _wrap_SBWatchpoint_IsValid(lua_State* L) { in _wrap_SBWatchpoint_IsValid() argument
80134 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsValid",1,"lldb::SBWatchpoint const *… in _wrap_SBWatchpoint_IsValid()
80136 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_IsValid()
80141 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint_IsValid()
80146 lua_error(L); in _wrap_SBWatchpoint_IsValid()
80151 static int _wrap_SBWatchpoint_GetError(lua_State* L) { in _wrap_SBWatchpoint_GetError() argument
80158 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetError",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_GetError()
80160 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetError()
80167 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBError,1); SWIG_arg++; in _wrap_SBWatchpoint_GetError()
80173 lua_error(L); in _wrap_SBWatchpoint_GetError()
80178 static int _wrap_SBWatchpoint_GetID(lua_State* L) { in _wrap_SBWatchpoint_GetID() argument
80185 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetID",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_GetID()
80187 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetID()
80192 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetID()
80197 lua_error(L); in _wrap_SBWatchpoint_GetID()
80202 static int _wrap_SBWatchpoint_GetHardwareIndex(lua_State* L) { in _wrap_SBWatchpoint_GetHardwareIndex() argument
80209 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetHardwareIndex",1,"lldb::SBWatchpoin… in _wrap_SBWatchpoint_GetHardwareIndex()
80211 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetHardwareIndex()
80216 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetHardwareIndex()
80221 lua_error(L); in _wrap_SBWatchpoint_GetHardwareIndex()
80226 static int _wrap_SBWatchpoint_GetWatchAddress(lua_State* L) { in _wrap_SBWatchpoint_GetWatchAddress() argument
80233 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchAddress",1,"lldb::SBWatchpoint… in _wrap_SBWatchpoint_GetWatchAddress()
80235 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetWatchAddress()
80240 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetWatchAddress()
80245 lua_error(L); in _wrap_SBWatchpoint_GetWatchAddress()
80250 static int _wrap_SBWatchpoint_GetWatchSize(lua_State* L) { in _wrap_SBWatchpoint_GetWatchSize() argument
80257 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchSize",1,"lldb::SBWatchpoint *"… in _wrap_SBWatchpoint_GetWatchSize()
80259 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetWatchSize()
80264 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetWatchSize()
80269 lua_error(L); in _wrap_SBWatchpoint_GetWatchSize()
80274 static int _wrap_SBWatchpoint_SetEnabled(lua_State* L) { in _wrap_SBWatchpoint_SetEnabled() argument
80281 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SetEnabled",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_SetEnabled()
80282 if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::SetEnabled",2,"bool"); in _wrap_SBWatchpoint_SetEnabled()
80284 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_SetEnabled()
80288 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBWatchpoint_SetEnabled()
80295 lua_error(L); in _wrap_SBWatchpoint_SetEnabled()
80300 static int _wrap_SBWatchpoint_IsEnabled(lua_State* L) { in _wrap_SBWatchpoint_IsEnabled() argument
80307 … if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsEnabled",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_IsEnabled()
80309 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_IsEnabled()
80314 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint_IsEnabled()
80319 lua_error(L); in _wrap_SBWatchpoint_IsEnabled()
80324 static int _wrap_SBWatchpoint_GetHitCount(lua_State* L) { in _wrap_SBWatchpoint_GetHitCount() argument
80331 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetHitCount",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_GetHitCount()
80333 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetHitCount()
80338 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetHitCount()
80343 lua_error(L); in _wrap_SBWatchpoint_GetHitCount()
80348 static int _wrap_SBWatchpoint_GetIgnoreCount(lua_State* L) { in _wrap_SBWatchpoint_GetIgnoreCount() argument
80355 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetIgnoreCount",1,"lldb::SBWatchpoint … in _wrap_SBWatchpoint_GetIgnoreCount()
80357 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetIgnoreCount()
80362 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetIgnoreCount()
80367 lua_error(L); in _wrap_SBWatchpoint_GetIgnoreCount()
80372 static int _wrap_SBWatchpoint_SetIgnoreCount(lua_State* L) { in _wrap_SBWatchpoint_SetIgnoreCount() argument
80379 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SetIgnoreCount",1,"lldb::SBWatchpoint … in _wrap_SBWatchpoint_SetIgnoreCount()
80380 if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::SetIgnoreCount",2,"uint32_t"); in _wrap_SBWatchpoint_SetIgnoreCount()
80382 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_SetIgnoreCount()
80386 arg2 = (uint32_t)lua_tointeger(L, 2); in _wrap_SBWatchpoint_SetIgnoreCount()
80393 lua_error(L); in _wrap_SBWatchpoint_SetIgnoreCount()
80398 static int _wrap_SBWatchpoint_GetCondition(lua_State* L) { in _wrap_SBWatchpoint_GetCondition() argument
80405 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetCondition",1,"lldb::SBWatchpoint *"… in _wrap_SBWatchpoint_GetCondition()
80407 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetCondition()
80412 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBWatchpoint_GetCondition()
80417 lua_error(L); in _wrap_SBWatchpoint_GetCondition()
80422 static int _wrap_SBWatchpoint_SetCondition(lua_State* L) { in _wrap_SBWatchpoint_SetCondition() argument
80429 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::SetCondition",1,"lldb::SBWatchpoint *"… in _wrap_SBWatchpoint_SetCondition()
80430 … if(!SWIG_lua_isnilstring(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::SetCondition",2,"char const *"); in _wrap_SBWatchpoint_SetCondition()
80432 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_SetCondition()
80436 arg2 = (char *)lua_tostring(L, 2); in _wrap_SBWatchpoint_SetCondition()
80443 lua_error(L); in _wrap_SBWatchpoint_SetCondition()
80448 static int _wrap_SBWatchpoint_GetDescription(lua_State* L) { in _wrap_SBWatchpoint_GetDescription() argument
80457 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetDescription",1,"lldb::SBWatchpoint … in _wrap_SBWatchpoint_GetDescription()
80458 … if(!lua_isuserdata(L,2)) SWIG_fail_arg("lldb::SBWatchpoint::GetDescription",2,"lldb::SBStream &"); in _wrap_SBWatchpoint_GetDescription()
80459 …if(!lua_isinteger(L,3)) SWIG_fail_arg("lldb::SBWatchpoint::GetDescription",3,"lldb::DescriptionLev… in _wrap_SBWatchpoint_GetDescription()
80461 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetDescription()
80466 if (!SWIG_IsOK(SWIG_ConvertPtr(L,2,(void**)&arg2,SWIGTYPE_p_lldb__SBStream,0))){ in _wrap_SBWatchpoint_GetDescription()
80470 arg3 = (lldb::DescriptionLevel)lua_tointeger(L, 3); in _wrap_SBWatchpoint_GetDescription()
80472 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint_GetDescription()
80477 lua_error(L); in _wrap_SBWatchpoint_GetDescription()
80482 static int _wrap_SBWatchpoint_Clear(lua_State* L) { in _wrap_SBWatchpoint_Clear() argument
80488 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::Clear",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_Clear()
80490 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_Clear()
80500 lua_error(L); in _wrap_SBWatchpoint_Clear()
80505 static int _wrap_SBWatchpoint_EventIsWatchpointEvent(lua_State* L) { in _wrap_SBWatchpoint_EventIsWatchpointEvent() argument
80512 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::EventIsWatchpointEvent",1,"lldb::SBEve… in _wrap_SBWatchpoint_EventIsWatchpointEvent()
80514 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBWatchpoint_EventIsWatchpointEvent()
80519 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint_EventIsWatchpointEvent()
80524 lua_error(L); in _wrap_SBWatchpoint_EventIsWatchpointEvent()
80529 static int _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent(lua_State* L) { in _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent() argument
80536 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchpointEventTypeFromEvent",1,"ll… in _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent()
80538 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent()
80543 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent()
80548 lua_error(L); in _wrap_SBWatchpoint_GetWatchpointEventTypeFromEvent()
80553 static int _wrap_SBWatchpoint_GetWatchpointFromEvent(lua_State* L) { in _wrap_SBWatchpoint_GetWatchpointFromEvent() argument
80560 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchpointFromEvent",1,"lldb::SBEve… in _wrap_SBWatchpoint_GetWatchpointFromEvent()
80562 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBEvent,0))){ in _wrap_SBWatchpoint_GetWatchpointFromEvent()
80569 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBWatchpoint,1); SWIG_arg++; in _wrap_SBWatchpoint_GetWatchpointFromEvent()
80575 lua_error(L); in _wrap_SBWatchpoint_GetWatchpointFromEvent()
80580 static int _wrap_SBWatchpoint_GetType(lua_State* L) { in _wrap_SBWatchpoint_GetType() argument
80587 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetType",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint_GetType()
80589 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetType()
80596 SWIG_NewPointerObj(L,(void *) resultptr,SWIGTYPE_p_lldb__SBType,1); SWIG_arg++; in _wrap_SBWatchpoint_GetType()
80602 lua_error(L); in _wrap_SBWatchpoint_GetType()
80607 static int _wrap_SBWatchpoint_GetWatchValueKind(lua_State* L) { in _wrap_SBWatchpoint_GetWatchValueKind() argument
80614 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchValueKind",1,"lldb::SBWatchpoi… in _wrap_SBWatchpoint_GetWatchValueKind()
80616 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetWatchValueKind()
80621 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpoint_GetWatchValueKind()
80626 lua_error(L); in _wrap_SBWatchpoint_GetWatchValueKind()
80631 static int _wrap_SBWatchpoint_GetWatchSpec(lua_State* L) { in _wrap_SBWatchpoint_GetWatchSpec() argument
80638 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::GetWatchSpec",1,"lldb::SBWatchpoint *"… in _wrap_SBWatchpoint_GetWatchSpec()
80640 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_GetWatchSpec()
80645 lua_pushstring(L,(const char *)result); SWIG_arg++; in _wrap_SBWatchpoint_GetWatchSpec()
80650 lua_error(L); in _wrap_SBWatchpoint_GetWatchSpec()
80655 static int _wrap_SBWatchpoint_IsWatchingReads(lua_State* L) { in _wrap_SBWatchpoint_IsWatchingReads() argument
80662 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsWatchingReads",1,"lldb::SBWatchpoint… in _wrap_SBWatchpoint_IsWatchingReads()
80664 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_IsWatchingReads()
80669 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint_IsWatchingReads()
80674 lua_error(L); in _wrap_SBWatchpoint_IsWatchingReads()
80679 static int _wrap_SBWatchpoint_IsWatchingWrites(lua_State* L) { in _wrap_SBWatchpoint_IsWatchingWrites() argument
80686 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::IsWatchingWrites",1,"lldb::SBWatchpoin… in _wrap_SBWatchpoint_IsWatchingWrites()
80688 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint_IsWatchingWrites()
80693 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpoint_IsWatchingWrites()
80698 lua_error(L); in _wrap_SBWatchpoint_IsWatchingWrites()
80703 static int _wrap_SBWatchpoint___tostring(lua_State* L) { in _wrap_SBWatchpoint___tostring() argument
80710 if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpoint::__repr__",1,"lldb::SBWatchpoint *"); in _wrap_SBWatchpoint___tostring()
80712 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpoint,0))){ in _wrap_SBWatchpoint___tostring()
80717 lua_pushlstring(L,(&result)->data(),(&result)->size()); SWIG_arg++; in _wrap_SBWatchpoint___tostring()
80722 lua_error(L); in _wrap_SBWatchpoint___tostring()
80731 static int _proxy__wrap_new_SBWatchpoint(lua_State *L) { in _proxy__wrap_new_SBWatchpoint() argument
80732 assert(lua_istable(L,1)); in _proxy__wrap_new_SBWatchpoint()
80733 lua_pushcfunction(L,_wrap_new_SBWatchpoint); in _proxy__wrap_new_SBWatchpoint()
80734 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBWatchpoint()
80735 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBWatchpoint()
80736 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBWatchpoint()
80801 static int _wrap_new_SBWatchpointOptions__SWIG_0(lua_State* L) { in _wrap_new_SBWatchpointOptions__SWIG_0() argument
80808 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpointOptions,1); SWIG_arg++; in _wrap_new_SBWatchpointOptions__SWIG_0()
80813 lua_error(L); in _wrap_new_SBWatchpointOptions__SWIG_0()
80818 static int _wrap_new_SBWatchpointOptions__SWIG_1(lua_State* L) { in _wrap_new_SBWatchpointOptions__SWIG_1() argument
80825 …if(!lua_isuserdata(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::SBWatchpointOptions",1,"lldb::S… in _wrap_new_SBWatchpointOptions__SWIG_1()
80827 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){ in _wrap_new_SBWatchpointOptions__SWIG_1()
80832 SWIG_NewPointerObj(L,result,SWIGTYPE_p_lldb__SBWatchpointOptions,1); SWIG_arg++; in _wrap_new_SBWatchpointOptions__SWIG_1()
80837 lua_error(L); in _wrap_new_SBWatchpointOptions__SWIG_1()
80842 static int _wrap_new_SBWatchpointOptions(lua_State* L) { in _wrap_new_SBWatchpointOptions() argument
80848 argc = lua_gettop(L); in _wrap_new_SBWatchpointOptions()
80850 return _wrap_new_SBWatchpointOptions__SWIG_0(L); in _wrap_new_SBWatchpointOptions()
80856 …if (lua_isuserdata(L,argv[0])==0 || SWIG_ConvertPtr(L,argv[0], (void **) &ptr, SWIGTYPE_p_lldb__SB… in _wrap_new_SBWatchpointOptions()
80863 return _wrap_new_SBWatchpointOptions__SWIG_1(L); in _wrap_new_SBWatchpointOptions()
80867 SWIG_Lua_pusherrstring(L,"Wrong arguments for overloaded function 'new_SBWatchpointOptions'\n" in _wrap_new_SBWatchpointOptions()
80871 lua_error(L);return 0; in _wrap_new_SBWatchpointOptions()
80875 static int _wrap_SBWatchpointOptions_SetWatchpointTypeRead(lua_State* L) { in _wrap_SBWatchpointOptions_SetWatchpointTypeRead() argument
80882 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeRead",1,"lldb:… in _wrap_SBWatchpointOptions_SetWatchpointTypeRead()
80883 …if(!lua_isboolean(L,2)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeRead",2,"bool"); in _wrap_SBWatchpointOptions_SetWatchpointTypeRead()
80885 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){ in _wrap_SBWatchpointOptions_SetWatchpointTypeRead()
80889 arg2 = (lua_toboolean(L, 2)!=0); in _wrap_SBWatchpointOptions_SetWatchpointTypeRead()
80896 lua_error(L); in _wrap_SBWatchpointOptions_SetWatchpointTypeRead()
80901 static int _wrap_SBWatchpointOptions_GetWatchpointTypeRead(lua_State* L) { in _wrap_SBWatchpointOptions_GetWatchpointTypeRead() argument
80908 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::GetWatchpointTypeRead",1,"lldb:… in _wrap_SBWatchpointOptions_GetWatchpointTypeRead()
80910 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){ in _wrap_SBWatchpointOptions_GetWatchpointTypeRead()
80915 lua_pushboolean(L,(int)(result!=0)); SWIG_arg++; in _wrap_SBWatchpointOptions_GetWatchpointTypeRead()
80920 lua_error(L); in _wrap_SBWatchpointOptions_GetWatchpointTypeRead()
80925 static int _wrap_SBWatchpointOptions_SetWatchpointTypeWrite(lua_State* L) { in _wrap_SBWatchpointOptions_SetWatchpointTypeWrite() argument
80932 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeWrite",1,"lldb… in _wrap_SBWatchpointOptions_SetWatchpointTypeWrite()
80933 …if(!lua_isinteger(L,2)) SWIG_fail_arg("lldb::SBWatchpointOptions::SetWatchpointTypeWrite",2,"lldb:… in _wrap_SBWatchpointOptions_SetWatchpointTypeWrite()
80935 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){ in _wrap_SBWatchpointOptions_SetWatchpointTypeWrite()
80939 arg2 = (lldb::WatchpointWriteType)lua_tointeger(L, 2); in _wrap_SBWatchpointOptions_SetWatchpointTypeWrite()
80946 lua_error(L); in _wrap_SBWatchpointOptions_SetWatchpointTypeWrite()
80951 static int _wrap_SBWatchpointOptions_GetWatchpointTypeWrite(lua_State* L) { in _wrap_SBWatchpointOptions_GetWatchpointTypeWrite() argument
80958 …if(!SWIG_isptrtype(L,1)) SWIG_fail_arg("lldb::SBWatchpointOptions::GetWatchpointTypeWrite",1,"lldb… in _wrap_SBWatchpointOptions_GetWatchpointTypeWrite()
80960 if (!SWIG_IsOK(SWIG_ConvertPtr(L,1,(void**)&arg1,SWIGTYPE_p_lldb__SBWatchpointOptions,0))){ in _wrap_SBWatchpointOptions_GetWatchpointTypeWrite()
80965 lua_pushinteger(L, (lua_Integer) result); SWIG_arg++; in _wrap_SBWatchpointOptions_GetWatchpointTypeWrite()
80970 lua_error(L); in _wrap_SBWatchpointOptions_GetWatchpointTypeWrite()
80979 static int _proxy__wrap_new_SBWatchpointOptions(lua_State *L) { in _proxy__wrap_new_SBWatchpointOptions() argument
80980 assert(lua_istable(L,1)); in _proxy__wrap_new_SBWatchpointOptions()
80981 lua_pushcfunction(L,_wrap_new_SBWatchpointOptions); in _proxy__wrap_new_SBWatchpointOptions()
80982 assert(!lua_isnil(L,-1)); in _proxy__wrap_new_SBWatchpointOptions()
80983 lua_replace(L,1); /* replace our table with real constructor */ in _proxy__wrap_new_SBWatchpointOptions()
80984 lua_call(L,lua_gettop(L)-1,1); in _proxy__wrap_new_SBWatchpointOptions()
83417 void SWIG_init_user(lua_State* L );
83427 LUALIB_API int SWIG_init(lua_State* L) in SWIG_init() argument
83429 SWIGEXPORT int SWIG_init(lua_State* L) /* default Lua action */ in SWIG_init()
83436 lua_pushglobaltable (L); in SWIG_init()
83438 SWIG_InitializeModule((void*)L); in SWIG_init()
83444 SWIG_Lua_add_function(L,"swig_type",SWIG_Lua_type); in SWIG_init()
83445 SWIG_Lua_add_function(L,"swig_equals",SWIG_Lua_class_equal); in SWIG_init()
83452 SWIG_Lua_init_base_class(L,(swig_lua_class*)(swig_types[i]->clientdata)); in SWIG_init()
83461 SWIG_Lua_namespace_register(L,&swig_SwigModule, globalRegister); in SWIG_init()
83467 SWIG_Lua_elua_class_register_instance(L,(swig_lua_class*)(swig_types[i]->clientdata)); in SWIG_init()
83473 lua_newtable(L); in SWIG_init()
83474 SWIG_Lua_elua_emulate_register(L,swig_SwigModule.ns_methods); in SWIG_init()
83475 SWIG_Lua_elua_emulate_register_clear(L); in SWIG_init()
83477 lua_pushstring(L,swig_SwigModule.name); in SWIG_init()
83478 lua_pushvalue(L,-2); in SWIG_init()
83479 lua_rawset(L,-4); in SWIG_init()
83487 SWIG_init_user(L); in SWIG_init()
83506 void SWIG_init_user(lua_State* L) in SWIG_init_user() argument
83509 SWIG_Lua_dostring(L,SWIG_LUACODE); in SWIG_init_user()