The function will return Call objects for keccak256 and abi.encodePacked calls.
Query Example
from glider import*defquery():#fetch an instruction instruction =Instructions().with_all_callee_function_names(['keccak256','abi.encodePacked']).exec(1)#print the expression of the calleefor call in instruction[0].get_callee_values():print(call.expression)return instruction