5,840,503 results for 'ERROR repo:kinghajj/sha3sums' (24 ms)
ufs_vnops.c https://bitbucket.org/mischief/oskit | C | 2,066 lines
125 register struct inode *ip; 126 int error; 127 130 ap->a_dvp, vpp, ap->a_cnp)) != 0) 131 return (error); 132 ip = VTOI(*vpp); 225 switch (vp->v_type) { 226 int error; 227 case VDIR: 229 case VREG: 230 if ((error = getinoquota(ip)) != 0) 231 return (error); 1683 if (error) { 1684 bp->b_error = error; 1685 bp->b_flags |= B_ERROR;vfs_syscalls.c https://bitbucket.org/mischief/oskit | C | 2,115 lines
88 register struct mount *mp; 89 int error, flag = 0; 90 u_long fsindex = 0; 100 if ((error = namei(&nd)) != 0) 101 return (error); 102 vp = nd.ni_vp; 125 if (mp->mnt_stat.f_owner != p->p_ucred->cr_uid && 126 (error = suser(p->p_ucred, &p->p_acflag))) { 127 vput(vp); 127 vput(vp); 128 return (error); 129 } 763 ffree(fp); 764 if ((error == ENODEV || error == ENXIO) && 765 p->p_dupfd >= 0 && /* XXX from fdopen */namei.c https://bitbucket.org/mischief/oskit | C | 1,434 lines
389 if (base->d_op && base->d_op->d_hash) { 390 int error; 391 error = base->d_op->d_hash(base, &this); 391 error = base->d_op->d_hash(base, &this); 392 if (error < 0) { 393 dentry = ERR_PTR(error); 432 * LOOKUP_CONTINUE is set), it's an obvious 433 * error and returns ENOENT. 434 * 517{ 518 int error; 519 if (!victim->d_inode || victim->d_parent->d_inode != dir) 520 return -ENOENT; 521 error = permission(dir,MAY_WRITE | MAY_EXEC); 522 if (error)gcrypt.texi https://bitbucket.org/lkalif/emerald-snowglobe | Unknown | 3,757 lines
525 526Some error values do not indicate a system error or an error in the 527operation, but the result of an operation that failed properly. For 554 555Some error values do not indicate a system error or an error in the 556operation, but the result of an operation that failed properly. 610for a certain outcome of a function. The manual only documents the 611error code part of an error value. The error source is left 612unspecified and might be anything. 695 696If the error code part of an error value is @code{0}, the whole error 697value will be @code{0}. In this case the error source part is of 1009 1010@deftypefun void gcry_set_fatalerror_handler (gcry_handler_error_t @var{func_error}, void *@var{cb_data}) 1011This function registers @var{func_error} as `error handler',gcrypt.info https://bitbucket.org/lkalif/emerald-snowglobe | Unknown | 4,699 lines
488 489 Some error values do not indicate a system error or an error in the 490operation, but the result of an operation that failed properly. For 602 603 The `libgpg-error' library provides error codes for all system error 604numbers it knows about. If ERR is an unknown error number, the error 634 635File: gcrypt.info, Node: Error Sources, Next: Error Codes, Prev: Error Values, Up: Error Handling 636 644 645 If the error code part of an error value is `0', the whole error 646value will be `0'. In this case the error source part is of course 702 703File: gcrypt.info, Node: Error Codes, Next: Error Strings, Prev: Error Sources, Up: Error Handling 704gles_header.pas https://bitbucket.org/carli/gles-headers | Pascal | 820 lines
169 170{ ErrorCode } 171 GL_NO_ERROR = 0; 551 glGetBufferParameteriv: procedure (target: GLenum; pname: GLenum; params: PGLint); extdecl; 552 glGetError: function: GLenum; extdecl; 553 glGetFloatv: procedure (pname: GLenum; params: PGLfloat); extdecl; 662 initialize_gles; 663 glActiveTexture:=GetProcAddress('glActiveTexture'); if @glActiveTexture=nil then Exit('Error loading GL ES 2.0: Function not found "glActiveTexture"'); 664 glAttachShader:=GetProcAddress('glAttachShader'); if @glAttachShader=nil then Exit('Error loading GL ES 2.0: Function not found "glAttachShader"'); 664 glAttachShader:=GetProcAddress('glAttachShader'); if @glAttachShader=nil then Exit('Error loading GL ES 2.0: Function not found "glAttachShader"'); 665 glBindAttribLocation:=GetProcAddress('glBindAttribLocation'); if @glBindAttribLocation=nil then Exit('Error loading GL ES 2.0: Function not found "glBindAttribLocation"'); 666 glBindBuffer:=GetProcAddress('glBindBuffer'); if @glBindBuffer=nil then Exit('Error loading GL ES 2.0: Function not found "glBindBuffer"'); 726 glGetBufferParameteriv:=GetProcAddress('glGetBufferParameteriv'); if @glGetBufferParameteriv=nil then Exit('Error loading GL ES 2.0: Function not found "glGetBufferParameteriv"'); 727 glGetError:=GetProcAddress('glGetError'); if @glGetError=nil then Exit('Error loading GL ES 2.0: Function not found "glGetError"'); 728 glGetFloatv:=GetProcAddress('glGetFloatv'); if @glGetFloatv=nil then Exit('Error loading GL ES 2.0: Function not found "glGetFloatv"');gtc_matrix_access.cpp https://bitbucket.org/mattbierner/ios-aquaria | C++ | 384 lines
15{ 16 int Error = 0; 17 22 23 Error += glm::row(m, 0) == glm::vec2( 0, 1) ? 0 : 1; 24 Error += glm::row(m, 1) == glm::vec2( 4, 5) ? 0 : 1; 25 26 return Error; 27} 30{ 31 int Error = 0; 32 37 38 Error += glm::column(m, 0) == glm::vec2( 0, 1) ? 0 : 1; 39 Error += glm::column(m, 1) == glm::vec2( 4, 5) ? 0 : 1;main.c https://bitbucket.org/zossso/android-kernel-2.6.34-motus | C | 1,137 lines
185static void initcall_debug_report(struct device *dev, ktime_t calltime, 186 int error) 187{ 241 if (ops->suspend) { 242 error = ops->suspend(dev); 243 suspend_report_result(ops->suspend, error); 247 if (ops->resume) { 248 error = ops->resume(dev); 249 suspend_report_result(ops->resume, error); 940 pm_dev_err(dev, pm_transition, " async", error); 941 async_error = error; 942 } 999 if (!error) 1000 error = async_error; 1001 if (!error)xfs_bmap_util.c git://github.com/torvalds/linux.git | C | 1,777 lines
23#include "xfs_rtalloc.h" 24#include "xfs_error.h" 25#include "xfs_quota.h" 75{ 76 int error; /* error return value */ 77 xfs_mount_t *mp; /* mount point structure */ 89 ap->conv, &ap->offset, &ap->length); 90 if (error) 91 return error; 130 131 error = xfs_rtpick_extent(mp, ap->tp, ralen, &rtx); 132 if (error) 1406out: 1407 trace_xfs_swap_extent_rmap_error(ip, error, _RET_IP_); 1408 tip->i_d.di_flags2 = tip_flags2;nfs4trace.h git://github.com/torvalds/linux.git | C Header | 2,276 lines
897 __entry->fmode = (__force unsigned int)state->state; 898 __entry->error = error < 0 ? -error : 0; 899 __entry->stateid_seq = 962 963 __entry->error = error < 0 ? -error : 0; 964 __entry->cmd = cmd; 1034 1035 __entry->error = error < 0 ? -error : 0; 1036 __entry->cmd = cmd; 1537 __entry->fileid = (fattr->valid & NFS_ATTR_FATTR_FILEID) ? fattr->fileid : 0; 1538 __entry->error = error < 0 ? -error : 0; 1539 ), 1960 __entry->count = args->length; 1961 __entry->error = error < 0 ? -error : 0; 1962 __entry->stateid_seq =ms_block.c git://github.com/torvalds/linux.git | C | 2,362 lines
224 msb->state = 0; 225 msb->exit_error = 0; 226 242 msb->state = -1; 243 msb->exit_error = error; 244 msb->card->next_request = h_msb_default_bad; 245 246 /* Invalidate reg window on errors */ 247 if (error) 454 } else { 455 dbg("read_page: INT error, but no status error bits"); 456 return msb_exit_state_machine(msb, -EIO); 1782 1783 if (error && error != -ENOMEM) { 1784 dbg("failed to read bad block table from primary boot block, trying from backup");ims-pcu.c git://github.com/torvalds/linux.git | C | 2,150 lines
697 dev_err(pcu->dev, 698 "GET_INFO command failed, error: %d\n", error); 699 return error; 1809 dev_err(pcu->dev, 1810 "GET_BL_VERSION command failed, error: %d\n", error); 1811 return error; 1821 dev_err(pcu->dev, 1822 "RESET_REASON command failed, error: %d\n", error); 1823 return error; 1847 dev_err(pcu->dev, 1848 "GET_DEVICE_ID command failed, error: %d\n", error); 1849 return error; 1873 dev_err(pcu->dev, 1874 "Failed to identify device, error: %d\n", error); 1875 /*i915_gpu_error.c git://github.com/torvalds/linux.git | C | 1,938 lines
1696 1697 len = scnprintf(error->error_msg, sizeof(error->error_msg), 1698 "GPU HANG: ecode %d:%x:%08x", 1816 /* Check if GPU capture has been disabled */ 1817 error = READ_ONCE(i915->gpu_error.first_error); 1818 if (IS_ERR(error)) 1863 if (error->simulated || 1864 cmpxchg(&i915->gpu_error.first_error, NULL, error)) 1865 return; 1895 if (IS_ERR(error)) { 1896 cmpxchg(&i915->gpu_error.first_error, NULL, error); 1897 return; 1922 spin_lock_irq(&i915->gpu_error.lock); 1923 error = i915->gpu_error.first_error; 1924 if (error != ERR_PTR(-ENODEV)) /* if disabled, always disabled */diagnosticMessages.json https://git01.codeplex.com/typescript | Unknown | 1,534 lines
1{ 2 "error TS{0}: {1}": { 3 "category": "NoPrefix", 10 "Unrecognized escape sequence.": { 11 "category": "Error", 12 "code": 1000 14 "Unexpected character {0}.": { 15 "category": "Error", 16 "code": 1001 18 "Missing close quote character.": { 19 "category": "Error", 20 "code": 1002 22 "Identifier expected.": { 23 "category": "Error", 24 "code": 1003diagnosticInformationMap.generated.ts https://git01.codeplex.com/typescript | Unknown | 1,534 lines
4 export var diagnosticInformationMap = { 5 "error TS{0}: {1}": { 6 "code": 0, 14 "code": 1000, 15 "category": DiagnosticCategory.Error 16 }, 18 "code": 1001, 19 "category": DiagnosticCategory.Error 20 }, 22 "code": 1002, 23 "category": DiagnosticCategory.Error 24 }, 26 "code": 1003, 27 "category": DiagnosticCategory.Error 28 },library.dylan git://github.com/dylan-lang/opendylan.git | Unknown | 2,251 lines
133 g-strescape, 134 g-strerror, 135 g-strdup, 167 g-set-prgname, 168 g-set-error-literal, 169 g-set-application-name, 181 g-quark-from-static-string, 182 g-propagate-error, 183 g-poll, 396 $g-variant-parse-error-unexpected-token, 397 $g-variant-parse-error-type-error, 398 $g-variant-parse-error-number-too-big, 1208 $g-regex-error-variable-length-lookbehind, 1209 $g-regex-error-memory-error, 1210 $g-regex-error-expression-too-large,SoarPolarization.ilg https://bitbucket.org/ahoffer/soar-polarization.git | Unknown | 334 lines
2Scanning input file SoarPolarization... 3!! Input index error (file = SoarPolarization, line = 1): 4 -- Unknown index keyword @ARTICLE. 4 -- Unknown index keyword @ARTICLE. 5!! Input index error (file = SoarPolarization, line = 2): 6 -- Unknown index keyword author=. 6 -- Unknown index keyword author=. 7!! Input index error (file = SoarPolarization, line = 3): 8 -- Unknown index keyword title=". 8 -- Unknown index keyword title=". 9!! Input index error (file = SoarPolarization, line = 4): 10 -- Unknown index keyword journal=. 10 -- Unknown index keyword journal=. 11!! Input index error (file = SoarPolarization, line = 5): 12 -- Unknown index keyword keywords=.XmlStore.js https://bitbucket.org/sasha.firsov/dojoplay2012 | JavaScript | 1,416 lines
48 } 49 store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError}); 50 return d; //Object 63 } 64 function onError(error, request) { 65 d.errback(error); 900 } 901 store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError}); 902 return d; //Object 1316 //In memory stores use dojo query syntax for the identifier. 1317 store.fetchItemByIdentity({identity: "/books[1]/book[200]", onItem: onItem, onError: onError}); 1318 return d; //Object 1336 } 1337 function onError(error, request) { 1338 d.errback(error);XmlStore.js https://bitbucket.org/sasha.firsov/dojoplay2012 | JavaScript | 1,416 lines
48 } 49 store.fetch({query:{isbn:"*"}, onComplete: onComplete, onError: onError}); 50 return d; //Object 63 } 64 function onError(error, request) { 65 d.errback(error); 900 } 901 store.fetch({query:{isbn:"A9B574"}, onComplete: onComplete, onError: onError}); 902 return d; //Object 1316 //In memory stores use dojo query syntax for the identifier. 1317 store.fetchItemByIdentity({identity: "/books[1]/book[200]", onItem: onItem, onError: onError}); 1318 return d; //Object 1336 } 1337 function onError(error, request) { 1338 d.errback(error);common.rst git://github.com/dylan-lang/http.git | ReStructuredText | 1,196 lines
10 11.. constant:: $application-error 12 679 680 :signature: http-error-headers (error) => (headers) 681 681 682 :parameter error: An instance of ``<error>``. 683 :value headers: An instance of ``false-or(<header-table>)``. 686 687 :signature: http-error-message-no-code (error) => (#rest results) 688 695 696 :parameter error: An instance of ``<error>``. 697 :value code: An instance of ``<integer>``.