index             149 dlsym_default.c static Elf32_Word hash_next(Elf32_Word index, Elf32_Word *hash_table,
index             152 dlsym_default.c     assert( index > STN_UNDEF );
index             161 dlsym_default.c     if (hashval[index - symndx] & 1)
index             164 dlsym_default.c       return index+1;
index             170 dlsym_default.c     return chain[index]; // If this returns STN_UNDEF, then it's end of chain
index             197 plugin/ipc/event/util_descriptor.cpp bool Util::Descriptor::get_descriptor(unsigned int index,
index             203 plugin/ipc/event/util_descriptor.cpp    JTRACE("get descriptor") (index) (type);
index             204 plugin/ipc/event/util_descriptor.cpp    if((descrip_types_p[index])->add_watch.type == type)
index             206 plugin/ipc/event/util_descriptor.cpp       memcpy(descriptor, descrip_types_p[index], sizeof(descriptor_types_u));
index             211 plugin/ipc/event/util_descriptor.cpp       JTRACE("descriptor type is different from type saved") (type) ((descrip_types_p[index])->add_watch.type);
index              92 plugin/ipc/event/util_descriptor.h          bool get_descriptor(unsigned int index, descriptor_type_e type,
index             506 plugin/ipc/file/fileconnection.cpp     int index = 6;
index             508 plugin/ipc/file/fileconnection.cpp     pid_t proc_pid = strtol(&_path[index], &rest, 0);
index             774 plugin/ipc/file/fileconnection.cpp     int index = 6;
index             777 plugin/ipc/file/fileconnection.cpp     pid_t proc_pid = strtol(&_path[index], &rest, 0);
index              67 plugin/pid/pid_filewrappers.cpp     int index = strlen(PROC_PREFIX);
index              69 plugin/pid/pid_filewrappers.cpp     pid_t virtualPid = strtol(&path[index], &rest, 0);
index              83 plugin/pid/pid_filewrappers.cpp     int index = strlen(PROC_PREFIX);
index              85 plugin/pid/pid_filewrappers.cpp     pid_t realPid = strtol(&path[index], &rest, 0);
index             207 util_misc.cpp    size_t index = path.rfind('/');
index             209 util_misc.cpp    if (index == string::npos)
index             212 util_misc.cpp    string dir = path.substr(0, index);
index             214 util_misc.cpp    index = path.find('/');
index             215 util_misc.cpp    while (index != string::npos) {
index             216 util_misc.cpp      if (index > 1) {
index             217 util_misc.cpp        string dirName = path.substr(0, index);
index             241 util_misc.cpp      index = path.find('/', index+1);