Searched refs:pos (Results 1 - 8 of 8) sorted by relevance

/solaris-userland-s11u3/components/openstack/cinder/files/solaris/
H A Dnfs.py150 pos = start_pos
152 yield sharelist[pos], pos
153 pos = (pos + 1) % mylen
154 if pos == start_pos:
175 for nfs_share, pos in self._round_robin(self._mounted_shares):
179 self.last_rr_pos = pos
/solaris-userland-s11u3/components/visual-panels/coreadm/src/java/vpanels/app/coreadm/com/oracle/solaris/vp/panels/coreadm/client/swing/
H A DCoreUtil.java123 int pos = 0;
127 pos += b.length();
128 if (pos < chars.length) {
129 char format = chars[pos + 1];
133 pos += 2;
/solaris-userland-s11u3/components/jansson/doc/html/_downloads/
H A Dgithub_commits.c33 int pos; member in struct:write_result
40 if(result->pos + size * nmemb >= BUFFER_SIZE - 1)
46 memcpy(result->data + result->pos, ptr, size * nmemb);
47 result->pos += size * nmemb;
71 .pos = 0
103 data[write_result.pos] = '\0';
/solaris-userland-s11u3/components/jansson/doc/html/_static/
H A Ddoctools.js72 var pos = val.toLowerCase().indexOf(text);
73 if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) {
76 span.appendChild(document.createTextNode(val.substr(pos, text.length)));
78 document.createTextNode(val.substr(pos + text.length)),
80 node.nodeValue = val.substr(0, pos);
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/time/
H A DCalendarTable.java369 int pos = vRow * nCols + vCol + offset;
370 if (pos < 0) {
371 pos = 0;
372 } else if (pos >= nRows * nCols) {
373 pos = nRows * nCols - 1;
376 int newVRow = pos / nCols;
377 int newVCol = pos % nCols;
H A DTimeSpinnerEditor.java367 private int distance(int begin, int end, int pos) { argument
369 if (pos <= begin) {
370 return begin - pos;
372 return pos - end;
/solaris-userland-s11u3/components/open-fabrics/libibverbs/
H A Dsolaris_compatibility.c596 int pos = 0; local
599 while ((path[pos] != '/') || (path[pos] == '\0'))
600 pos++;
602 if (path[pos] != '/')
605 strncpy(device_name, path, (pos + 1));
606 device_name[pos] = '\0';
611 while (path[pos] == '/')
612 pos++;
615 memmove(path, &path[pos], (le
626 int ret, pos = 0; local
[all...]
/solaris-userland-s11u3/components/openstack/horizon/files/
H A Doverrides.py236 pos = project_tables.InstancesTable._meta.row_actions.index( variable
240 project_tables_row_actions[:pos] + (project_tables.EditBootargs,) +
241 project_tables_row_actions[pos:]

Completed in 32 milliseconds