Lines Matching refs:cur

37     cur = con.cursor()
38 cur.execute("select distinct ptr from function_ptr where function = '%s';" %(func))
39 for row in cur:
336 def display_caller_info(printed, cur, param_names): argument
337 for txt in cur:
353 cur = con.cursor()
360 cur.execute("select * from caller_info where function = '%s' %s;" %(ptr, type_filter))
361 printed = display_caller_info(printed, cur, param_names)
367 def merge_values(param_names, vals, cur): argument
368 for txt in cur:
386 cur = con.cursor()
388cur.execute("select parameter, value from parameter_name where file = '%s' and function = '%s';" %…
389 for txt in cur:
396 cur.execute("select parameter, value from parameter_name where function = '%s';" %(func))
397 for txt in cur:
404 cur = con.cursor()
407cur.execute("select count(distinct(call_id)) from caller_info where function = '%s';" %(ptr))
408 for txt in cur:
413 cur = con.cursor()
416cur.execute("select parameter, key, value from caller_info where function = '%s' and type = %d;" %…
417 merge_values(param_names, vals, cur);
427 cur = con.cursor()
430cur.execute("select file, caller, call_id, parameter, key, value from caller_info where function =…
431 for filename, caller, call_id, parameter, name, value in cur:
457 cur = con.cursor()
458 cur.execute("select * from return_states where function = '%s';" %(func))
460 for txt in cur:
470 cur = con.cursor()
471 cur.execute("select * from return_implies where function = '%s';" %(func))
473 for txt in cur:
482 cur = con.cursor()
483 cur.execute("select * from type_size where type like '(struct %s)->%s';" %(struct_type, member))
485 for txt in cur:
488cur.execute("select * from function_type_size where type like '(struct %s)->%s';" %(struct_type, m…
490 for txt in cur:
494 cur = con.cursor()
495 cur.execute("select * from data_info where data like '(struct %s)->%s';" %(struct_type, member))
497 for txt in cur:
508 cur = con.cursor()
509 cur.execute("select * from function_ptr where ptr like '%%->%s';" %(member))
511 for txt in cur:
516 cur = con.cursor()
519 cur.execute("select distinct caller from caller_info where function = '%s';" %(ptr))
520 for row in cur:
548 cur = con.cursor()
549cur.execute("select * from function_type_value where type like '(struct %s)->%s';" %(struct_type, …
550 for txt in cur:
617 cur = con.cursor()
622cur.execute("select call_id, value from caller_info where function = '%s' and parameter=%d and typ…
624 for row in cur:
631cur.execute("select caller, call_id, value from caller_info where function = '%s' and parameter=%d…
633 for row in cur:
658 cur = con.cursor()
661cur.execute("select type, caller, value from caller_info where function = '%s' and (type = 0 or ty…
662 for row in cur:
701 cur = con.cursor()
702cur.execute("select file,data,value from data_info where file = '%s' and type = 8029 and value != …
703 for txt in cur:
707 cur = con.cursor()
708cur.execute("select * from constraints_required where data like '(struct %s)->%s' or bound like '(…
709 for txt in cur: