looking for information about arduino functions

functions called
setio set input output
getio get input output
getanna get annalog

couldn't find information about these but i was told that they exist

but i was told that they exist

Someone lied to you.

They may well exist but not as part of the standard Arduino system.
For example

void setio()
{
  pinMode(outPin, OUTPUT);
  pinMode(inPin, INPUT_PULLUP);
}

but that is no use to you.

Where did you see mention of them ?

Arduino uses digitalWrite(), digitalRead() and analogRead().

See the "Reference" section of this website.