Searched defs:dir_index (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
H A Dhandlers.c237 int32_t dir_index = value.value.as_int; local
238 if (dir_index < 0 || dir_index >= MAX_OPEN_DIRS) {
239 *out_error = PrintfToNewString("Dir at index %d is out range", dir_index);
243 if (g_OpenDirs[dir_index] == NULL) {
244 *out_error = PrintfToNewString("Dir index %d is not open", dir_index);
248 *out_dir = g_OpenDirs[dir_index];
249 *out_dir_index = dir_index;
668 int dir_index = AddDirToMap(dir);
669 if (dir_index
[all...]

Completed in 109 milliseconds