Home
last modified time | relevance | path

Searched refs:path (Results 2051 - 2075 of 9376) sorted by relevance

1...<<81828384858687888990>>...376

/kernel/linux/linux-6.6/fs/btrfs/
H A Dbackref.h169 * A path from a root to a leaf that has a file extent item pointing to
205 struct btrfs_path *path, struct btrfs_key *found_key,
217 struct btrfs_path *path, void *ctx,
225 char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
232 struct btrfs_path *path);
236 u64 start_off, struct btrfs_path *path,
264 struct btrfs_path *path; member
278 btrfs_free_path(iter->path); in btrfs_backref_iter_free()
287 return iter->path->nodes[0]; in btrfs_backref_get_eb()
324 btrfs_release_path(iter->path); in btrfs_backref_iter_release()
411 struct btrfs_backref_node *path[BTRFS_MAX_LEVEL]; global() member
[all...]
/kernel/linux/linux-6.6/fs/cachefiles/
H A Dcache.c19 struct path path; in cachefiles_add_cache() local
39 ret = kern_path(cache->rootdirname, LOOKUP_DIRECTORY, &path); in cachefiles_add_cache()
43 cache->mnt = path.mnt; in cachefiles_add_cache()
44 root = path.dentry; in cachefiles_add_cache()
47 if (is_idmapped_mnt(path.mnt)) { in cachefiles_add_cache()
82 ret = vfs_statfs(&path, &stats); in cachefiles_add_cache()
192 struct path path = { in cachefiles_has_space() local
209 ret = vfs_statfs(&path, in cachefiles_has_space()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/mt7915/
H A Deeprom.c190 u8 path, nss, nss_max = 4, *eeprom = dev->mt76.eeprom.data; in mt7915_eeprom_parse_hw_cap() local
196 /* read tx/rx path from eeprom */ in mt7915_eeprom_parse_hw_cap()
198 path = FIELD_GET(MT_EE_WIFI_CONF0_TX_PATH, in mt7915_eeprom_parse_hw_cap()
201 path = FIELD_GET(MT_EE_WIFI_CONF0_TX_PATH, in mt7915_eeprom_parse_hw_cap()
205 if (!path || path > 4) in mt7915_eeprom_parse_hw_cap()
206 path = 4; in mt7915_eeprom_parse_hw_cap()
209 nss = path; in mt7915_eeprom_parse_hw_cap()
212 path = min_t(u8, path, in mt7915_eeprom_parse_hw_cap()
[all...]
/kernel/linux/linux-6.6/tools/power/x86/amd_pstate_tracer/
H A Damd_pstate_trace.py33 sys.path.append('../intel_pstate_tracer')
69 if os.path.exists(file_name):
86 if os.path.exists(file_name):
101 if os.path.exists(file_name):
179 if os.path.exists('cpu.csv'):
278 location = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
279 file_name = os.path.join(location, arg)
303 if not os.path
[all...]
/kernel/linux/linux-6.6/tools/cgroup/
H A Diocost_monitor.py78 path = parent_path + '/' + name if parent_path else name
84 self.blkgs.append((path if path else '/', blkg))
88 self.walk(c, q_id, path)
175 def dict(self, now, path):
176 out = { 'cgroup' : path,
192 def table_row_str(self, path):
193 out = f'{path[-28:]:28} ' \
258 for path, blkg in BlkgIterator(blkcg_root, q_id):
259 if filter_re and not filter_re.match(path)
[all...]
/third_party/alsa-lib/src/
H A Ddlmisc.c66 static void snd_dlinfo_origin(char *path, size_t path_len) in snd_dlinfo_origin() argument
76 snprintf(path, path_len, "%s/alsa-lib", origin); in snd_dlinfo_origin()
77 if (access(path, X_OK) == 0) in snd_dlinfo_origin()
78 snd_plugin_dir = strdup(path); in snd_dlinfo_origin()
84 * \brief Compose the dynamic path
85 * \param path Returned path (string)
86 * \param path_len Returned path max size (with trailing zero)
90 int snd_dlpath(char *path, size_t path_len, const char *name) in snd_dlpath() argument
98 snd_dlinfo_origin(path, path_le in snd_dlpath()
149 char path[PATH_MAX]; snd_dlopen() local
[all...]
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_foozzie_test.py24 BASE_DIR = os.path.dirname(os.path.abspath(__file__))
25 FOOZZIE = os.path.join(BASE_DIR, 'v8_foozzie.py')
26 TEST_DATA = os.path.join(BASE_DIR, 'testdata')
101 crash_test_example_path = 'CrashTests/path/to/file.js'
253 '--first-d8', os.path.join(TEST_DATA, 'baseline', 'd8.py'),
254 '--second-d8', os.path.join(TEST_DATA, second_d8_dir, 'd8.py'),
257 os.path.join(TEST_DATA, 'fuzz-123.js'),
283 with open(os.path.join(TEST_DATA, 'failure_output.txt')) as f:
295 with open(os.path
[all...]
/third_party/musl/libc-test/src/functional/
H A Ddlopen_ns.c158 // current ns can load the so by absolute path. in dlopen_seperated()
163 t_error("%s can load %s by absolute path but failed : %s \n", dlns1.name, absolute_path_1, dlerror()); in dlopen_seperated()
168 // current ns can't load the so by absolute path if it has inaccessible dependent so. in dlopen_seperated()
173 t_error("%s can't load %s by absolute path because but it has inaccessible dependent so but succeed : %s \n", dlns1.name, absolute_path_2, dlerror()); in dlopen_seperated()
187 // inherit_A can't load the so because search path is NULL. in dlopen_inherit()
269 char buf[512],path[512]; in main() local
273 t_error("failed to obtain relative path to libdlopen_ns_dso.so\n"); in main()
277 if (!t_pathrel(path, sizeof path, argv[0], "")) { in main()
278 t_error("failed to obtain relative path t in main()
[all...]
/third_party/python/Tools/scripts/
H A Dgenerate_global_objects.py3 import os.path namespace
6 __file__ = os.path.abspath(__file__)
7 ROOT = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
8 INTERNAL = os.path.join(ROOT, 'Include', 'internal')
99 root = os.path.join(ROOT, name)
104 yield os.path.join(dirname, name)
189 filename = os.path.join(INTERNAL, 'pycore_global_strings.h')
228 with open(os.path
[all...]
/third_party/python/Lib/distutils/
H A Dsysconfig.py267 If 'plat_specific' is false (the default), this is the path to the
269 otherwise, this is the path to platform-specific header files
287 incdir = os.path.join(get_config_var('srcdir'), 'Include')
288 return os.path.normpath(incdir)
290 return os.path.join(prefix, "include", python_dir)
295 return (os.path.join(prefix, "include") + os.path.pathsep +
296 os.path.join(prefix, "PC"))
297 return os.path.join(prefix, "include")
332 libpython = os.path
[all...]
/third_party/skia/src/core/
H A DSkStrokerPriv.cpp15 static void ButtCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in ButtCapper() argument
17 path->lineTo(stop.fX, stop.fY); in ButtCapper()
20 static void RoundCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in RoundCapper() argument
27 path->conicTo(projectedCenter + normal, projectedCenter, SK_ScalarRoot2Over2); in RoundCapper()
28 path->conicTo(projectedCenter - normal, stop, SK_ScalarRoot2Over2); in RoundCapper()
31 static void SquareCapper(SkPath* path, const SkPoint& pivot, const SkVector& normal, in SquareCapper() argument
37 path->setLastPt(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper()
38 path->lineTo(pivot.fX - normal.fX + parallel.fX, pivot.fY - normal.fY + parallel.fY); in SquareCapper()
40 path->lineTo(pivot.fX + normal.fX + parallel.fX, pivot.fY + normal.fY + parallel.fY); in SquareCapper()
41 path in SquareCapper()
[all...]
H A DSkPathRef.cpp68 // Deliberately don't validate() this path ref, otherwise there's no way in ~SkPathRef()
155 // If dst and src are the same then we are about to drop our only ref on the common path
180 * them as "known", rather than force the transformed path to have to
183 * Special gotchas if the path is effectively empty (<= 1 point) or
340 std::tuple<SkPoint*, SkScalar*> SkPathRef::growForVerbsInPath(const SkPathRef& path) {
343 fSegmentMask |= path.fSegmentMask;
348 if (int numVerbs = path.countVerbs()) {
349 memcpy(fVerbs.append(numVerbs), path.fVerbs.begin(), numVerbs * sizeof(fVerbs[0]));
353 if (int numPts = path.countPoints()) {
358 if (int numConics = path
[all...]
/third_party/python/Lib/
H A D_osx_support.py29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
35 if path is None:
36 path = os.environ['PATH']
38 paths = path.split(os.pathsep)
39 base, ext = os.path.splitext(executable)
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
47 if os.path.isfile(f):
78 """Find a build tool on current path o
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/vm/
H A Dkhugepaged.c123 static int read_file(const char *path, char *buf, size_t buflen) in read_file() argument
128 fd = open(path, O_RDONLY); in read_file()
144 static int write_file(const char *path, const char *buf, size_t buflen) in write_file() argument
149 fd = open(path, O_WRONLY); in write_file()
163 char path[PATH_MAX]; in read_string() local
168 ret = snprintf(path, PATH_MAX, THP_SYSFS "%s", name); in read_string()
174 if (!read_file(path, buf, sizeof(buf))) { in read_string()
175 perror(path); in read_string()
208 char path[PATH_MAX]; in write_string() local
211 ret = snprintf(path, PATH_MA in write_string()
225 char path[PATH_MAX]; read_num() local
246 char path[PATH_MAX]; write_num() local
[all...]
/kernel/linux/linux-5.10/drivers/s390/char/
H A Dvmlogrdr.c66 struct iucv_path *path; member
164 static void vmlogrdr_iucv_path_complete(struct iucv_path *path, u8 *ipuser) in vmlogrdr_iucv_path_complete() argument
166 struct vmlogrdr_priv_t * logptr = path->private; in vmlogrdr_iucv_path_complete()
175 static void vmlogrdr_iucv_path_severed(struct iucv_path *path, u8 *ipuser) in vmlogrdr_iucv_path_severed() argument
177 struct vmlogrdr_priv_t * logptr = path->private; in vmlogrdr_iucv_path_severed()
182 iucv_path_sever(path, NULL); in vmlogrdr_iucv_path_severed()
183 kfree(path); in vmlogrdr_iucv_path_severed()
184 logptr->path = NULL; in vmlogrdr_iucv_path_severed()
197 static void vmlogrdr_iucv_message_pending(struct iucv_path *path, in vmlogrdr_iucv_message_pending() argument
200 struct vmlogrdr_priv_t * logptr = path in vmlogrdr_iucv_message_pending()
[all...]
/kernel/linux/linux-5.10/kernel/bpf/
H A Dinode.c442 struct path path; in bpf_obj_do_pin() local
446 dentry = user_path_create(AT_FDCWD, pathname, &path, 0); in bpf_obj_do_pin()
452 ret = security_path_mknod(&path, dentry, mode, 0); in bpf_obj_do_pin()
456 dir = d_inode(path.dentry); in bpf_obj_do_pin()
476 done_path_create(&path, dentry); in bpf_obj_do_pin()
501 struct path path; in bpf_obj_do_get() local
505 ret = user_path_at(AT_FDCWD, pathname, LOOKUP_FOLLOW, &path); in bpf_obj_do_get()
509 inode = d_backing_inode(path in bpf_obj_do_get()
588 struct path path; bpf_prog_get_type_path() local
[all...]
/kernel/linux/linux-6.6/drivers/hwtracing/coresight/
H A Dcoresight-etm-perf.c34 * the trace path and the sink configuration. The event data is accessible
40 * for stopping the trace path. The event_data is guaranteed to stay alive
43 * to make sure we can disable the trace path.
140 return per_cpu_ptr(data->path, cpu); in etm_event_cpu_path_ptr()
239 free_percpu(event_data->path); in free_event_data()
261 * Each CPU has a single path between source and destination. As such in alloc_event_data()
262 * allocate an array using CPU numbers as indexes. That way a path in alloc_event_data()
268 event_data->path = alloc_percpu(struct list_head *); in alloc_event_data()
270 if (!event_data->path) { in alloc_event_data()
340 * Setup the path fo in etm_setup_aux()
347 struct list_head *path; etm_setup_aux() local
452 struct list_head *path; etm_event_start() local
544 struct list_head *path; etm_event_stop() local
[all...]
/kernel/linux/linux-6.6/drivers/s390/char/
H A Dvmlogrdr.c66 struct iucv_path *path; member
164 static void vmlogrdr_iucv_path_complete(struct iucv_path *path, u8 *ipuser) in vmlogrdr_iucv_path_complete() argument
166 struct vmlogrdr_priv_t * logptr = path->private; in vmlogrdr_iucv_path_complete()
175 static void vmlogrdr_iucv_path_severed(struct iucv_path *path, u8 *ipuser) in vmlogrdr_iucv_path_severed() argument
177 struct vmlogrdr_priv_t * logptr = path->private; in vmlogrdr_iucv_path_severed()
182 iucv_path_sever(path, NULL); in vmlogrdr_iucv_path_severed()
183 kfree(path); in vmlogrdr_iucv_path_severed()
184 logptr->path = NULL; in vmlogrdr_iucv_path_severed()
197 static void vmlogrdr_iucv_message_pending(struct iucv_path *path, in vmlogrdr_iucv_message_pending() argument
200 struct vmlogrdr_priv_t * logptr = path in vmlogrdr_iucv_message_pending()
[all...]
/third_party/skia/gm/
H A Dcomplexclip.cpp57 SkPath path = SkPathBuilder() variable
74 path.setFillType(SkPathFillType::kInverseEvenOdd);
76 path.setFillType(SkPathFillType::kEvenOdd);
121 this->drawHairlines(canvas, path, clipA, clipB);
138 rectClip.join(path.getBounds());
139 rectClip.join(path.getBounds());
144 // draw path clipped
145 canvas->drawPath(path, pathPaint);
174 void drawHairlines(SkCanvas* canvas, const SkPath& path, in drawHairlines() argument
181 // draw path i in drawHairlines()
480 SkPath path; DEF_SIMPLE_GM() local
[all...]
/third_party/vulkan-loader/tests/framework/shim/
H A Dwindows_shim.cpp96 for (auto const &path : *paths) size = static_cast<ULONG>(path.length() * sizeof(wchar_t)); in ShimQueryAdapterInfo()
97 // size in bytes, so multiply path size by two and add 2 for the null terminator in ShimQueryAdapterInfo()
100 // only want to write data if there is path data to write in ShimQueryAdapterInfo()
105 for (auto const &path : *paths) { in ShimQueryAdapterInfo()
106 for (auto w : path) { in ShimQueryAdapterInfo()
297 return &key.path; in get_path_of_created_key()
302 std::vector<RegistryEntry> *get_registry_vector(std::string const &path) { in get_registry_vector() argument
303 if (path == "HKEY_LOCAL_MACHINE\\" VK_DRIVERS_INFO_REGISTRY_LOC) return &platform_shim.hkey_local_machine_drivers; in get_registry_vector()
304 if (path in get_registry_vector()
319 const std::string *path = get_path_of_created_key(hKey); ShimRegEnumValueA() local
[all...]
/third_party/curl/lib/
H A Dcookie.c39 char *lineptr, const char *domain, const char *path,
57 char *host, char *path, bool secure);
59 For a given host and path, return a linked list of cookies that
69 Set-cookie: PRODUCTINFO=webxpress; domain=.fidelity.com; path=/; secure
71 domain=.fidelity.com; path=/ftgw; secure
73 domain=.fidelity.com; path=/; secure
75 domain=.fidelity.com; path=/; secure
77 domain=.fidelity.com; path=/; secure
79 domain=.fidelity.com; path=/; secure
82 13-Jun-1988 03:04:55 GMT; domain=.fidelity.com; path
481 Curl_cookie_add(struct Curl_easy *data, struct CookieInfo *c, bool httpheader, bool noexpire, const char *lineptr, const char *domain, const char *path, bool secure) Curl_cookie_add() argument
1384 Curl_cookie_getlist(struct Curl_easy *data, struct CookieInfo *c, const char *host, const char *path, bool secure) Curl_cookie_getlist() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_zipimport.py45 def module_path_to_dotted_name(path):
46 return path.replace(os.sep, '.')
55 TEMP_DIR = os.path.abspath("junk95142")
56 TEMP_ZIP = os.path.abspath("junk95142.zip")
65 self.path = sys.path[:]
72 sys.path[:] = self.path
84 # We're reusing the zip archive path, so we must clear the
96 path
[all...]
/kernel/linux/linux-5.10/fs/ocfs2/
H A Dalloc.c568 struct ocfs2_path *path,
571 * Reset the actual path elements so that we can re-use the structure
572 * to build another path. Generally, this involves freeing the buffer
575 void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root) in ocfs2_reinit_path() argument
583 for(i = start; i < path_num_items(path); i++) { in ocfs2_reinit_path()
584 node = &path->p_node[i]; in ocfs2_reinit_path()
593 * keeping the root extent list, then make sure that our path in ocfs2_reinit_path()
597 depth = le16_to_cpu(path_root_el(path)->l_tree_depth); in ocfs2_reinit_path()
599 path_root_access(path) = NULL; in ocfs2_reinit_path()
601 path in ocfs2_reinit_path()
604 ocfs2_free_path(struct ocfs2_path *path) ocfs2_free_path() argument
665 ocfs2_path_insert_eb(struct ocfs2_path *path, int index, struct buffer_head *eb_bh) ocfs2_path_insert_eb() argument
686 struct ocfs2_path *path; ocfs2_new_path() local
702 ocfs2_new_path_from_path(struct ocfs2_path *path) ocfs2_new_path_from_path() argument
721 ocfs2_path_bh_journal_access(handle_t *handle, struct ocfs2_caching_info *ci, struct ocfs2_path *path, int idx) ocfs2_path_bh_journal_access() argument
741 ocfs2_journal_access_path(struct ocfs2_caching_info *ci, handle_t *handle, struct ocfs2_path *path) ocfs2_journal_access_path() argument
1097 struct ocfs2_path *path = NULL; ocfs2_adjust_rightmost_branch() local
1884 struct ocfs2_path *path; global() member
1894 ocfs2_find_path(struct ocfs2_caching_info *ci, struct ocfs2_path *path, u32 cpos) ocfs2_find_path() argument
2210 ocfs2_find_cpos_for_left_leaf(struct super_block *sb, struct ocfs2_path *path, u32 *cpos) ocfs2_find_cpos_for_left_leaf() argument
2283 ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth, int op_credits, struct ocfs2_path *path) ocfs2_extend_rotate_transaction() argument
2523 ocfs2_update_edge_lengths(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path) ocfs2_update_edge_lengths() argument
2563 ocfs2_unlink_path(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_cached_dealloc_ctxt *dealloc, struct ocfs2_path *path, int unlink_start) ocfs2_unlink_path() argument
2805 ocfs2_find_cpos_for_right_leaf(struct super_block *sb, struct ocfs2_path *path, u32 *cpos) ocfs2_find_cpos_for_right_leaf() argument
2874 ocfs2_rotate_rightmost_leaf_left(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path) ocfs2_rotate_rightmost_leaf_left() argument
2899 __ocfs2_rotate_tree_left(handle_t *handle, struct ocfs2_extent_tree *et, int orig_credits, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc, struct ocfs2_path **empty_extent_path) __ocfs2_rotate_tree_left() argument
3016 ocfs2_remove_rightmost_path(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_remove_rightmost_path() argument
3105 ocfs2_remove_rightmost_empty_extent(struct ocfs2_super *osb, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_remove_rightmost_empty_extent() argument
3145 ocfs2_rotate_tree_left(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_rotate_tree_left() argument
3654 ocfs2_try_to_merge_extent(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int split_index, struct ocfs2_extent_rec *split_rec, struct ocfs2_cached_dealloc_ctxt *dealloc, struct ocfs2_merge_ctxt *ctxt) ocfs2_try_to_merge_extent() argument
3949 ocfs2_adjust_rightmost_records(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_extent_rec *insert_rec) ocfs2_adjust_rightmost_records() argument
4350 ocfs2_figure_merge_contig_type(struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_extent_list *el, int index, struct ocfs2_extent_rec *split_rec, struct ocfs2_merge_ctxt *ctxt) ocfs2_figure_merge_contig_type() argument
4580 struct ocfs2_path *path = NULL; ocfs2_figure_insert_type() local
4903 ocfs2_split_and_insert(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct buffer_head **last_eb_bh, int split_index, struct ocfs2_extent_rec *orig_split_rec, struct ocfs2_alloc_context *meta_ac) ocfs2_split_and_insert() argument
5015 ocfs2_replace_extent_rec(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_extent_list *el, int split_index, struct ocfs2_extent_rec *split_rec) ocfs2_replace_extent_rec() argument
5057 ocfs2_split_extent(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int split_index, struct ocfs2_extent_rec *split_rec, struct ocfs2_alloc_context *meta_ac, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_split_extent() argument
5273 ocfs2_split_tree(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int index, u32 new_range, struct ocfs2_alloc_context *meta_ac) ocfs2_split_tree() argument
5342 ocfs2_truncate_rec(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int index, struct ocfs2_cached_dealloc_ctxt *dealloc, u32 cpos, u32 len) ocfs2_truncate_rec() argument
5516 struct ocfs2_path *path = NULL; ocfs2_remove_extent() local
7208 struct ocfs2_path *path = NULL; ocfs2_commit_truncate() local
[all...]
/kernel/linux/linux-6.6/fs/ocfs2/
H A Dalloc.c566 struct ocfs2_path *path,
569 * Reset the actual path elements so that we can re-use the structure
570 * to build another path. Generally, this involves freeing the buffer
573 void ocfs2_reinit_path(struct ocfs2_path *path, int keep_root) in ocfs2_reinit_path() argument
581 for(i = start; i < path_num_items(path); i++) { in ocfs2_reinit_path()
582 node = &path->p_node[i]; in ocfs2_reinit_path()
591 * keeping the root extent list, then make sure that our path in ocfs2_reinit_path()
595 depth = le16_to_cpu(path_root_el(path)->l_tree_depth); in ocfs2_reinit_path()
597 path_root_access(path) = NULL; in ocfs2_reinit_path()
599 path in ocfs2_reinit_path()
602 ocfs2_free_path(struct ocfs2_path *path) ocfs2_free_path() argument
663 ocfs2_path_insert_eb(struct ocfs2_path *path, int index, struct buffer_head *eb_bh) ocfs2_path_insert_eb() argument
684 struct ocfs2_path *path; ocfs2_new_path() local
700 ocfs2_new_path_from_path(struct ocfs2_path *path) ocfs2_new_path_from_path() argument
719 ocfs2_path_bh_journal_access(handle_t *handle, struct ocfs2_caching_info *ci, struct ocfs2_path *path, int idx) ocfs2_path_bh_journal_access() argument
739 ocfs2_journal_access_path(struct ocfs2_caching_info *ci, handle_t *handle, struct ocfs2_path *path) ocfs2_journal_access_path() argument
1095 struct ocfs2_path *path = NULL; ocfs2_adjust_rightmost_branch() local
1882 struct ocfs2_path *path; global() member
1892 ocfs2_find_path(struct ocfs2_caching_info *ci, struct ocfs2_path *path, u32 cpos) ocfs2_find_path() argument
2208 ocfs2_find_cpos_for_left_leaf(struct super_block *sb, struct ocfs2_path *path, u32 *cpos) ocfs2_find_cpos_for_left_leaf() argument
2281 ocfs2_extend_rotate_transaction(handle_t *handle, int subtree_depth, int op_credits, struct ocfs2_path *path) ocfs2_extend_rotate_transaction() argument
2521 ocfs2_update_edge_lengths(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path) ocfs2_update_edge_lengths() argument
2561 ocfs2_unlink_path(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_cached_dealloc_ctxt *dealloc, struct ocfs2_path *path, int unlink_start) ocfs2_unlink_path() argument
2803 ocfs2_find_cpos_for_right_leaf(struct super_block *sb, struct ocfs2_path *path, u32 *cpos) ocfs2_find_cpos_for_right_leaf() argument
2872 ocfs2_rotate_rightmost_leaf_left(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path) ocfs2_rotate_rightmost_leaf_left() argument
2897 __ocfs2_rotate_tree_left(handle_t *handle, struct ocfs2_extent_tree *et, int orig_credits, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc, struct ocfs2_path **empty_extent_path) __ocfs2_rotate_tree_left() argument
3014 ocfs2_remove_rightmost_path(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_remove_rightmost_path() argument
3103 ocfs2_remove_rightmost_empty_extent(struct ocfs2_super *osb, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_remove_rightmost_empty_extent() argument
3143 ocfs2_rotate_tree_left(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_rotate_tree_left() argument
3652 ocfs2_try_to_merge_extent(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int split_index, struct ocfs2_extent_rec *split_rec, struct ocfs2_cached_dealloc_ctxt *dealloc, struct ocfs2_merge_ctxt *ctxt) ocfs2_try_to_merge_extent() argument
3947 ocfs2_adjust_rightmost_records(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_extent_rec *insert_rec) ocfs2_adjust_rightmost_records() argument
4348 ocfs2_figure_merge_contig_type(struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_extent_list *el, int index, struct ocfs2_extent_rec *split_rec, struct ocfs2_merge_ctxt *ctxt) ocfs2_figure_merge_contig_type() argument
4578 struct ocfs2_path *path = NULL; ocfs2_figure_insert_type() local
4901 ocfs2_split_and_insert(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct buffer_head **last_eb_bh, int split_index, struct ocfs2_extent_rec *orig_split_rec, struct ocfs2_alloc_context *meta_ac) ocfs2_split_and_insert() argument
5013 ocfs2_replace_extent_rec(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, struct ocfs2_extent_list *el, int split_index, struct ocfs2_extent_rec *split_rec) ocfs2_replace_extent_rec() argument
5055 ocfs2_split_extent(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int split_index, struct ocfs2_extent_rec *split_rec, struct ocfs2_alloc_context *meta_ac, struct ocfs2_cached_dealloc_ctxt *dealloc) ocfs2_split_extent() argument
5271 ocfs2_split_tree(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int index, u32 new_range, struct ocfs2_alloc_context *meta_ac) ocfs2_split_tree() argument
5340 ocfs2_truncate_rec(handle_t *handle, struct ocfs2_extent_tree *et, struct ocfs2_path *path, int index, struct ocfs2_cached_dealloc_ctxt *dealloc, u32 cpos, u32 len) ocfs2_truncate_rec() argument
5514 struct ocfs2_path *path = NULL; ocfs2_remove_extent() local
7213 struct ocfs2_path *path = NULL; ocfs2_commit_truncate() local
[all...]
/base/security/security_guard/test/unittest/security_collector/data_collection/src/
H A Ddata_collection_test.cpp44 MOCK_METHOD3(LoadCollector, ErrorCode(int64_t eventId, std::string path, std::shared_ptr<ICollectorFwk> api));
45 MOCK_METHOD2(GetCollectorPath, ErrorCode(int64_t eventId, std::string& path));
161 std::string path; in HWTEST_F() local
163 EXPECT_EQ(myOb.GetCollectorPath(1, path), FAILED); in HWTEST_F()
169 std::string path; in HWTEST_F() local
171 EXPECT_EQ(myOb.GetCollectorPath(0x01C000003, path), SUCCESS); in HWTEST_F()
192 MOCK_METHOD3(LoadCollector, ErrorCode(std::string path, const SecurityEventRuler &ruler,
194 MOCK_METHOD2(GetCollectorPath, ErrorCode(int64_t eventId, std::string& path));
252 std::string path("/system/lib64/chipset-pub-sdk/libeventhandler.z.so"); in HWTEST_F()
267 std::string path("/syste in HWTEST_F()
292 std::string path = "/system/lib64/module/security/libsecurityguard_napi.z.so"; HWTEST_F() local
300 std::string path = "/system/lib64/module/security/libsecurityguard_napi.z.so"; HWTEST_F() local
[all...]

Completed in 25 milliseconds

1...<<81828384858687888990>>...376