Lines Matching refs:nresult
243 path_key_entry * nresult; in path_key() local
253 nresult = (path_key_entry *)hash_insert( path_key_cache, normalized, in path_key()
255 if ( !found || nresult == result ) in path_key()
257 nresult->path = normalized; in path_key()
260 nresult->key = object_copy( path ); in path_key()
261 nresult->exists = 1; in path_key()
269 nresult->exists = 1; in path_key()
271 nresult->exists = 0; in path_key()
272 nresult->key = object_new( canonic_path->value ); in path_key()
278 if ( nresult != result ) in path_key()
281 result->key = object_copy( nresult->key ); in path_key()
282 result->exists = nresult->exists; in path_key()