Home
last modified time | relevance | path

Searched refs:target (Results 276 - 300 of 6932) sorted by relevance

1...<<11121314151617181920>>...278

/third_party/eudev/src/udev/
H A Dudev-node.c38 char target[UTIL_PATH_SIZE]; in node_symlink() local
47 target[0] = '\0'; in node_symlink()
53 s = target; in node_symlink()
54 l = sizeof(target); in node_symlink()
66 /* preserve link with correct target, do not replace node of other device */ in node_symlink()
78 if (streq(target, buf)) { in node_symlink()
79 log_debug("preserve already existing symlink '%s' to '%s'", slink, target); in node_symlink()
87 log_debug("creating symlink '%s' to '%s'", slink, target); in node_symlink()
93 err = symlink(target, slink); in node_symlink()
110 err = symlink(target, slink_tm in node_symlink()
133 const char *target = NULL; link_find_prioritized() local
186 const char *target; link_update() local
[all...]
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetHZ.java68 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) { in decodeLoop() argument
76 else if (!target.hasRemaining()) in decodeLoop()
81 if (target.hasRemaining()) { in decodeLoop()
97 target.put((char) mySourceChar); in decodeLoop()
200 target.put((char) targetUniChar); in decodeLoop()
245 protected CoderResult encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) { in encodeLoop() argument
253 else if (!target.hasRemaining()) in encodeLoop()
256 if (fromUChar32 != 0 && target.hasRemaining()) { in encodeLoop()
263 if (target.hasRemaining()) { in encodeLoop()
272 concatEscape(source, target, offset in encodeLoop()
365 concatEscape(CharBuffer source, ByteBuffer target, IntBuffer offsets, byte[] strToAppend) concatEscape() argument
[all...]
/third_party/gn/src/gn/
H A Dninja_group_target_writer_unittest.cc6 #include "gn/target.h"
14 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); in TEST()
15 target.set_output_type(Target::GROUP); in TEST()
16 target.visibility().SetPublic(); in TEST()
44 target.public_deps().push_back(LabelTargetPair(&dep)); in TEST()
45 target.public_deps().push_back(LabelTargetPair(&dep2)); in TEST()
46 target.public_deps().push_back(LabelTargetPair(&bundle_data_dep)); in TEST()
47 target.data_deps().push_back(LabelTargetPair(&datadep)); in TEST()
49 target.SetToolchain(setup.toolchain()); in TEST()
50 ASSERT_TRUE(target in TEST()
[all...]
H A Dinnerapis_publicinfo_generator.cc24 #include "gn/target.h"
89 static bool TraverIncludeDirs(const OhosComponentChecker *checker, const Target *target, const Scope *scope, in TraverIncludeDirs() argument
98 if (!checker->CheckIncludesAbsoluteDepsOther(target, label, real_dir.value(), err)) { in TraverIncludeDirs()
109 const Target *target = params.target; in CheckIncludes() local
114 if (!checker->CheckInnerApiIncludesOverRange(target, label, dir, err)) { in CheckIncludes()
120 if (!checker->CheckIncludesAbsoluteDepsOther(target, label, dir, err)) { in CheckIncludes()
261 static std::string GetPublicConfigsInfo(const Target *target, const std::string &label, Scope *scope, in GetPublicConfigsInfo() argument
265 const UniqueVector<LabelConfigPair> configs = target->public_configs(); in GetPublicConfigsInfo()
268 PublicConfigInfoParams params = { target, labe in GetPublicConfigsInfo()
278 GetAllDependentConfigsInfo(const Target *target, const std::string &label, Scope *scope, const OhosComponentChecker *checker, Err *err) GetAllDependentConfigsInfo() argument
300 GetPrivateConfigsInfo(const Target *target, const std::string &label, Scope *scope, const OhosComponentChecker *checker, Err *err) GetPrivateConfigsInfo() argument
316 GetPublicHeadersInfo(const Target *target) GetPublicHeadersInfo() argument
335 GetPublicDepsInfo(const Target *target, const std::string &label, const OhosComponentChecker *checker, Err *err) GetPublicDepsInfo() argument
362 GetOutNameAndTypeInfo(const Scope *scope, const std::string &target, const std::string &type) GetOutNameAndTypeInfo() argument
456 GeneratedInnerapiPublicInfo(const Target *target, const Label &label, Scope *scope, const std::string &type, Err *err) GeneratedInnerapiPublicInfo() argument
[all...]
/third_party/node/tools/gyp/tools/
H A Dgraphviz.py17 def ParseTarget(target):
18 target, _, suffix = target.partition("#")
19 filename, _, target = target.partition(":")
20 return filename, target, suffix
46 |edges| is a map of target to a list of other targets it depends on."""
65 target = targets[0]
66 build_file, target_name, toolset = ParseTarget(target)
68 f' "{target}" [shap
[all...]
/third_party/node/deps/icu-small/source/tools/genrb/
H A Dustr.h25 #define U_APPEND_CHAR32(c,target,len) UPRV_BLOCK_MACRO_BEGIN { \
28 *(target)++ = (UChar) c; \
33 target[0] = U16_LEAD(c); \
34 target[1] = U16_TRAIL(c); \
36 target +=2; \
40 #define U_APPEND_CHAR32_ONLY(c,target) UPRV_BLOCK_MACRO_BEGIN { \
43 *(target)++ = (UChar) c; \
47 target[0] = U16_LEAD(c); \
48 target[1] = U16_TRAIL(c); \
49 target
[all...]
/third_party/icu/icu4c/source/tools/genrb/
H A Dustr.h25 #define U_APPEND_CHAR32(c,target,len) UPRV_BLOCK_MACRO_BEGIN { \
28 *(target)++ = (UChar) c; \
33 target[0] = U16_LEAD(c); \
34 target[1] = U16_TRAIL(c); \
36 target +=2; \
40 #define U_APPEND_CHAR32_ONLY(c,target) UPRV_BLOCK_MACRO_BEGIN { \
43 *(target)++ = (UChar) c; \
47 target[0] = U16_LEAD(c); \
48 target[1] = U16_TRAIL(c); \
49 target
[all...]
/third_party/skia/third_party/externals/icu/source/tools/genrb/
H A Dustr.h25 #define U_APPEND_CHAR32(c,target,len) UPRV_BLOCK_MACRO_BEGIN { \
28 *(target)++ = (UChar) c; \
33 target[0] = U16_LEAD(c); \
34 target[1] = U16_TRAIL(c); \
36 target +=2; \
40 #define U_APPEND_CHAR32_ONLY(c,target) UPRV_BLOCK_MACRO_BEGIN { \
43 *(target)++ = (UChar) c; \
47 target[0] = U16_LEAD(c); \
48 target[1] = U16_TRAIL(c); \
49 target
[all...]
/third_party/icu/icu4c/source/common/
H A Ducnvmbcs.cpp733 * A recursive call may do stateProps[state]|=0x40 if this state is the target of an
1102 * else return 0 after output has been written to the target
1108 uint8_t **target, const uint8_t *targetLimit, in _extFromU()
1120 (char **)target, (char *)targetLimit, in _extFromU()
1154 bytes, 4, (char **)target, (char *)targetLimit, in _extFromU()
1169 * else return 0 after output has been written to the target
1175 UChar **target, const UChar *targetLimit, in _extToU()
1185 target, targetLimit, in _extToU()
1210 ucnv_toUWriteCodePoint(cnv, linear, target, targetLimit, offsets, sourceIndex, pErrorCode); in _extToU()
2037 UChar *target; in ucnv_MBCSSingleToUnicodeWithOffsets() local
1105 _extFromU(UConverter *cnv, const UConverterSharedData *sharedData, UChar32 cp, const UChar **source, const UChar *sourceLimit, uint8_t **target, const uint8_t *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) _extFromU() argument
1172 _extToU(UConverter *cnv, const UConverterSharedData *sharedData, int8_t length, const uint8_t **source, const uint8_t *sourceLimit, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) _extToU() argument
2189 UChar *target; ucnv_MBCSSingleToBMPWithOffsets() local
2469 UChar *target; ucnv_MBCSToUnicodeWithOffsets() local
3410 uint8_t *target; ucnv_MBCSDoubleFromUnicodeWithOffsets() local
3642 uint8_t *target; ucnv_MBCSSingleFromUnicodeWithOffsets() local
3818 uint8_t *target; ucnv_MBCSSingleFromBMPWithOffsets() local
4075 uint8_t *target; ucnv_MBCSFromUnicodeWithOffsets() local
5025 uint8_t *target; ucnv_SBCSFromUTF8() local
5327 uint8_t *target; ucnv_DBCSFromUTF8() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducnvmbcs.cpp733 * A recursive call may do stateProps[state]|=0x40 if this state is the target of an
1102 * else return 0 after output has been written to the target
1108 uint8_t **target, const uint8_t *targetLimit, in _extFromU()
1120 (char **)target, (char *)targetLimit, in _extFromU()
1154 bytes, 4, (char **)target, (char *)targetLimit, in _extFromU()
1169 * else return 0 after output has been written to the target
1175 char16_t **target, const char16_t *targetLimit, in _extToU()
1185 target, targetLimit, in _extToU()
1210 ucnv_toUWriteCodePoint(cnv, linear, target, targetLimit, offsets, sourceIndex, pErrorCode); in _extToU()
2037 char16_t *target; in ucnv_MBCSSingleToUnicodeWithOffsets() local
1105 _extFromU(UConverter *cnv, const UConverterSharedData *sharedData, UChar32 cp, const char16_t **source, const char16_t *sourceLimit, uint8_t **target, const uint8_t *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) _extFromU() argument
1172 _extToU(UConverter *cnv, const UConverterSharedData *sharedData, int8_t length, const uint8_t **source, const uint8_t *sourceLimit, char16_t **target, const char16_t *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) _extToU() argument
2189 char16_t *target; ucnv_MBCSSingleToBMPWithOffsets() local
2469 char16_t *target; ucnv_MBCSToUnicodeWithOffsets() local
3410 uint8_t *target; ucnv_MBCSDoubleFromUnicodeWithOffsets() local
3642 uint8_t *target; ucnv_MBCSSingleFromUnicodeWithOffsets() local
3818 uint8_t *target; ucnv_MBCSSingleFromBMPWithOffsets() local
4075 uint8_t *target; ucnv_MBCSFromUnicodeWithOffsets() local
5025 uint8_t *target; ucnv_SBCSFromUTF8() local
5327 uint8_t *target; ucnv_DBCSFromUTF8() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnvmbcs.cpp733 * A recursive call may do stateProps[state]|=0x40 if this state is the target of an
1102 * else return 0 after output has been written to the target
1108 uint8_t **target, const uint8_t *targetLimit, in _extFromU()
1120 (char **)target, (char *)targetLimit, in _extFromU()
1154 bytes, 4, (char **)target, (char *)targetLimit, in _extFromU()
1169 * else return 0 after output has been written to the target
1175 UChar **target, const UChar *targetLimit, in _extToU()
1185 target, targetLimit, in _extToU()
1210 ucnv_toUWriteCodePoint(cnv, linear, target, targetLimit, offsets, sourceIndex, pErrorCode); in _extToU()
2037 UChar *target; in ucnv_MBCSSingleToUnicodeWithOffsets() local
1105 _extFromU(UConverter *cnv, const UConverterSharedData *sharedData, UChar32 cp, const UChar **source, const UChar *sourceLimit, uint8_t **target, const uint8_t *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) _extFromU() argument
1172 _extToU(UConverter *cnv, const UConverterSharedData *sharedData, int8_t length, const uint8_t **source, const uint8_t *sourceLimit, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UBool flush, UErrorCode *pErrorCode) _extToU() argument
2189 UChar *target; ucnv_MBCSSingleToBMPWithOffsets() local
2469 UChar *target; ucnv_MBCSToUnicodeWithOffsets() local
3410 uint8_t *target; ucnv_MBCSDoubleFromUnicodeWithOffsets() local
3642 uint8_t *target; ucnv_MBCSSingleFromUnicodeWithOffsets() local
3818 uint8_t *target; ucnv_MBCSSingleFromBMPWithOffsets() local
4075 uint8_t *target; ucnv_MBCSFromUnicodeWithOffsets() local
5025 uint8_t *target; ucnv_SBCSFromUTF8() local
5327 uint8_t *target; ucnv_DBCSFromUTF8() local
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dtop.c29 struct target *target = &opts->target; in perf_top__header_snprintf() local
84 if (target->pid) in perf_top__header_snprintf()
86 target->pid); in perf_top__header_snprintf()
87 else if (target->tid) in perf_top__header_snprintf()
89 target->tid); in perf_top__header_snprintf()
90 else if (target->uid_str != NULL) in perf_top__header_snprintf()
92 target->uid_str); in perf_top__header_snprintf()
96 if (target in perf_top__header_snprintf()
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dtop.c29 struct target *target = &opts->target; in perf_top__header_snprintf() local
84 if (target->pid) in perf_top__header_snprintf()
86 target->pid); in perf_top__header_snprintf()
87 else if (target->tid) in perf_top__header_snprintf()
89 target->tid); in perf_top__header_snprintf()
90 else if (target->uid_str != NULL) in perf_top__header_snprintf()
92 target->uid_str); in perf_top__header_snprintf()
96 if (target in perf_top__header_snprintf()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DnarrowingOfDottedNames.js82 let target: Base = null as any;
84 while (target) {
85 if (target instanceof A2) {
86 target.info.a_count = 3;
88 else if (target instanceof B2) {
89 const j: BInfo = target.info;
194 var target = null; variable
195 while (target) {
196 if (target instanceof A2) {
197 target
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-proxy-gen.cc20 TNode<Context> context, TNode<JSReceiver> target, in AllocateProxy()
29 Branch(IsCallable(target), &callable_target, &none_target); in AllocateProxy()
35 GotoIf(IsConstructor(target), &constructor_target); in AllocateProxy()
59 StoreObjectFieldNoWriteBarrier(proxy, JSProxy::kTargetOffset, target); in AllocateProxy()
112 // 4. Let target be the value of the [[ProxyTarget]] internal slot of O. in TF_BUILTIN()
113 TNode<Object> target = LoadObjectField(proxy, JSProxy::kTargetOffset); in TF_BUILTIN() local
129 // 8. Return Call(trap, handler, «target, thisArgument, argArray»). in TF_BUILTIN()
130 TNode<Object> result = Call(context, trap, handler, target, receiver, array); in TF_BUILTIN()
135 // 6.a. Return Call(target, thisArgument, argumentsList). in TF_BUILTIN()
136 TailCallStub(CodeFactory::Call(isolate()), context, target, arg in TF_BUILTIN()
19 AllocateProxy( TNode<Context> context, TNode<JSReceiver> target, TNode<JSReceiver> handler) AllocateProxy() argument
167 TNode<Object> target = LoadObjectField(proxy, JSProxy::kTargetOffset); TF_BUILTIN() local
212 CheckGetSetTrapResult( TNode<Context> context, TNode<JSReceiver> target, TNode<JSProxy> proxy, TNode<Name> name, TNode<Object> trap_result, JSProxy::AccessKind access_kind) CheckGetSetTrapResult() argument
321 CheckHasTrapResult(TNode<Context> context, TNode<JSReceiver> target, TNode<JSProxy> proxy, TNode<Name> name) CheckHasTrapResult() argument
374 CheckDeleteTrapResult(TNode<Context> context, TNode<JSReceiver> target, TNode<JSProxy> proxy, TNode<Name> name) CheckDeleteTrapResult() argument
[all...]
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrGLContext.hpp64 virtual void bindTexture (deUint32 target, deUint32 texture);
68 virtual void bindFramebuffer (deUint32 target, deUint32 framebuffer);
72 virtual void bindRenderbuffer (deUint32 target, deUint32 renderbuffer);
77 virtual void texImage1D (deUint32 target, int level, deUint32 internalFormat, int width, int border, deUint32 format, deUint32 type, const void* data);
78 virtual void texImage2D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int border, deUint32 format, deUint32 type, const void* data);
79 virtual void texImage3D (deUint32 target, int level, deUint32 internalFormat, int width, int height, int depth, int border, deUint32 format, deUint32 type, const void* data);
80 virtual void texSubImage1D (deUint32 target, int level, int xoffset, int width, deUint32 format, deUint32 type, const void* data);
81 virtual void texSubImage2D (deUint32 target, int level, int xoffset, int yoffset, int width, int height, deUint32 format, deUint32 type, const void* data);
82 virtual void texSubImage3D (deUint32 target, int level, int xoffset, int yoffset, int zoffset, int width, int height, int depth, deUint32 format, deUint32 type, const void* data);
83 virtual void copyTexImage1D (deUint32 target, in
[all...]
/kernel/linux/linux-5.10/net/nfc/
H A Ddigital_technology.c165 struct nfc_target *target);
218 struct nfc_target *target = arg; in digital_in_recv_ats() local
241 rc = digital_target_found(ddev, target, NFC_PROTO_ISO14443); in digital_in_recv_ats()
245 kfree(target); in digital_in_recv_ats()
252 struct nfc_target *target) in digital_in_send_rats()
265 target); in digital_in_send_rats()
275 struct nfc_target *target = arg; in digital_in_recv_sel_res() local
302 rc = digital_in_send_sdd_req(ddev, target); in digital_in_recv_sel_res()
309 target->sel_res = sel_res; in digital_in_recv_sel_res()
316 rc = digital_in_send_rats(ddev, target); in digital_in_recv_sel_res()
251 digital_in_send_rats(struct nfc_digital_dev *ddev, struct nfc_target *target) digital_in_send_rats() argument
341 digital_in_send_sel_req(struct nfc_digital_dev *ddev, struct nfc_target *target, struct digital_sdd_res *sdd_res) digital_in_send_sel_req() argument
390 struct nfc_target *target = arg; digital_in_recv_sdd_res() local
442 digital_in_send_sdd_req(struct nfc_digital_dev *ddev, struct nfc_target *target) digital_in_send_sdd_req() argument
479 struct nfc_target *target = NULL; digital_in_recv_sens_res() local
578 struct nfc_target *target = arg; digital_in_recv_attrib_res() local
612 digital_in_send_attrib_req(struct nfc_digital_dev *ddev, struct nfc_target *target, struct digital_sensb_res *sensb_res) digital_in_send_attrib_req() argument
648 struct nfc_target *target = NULL; digital_in_recv_sensb_res() local
747 struct nfc_target target; digital_in_recv_sensf_res() local
844 struct nfc_target *target = NULL; digital_in_recv_iso15693_inv_res() local
[all...]
/kernel/linux/linux-6.6/net/nfc/
H A Ddigital_technology.c165 struct nfc_target *target);
218 struct nfc_target *target = arg; in digital_in_recv_ats() local
241 rc = digital_target_found(ddev, target, NFC_PROTO_ISO14443); in digital_in_recv_ats()
245 kfree(target); in digital_in_recv_ats()
252 struct nfc_target *target) in digital_in_send_rats()
265 target); in digital_in_send_rats()
275 struct nfc_target *target = arg; in digital_in_recv_sel_res() local
302 rc = digital_in_send_sdd_req(ddev, target); in digital_in_recv_sel_res()
309 target->sel_res = sel_res; in digital_in_recv_sel_res()
316 rc = digital_in_send_rats(ddev, target); in digital_in_recv_sel_res()
251 digital_in_send_rats(struct nfc_digital_dev *ddev, struct nfc_target *target) digital_in_send_rats() argument
341 digital_in_send_sel_req(struct nfc_digital_dev *ddev, struct nfc_target *target, struct digital_sdd_res *sdd_res) digital_in_send_sel_req() argument
390 struct nfc_target *target = arg; digital_in_recv_sdd_res() local
442 digital_in_send_sdd_req(struct nfc_digital_dev *ddev, struct nfc_target *target) digital_in_send_sdd_req() argument
479 struct nfc_target *target = NULL; digital_in_recv_sens_res() local
578 struct nfc_target *target = arg; digital_in_recv_attrib_res() local
612 digital_in_send_attrib_req(struct nfc_digital_dev *ddev, struct nfc_target *target, struct digital_sensb_res *sensb_res) digital_in_send_attrib_req() argument
648 struct nfc_target *target = NULL; digital_in_recv_sensb_res() local
747 struct nfc_target target; digital_in_recv_sensf_res() local
844 struct nfc_target *target = NULL; digital_in_recv_iso15693_inv_res() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cSparseTextureClampTests.cpp249 /** Check if specific lookup function is allowed for specific target and format
251 * @param target Target for which texture is binded
255 * @return Returns true if target/format combination is allowed, false otherwise.
257 bool SparseTextureClampLookupResidencyTestCase::funcAllowed(GLint target, GLint format, FunctionToken& funcToken) in funcAllowed() argument
259 if (funcToken.allowedTargets.find(target) == funcToken.allowedTargets.end()) in funcAllowed()
264 if (target == GL_TEXTURE_CUBE_MAP_ARRAY && in funcAllowed()
275 * @param target Target for which texture is binded
283 bool SparseTextureClampLookupResidencyTestCase::verifyLookupTextureData(const Functions& gl, GLint target, GLint format, in verifyLookupTextureData() argument
295 SparseTextureUtils::getTextureLevelSize(target, mState, level, width, height, depth); in verifyLookupTextureData()
305 if (target in verifyLookupTextureData()
464 draw(GLint target, GLint layer, const ShaderProgram& program) draw() argument
629 const GLint& target = *iter; iterate() local
707 writeDataToTexture(const Functions& gl, GLint target, GLint format, GLuint& texture, GLint level) writeDataToTexture() argument
801 verifyLookupTextureData(const Functions& gl, GLint target, GLint format, GLuint& texture, GLint level, FunctionToken& funcToken) verifyLookupTextureData() argument
985 prepareTexture(const Functions& gl, GLint target, GLint format, GLuint& texture) prepareTexture() argument
1022 commitTexturePage(const Functions& gl, GLint target, GLint format, GLuint& texture, GLint level) commitTexturePage() argument
1059 isInPageSizesRange(GLint target, GLint level) isInPageSizesRange() argument
1084 isPageSizesMultiplication(GLint target, GLint level) isPageSizesMultiplication() argument
[all...]
/kernel/linux/linux-5.10/fs/ocfs2/dlm/
H A Ddlmthread.c345 struct dlm_lock *lock, *target; in dlm_shuffle_lists() local
366 target = list_entry(res->converting.next, struct dlm_lock, list); in dlm_shuffle_lists()
367 if (target->ml.convert_type == LKM_IVMODE) { in dlm_shuffle_lists()
373 if (lock==target) in dlm_shuffle_lists()
376 target->ml.convert_type)) { in dlm_shuffle_lists()
384 if (lock->ml.highest_blocked < target->ml.convert_type) in dlm_shuffle_lists()
386 target->ml.convert_type; in dlm_shuffle_lists()
391 if (lock==target) in dlm_shuffle_lists()
394 target->ml.convert_type)) { in dlm_shuffle_lists()
400 if (lock->ml.highest_blocked < target in dlm_shuffle_lists()
[all...]
/kernel/linux/linux-6.6/fs/ocfs2/dlm/
H A Ddlmthread.c343 struct dlm_lock *lock, *target; in dlm_shuffle_lists() local
364 target = list_entry(res->converting.next, struct dlm_lock, list); in dlm_shuffle_lists()
365 if (target->ml.convert_type == LKM_IVMODE) { in dlm_shuffle_lists()
371 if (lock==target) in dlm_shuffle_lists()
374 target->ml.convert_type)) { in dlm_shuffle_lists()
382 if (lock->ml.highest_blocked < target->ml.convert_type) in dlm_shuffle_lists()
384 target->ml.convert_type; in dlm_shuffle_lists()
389 if (lock==target) in dlm_shuffle_lists()
392 target->ml.convert_type)) { in dlm_shuffle_lists()
398 if (lock->ml.highest_blocked < target in dlm_shuffle_lists()
[all...]
/third_party/jsframework/runtime/main/reactivity/
H A Ddep.js16 // The current target watcher being evaluated.
18 Dep.target = null;
22 if (Dep.target) {
23 targetStack.push(Dep.target);
25 Dep.target = _target;
29 Dep.target = targetStack.pop();
33 Dep.target = null;
54 * Add self as a dependency to the target watcher.
57 if (Dep.target) {
58 Dep.target
[all...]
/kernel/linux/linux-6.6/arch/s390/kernel/
H A Dptrace.c837 static int s390_regs_get(struct task_struct *target, in s390_regs_get() argument
842 if (target == current) in s390_regs_get()
843 save_access_regs(target->thread.acrs); in s390_regs_get()
846 membuf_store(&to, __peek_user(target, pos)); in s390_regs_get()
850 static int s390_regs_set(struct task_struct *target, in s390_regs_set() argument
857 if (target == current) in s390_regs_set()
858 save_access_regs(target->thread.acrs); in s390_regs_set()
863 rc = __poke_user(target, pos, *k++); in s390_regs_set()
874 rc = __poke_user(target, pos, word); in s390_regs_set()
880 if (rc == 0 && target in s390_regs_set()
886 s390_fpregs_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_fpregs_get() argument
901 s390_fpregs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_fpregs_set() argument
941 s390_last_break_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_last_break_get() argument
948 s390_last_break_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_last_break_set() argument
956 s390_tdb_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_tdb_get() argument
969 s390_tdb_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_tdb_set() argument
977 s390_vxrs_low_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_vxrs_low_get() argument
993 s390_vxrs_low_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_vxrs_low_set() argument
1017 s390_vxrs_high_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_vxrs_high_get() argument
1029 s390_vxrs_high_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_vxrs_high_set() argument
1046 s390_system_call_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_system_call_get() argument
1053 s390_system_call_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_system_call_set() argument
1063 s390_gs_cb_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_gs_cb_get() argument
1078 s390_gs_cb_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_gs_cb_set() argument
1117 s390_gs_bc_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_gs_bc_get() argument
1130 s390_gs_bc_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_gs_bc_set() argument
1175 s390_runtime_instr_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_runtime_instr_get() argument
1189 s390_runtime_instr_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_runtime_instr_set() argument
1331 s390_compat_regs_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_compat_regs_get() argument
1345 s390_compat_regs_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_compat_regs_set() argument
1381 s390_compat_regs_high_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_compat_regs_high_get() argument
1394 s390_compat_regs_high_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_compat_regs_high_set() argument
1427 s390_compat_last_break_get(struct task_struct *target, const struct user_regset *regset, struct membuf to) s390_compat_last_break_get() argument
1436 s390_compat_last_break_set(struct task_struct *target, const struct user_regset *regset, unsigned int pos, unsigned int count, const void *kbuf, const void __user *ubuf) s390_compat_last_break_set() argument
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/ptrace/
H A Dperf-hwbreak.c153 void *target; in runtest_dar_outside() local
162 target = malloc(8); in runtest_dar_outside()
163 if (!target) { in runtest_dar_outside()
176 /* watch middle half of target array */ in runtest_dar_outside()
177 attr.bp_addr = (__u64)(target + 2); in runtest_dar_outside()
181 free(target); in runtest_dar_outside()
189 temp16 = *((__u16 *)target); in runtest_dar_outside()
190 *((__u16 *)target) = temp16; in runtest_dar_outside()
204 temp16 = *((__u16 *)(target + 1)); in runtest_dar_outside()
205 *((__u16 *)(target in runtest_dar_outside()
[all...]
/third_party/NuttX/fs/mount/
H A Dfs_mount.c125 * name into the root file system at the path specified by 'target.'
144 int mount(const char *source, const char *target, in mount() argument
168 DEBUGASSERT(target && filesystemtype); in mount()
199 ret = VnodeLookup(target, &mountpt_vnode, 0); in mount()
205 PRINT_ERR("Failed to find valid mountpoint %s\n", target); in mount()
217 PRINT_ERR("can't mount to %s, already mounted.\n", target); in mount()
223 PRINT_ERR("can't mount to %s, already mounted.\n", target); in mount()
272 partition->mountpoint_name = (char *)zalloc(strlen(target) + 1); in mount()
278 (void)strncpy_s(partition->mountpoint_name, strlen(target) + 1, target, strle in mount()
[all...]

Completed in 24 milliseconds

1...<<11121314151617181920>>...278