Home
last modified time | relevance | path

Searched refs:app_path (Results 1 – 5 of 5) sorted by relevance

/third_party/glib/gio/tests/
Dappmonitor.c77 gchar *app_path; in test_app_monitor() local
81 app_path = g_build_filename (fixture->applications_dir, "app.desktop", NULL); in test_app_monitor()
91 g_idle_add (create_app, app_path); in test_app_monitor()
103 delete_app (app_path); in test_app_monitor()
110 g_remove (app_path); in test_app_monitor()
114 g_free (app_path); in test_app_monitor()
/third_party/flutter/flutter/packages/flutter_tools/bin/
Dxcode_backend.sh349 local app_path="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"
350 local frameworks_dir="${app_path}/Frameworks"
353 find "${app_path}" -type d -name "*.framework" | while read framework_dir; do
/third_party/skia/infra/bots/recipe_modules/flavor/
Dandroid.py450 app_path = self.host_dirs.bin_dir.join(self.app_name)
452 'push', app_path, self.device_dirs.bin_dir)
/third_party/cef/cmake/
Dcef_macros.cmake.in190 macro(COPY_MAC_RESOURCES resource_list prefix_list target source_dir app_path)
199 set(TARGET_PATH "${app_path}/Contents/Resources/${TARGET_FILENAME}")
/third_party/musl/porting/linux/user/ldso/
Ddynlink.c373 char app_path[PATH_MAX+1]; in init_namespace() local
374 if (!get_app_path(app_path, sizeof app_path)) { in init_namespace()
375 strcpy(app_path, app->name); in init_namespace()
377 char *t = strrchr(app_path, '/'); in init_namespace()
381 app_path[0] = '.'; in init_namespace()
382 app_path[1] = 0; in init_namespace()
390 int ret = conf->parse(file_path, app_path); in init_namespace()