Lines Matching refs:architecture

435 process_path(const char* installationLocation, const char* architecture,  in process_path()  argument
447 if (architecture != NULL) { in process_path()
449 buffer.Append(architecture); in process_path()
497 const char* dependency, const char* architecture, in internal_path_for_path() argument
501 if (strcmp(architecture, __get_primary_architecture()) == 0) in internal_path_for_path()
502 architecture = NULL; in internal_path_for_path()
574 ssize_t pathSize = process_path(installationLocation, architecture, in internal_path_for_path()
596 const char* architecture, path_base_directory baseDirectory, in __find_path_etc() argument
608 if (architecture == NULL) in __find_path_etc()
609 architecture = __get_architecture(); in __find_path_etc()
612 dependency, architecture, baseDirectory, subPath, flags, pathBuffer, in __find_path_etc()
628 const char* architecture, path_base_directory baseDirectory, in __find_path_for_path_etc() argument
640 if (architecture == NULL) in __find_path_for_path_etc()
641 architecture = __guess_architecture_for_path(path); in __find_path_for_path_etc()
644 dependency, architecture, baseDirectory, subPath, flags, pathBuffer, in __find_path_for_path_etc()
659 __find_paths_etc(const char* architecture, path_base_directory baseDirectory, in __find_paths_etc() argument
669 if (architecture == NULL) in __find_paths_etc()
670 architecture = __get_architecture(); in __find_paths_etc()
671 if (strcmp(architecture, __get_primary_architecture()) == 0) in __find_paths_etc()
672 architecture = NULL; in __find_paths_etc()
673 size_t architectureSize = architecture != NULL in __find_paths_etc()
674 ? strlen(architecture) + 1 : 0; in __find_paths_etc()
723 architecture, relativePaths[i], subPath, flags, pathBuffer, in __find_paths_etc()
790 const char* architecture = secondaryArchitectures[k]; in __guess_secondary_architecture_from_path() local
791 size_t architectureLength = strlen(architecture); in __guess_secondary_architecture_from_path()
792 if (strncmp(architecturePart, architecture, architectureLength) == 0 in __guess_secondary_architecture_from_path()
795 return architecture; in __guess_secondary_architecture_from_path()